diff --git a/.vscode/launch.json b/.vscode/launch.json index 93d1e0b81..141c56995 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,9 +10,9 @@ "request": "launch", "preLaunchTask": "build", // If you have changed target frameworks, make sure to update the program path. - "program": "${workspaceFolder}/BotSharp.UnitTest/bin/Debug/netcoreapp2.0/BotSharp.UnitTest.dll", + "program": "${workspaceFolder}/BotSharp.WebHost/bin/Debug/netcoreapp2.1/BotSharp.WebHost.dll", "args": [], - "cwd": "${workspaceFolder}/BotSharp.UnitTest", + "cwd": "${workspaceFolder}/BotSharp.WebHost", // For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window "console": "internalConsole", "stopAtEntry": false, diff --git a/BotSharp.Core/Agents/Agent.cs b/BotSharp.Core/Agents/Agent.cs index dd67022a2..698d6d90a 100644 --- a/BotSharp.Core/Agents/Agent.cs +++ b/BotSharp.Core/Agents/Agent.cs @@ -1,4 +1,5 @@ -using BotSharp.Core.Entities; +using BotSharp.Core.Engines; +using BotSharp.Core.Entities; using BotSharp.Core.Intents; using EntityFrameworkCore.BootKit; using Newtonsoft.Json; @@ -73,6 +74,9 @@ public String Birthday [ForeignKey("AgentId")] public AgentMlConfig MlConfig { get; set; } + [NotMapped] + public TrainingCorpus Corpus { get; set; } + [ForeignKey("AgentId")] public List Integrations { get; set; } } diff --git a/BotSharp.Core/Engines/BotEngineBase.cs b/BotSharp.Core/Engines/BotEngineBase.cs index 345da2c18..69056c501 100644 --- a/BotSharp.Core/Engines/BotEngineBase.cs +++ b/BotSharp.Core/Engines/BotEngineBase.cs @@ -176,8 +176,7 @@ join ees in dc.Table() on ee.Id equals ees.EntityEntryId public virtual void Train() { - var trainer = new BotTrainer(agent.Id, dc); - trainer.Train(agent); + } } diff --git a/BotSharp.Core/Engines/BotSharp/BotSharpAi.cs b/BotSharp.Core/Engines/BotSharp/BotSharpAi.cs index 689c3f1d3..bec9333e2 100644 --- a/BotSharp.Core/Engines/BotSharp/BotSharpAi.cs +++ b/BotSharp.Core/Engines/BotSharp/BotSharpAi.cs @@ -11,10 +11,11 @@ public AIResponse TextRequest(AIRequest request) { throw new NotImplementedException(); } - public override void Train() { - + agent.Corpus = GetIntentExpressions(); + var trainer = new BotTrainer(agent.Id, dc); + trainer.Train(agent); } } } diff --git a/BotSharp.Core/Engines/CRFsuite/CRFsuiteEntityRecognizer.cs b/BotSharp.Core/Engines/CRFsuite/CRFsuiteEntityRecognizer.cs index 54ad91a90..7058db0e0 100644 --- a/BotSharp.Core/Engines/CRFsuite/CRFsuiteEntityRecognizer.cs +++ b/BotSharp.Core/Engines/CRFsuite/CRFsuiteEntityRecognizer.cs @@ -1,13 +1,17 @@ using BotSharp.Core.Abstractions; using BotSharp.Core.Agents; +using BotSharp.MachineLearning.NLP; using EntityFrameworkCore.BootKit; using Microsoft.Extensions.Configuration; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; +using System.Collections; using System.Collections.Generic; +using System.IO; using System.Text; using System.Text.RegularExpressions; +using System.Threading; namespace BotSharp.Core.Engines.CRFsuite { @@ -18,257 +22,114 @@ public class CRFsuiteEntityRecognizer : INlpPipeline public bool Process(Agent agent, JObject data) { var dc = new DefaultDataContextLoader().GetDefaultDc(); - //var corpus = agent.GrabCorpus(dc); - - // Mock Data - List train_sent = new List(); - train_sent.Add(new TrainingData("Melbourne", "NP", "B-LOC")); - train_sent.Add(new TrainingData("(", "Fpa", "O")); - train_sent.Add(new TrainingData("Australia", "NP", "B-LOC")); - train_sent.Add(new TrainingData(")", "Fpt", "O")); - train_sent.Add(new TrainingData(",", "Fc", "O")); - train_sent.Add(new TrainingData("25", "Z", "O")); - train_sent.Add(new TrainingData("may", "NC", "O")); - train_sent.Add(new TrainingData("(", "Fpa", "O")); - train_sent.Add(new TrainingData("EFE", "NC", "B-ORG")); - train_sent.Add(new TrainingData(")", "Fpt", "O")); - train_sent.Add(new TrainingData(".", "Fp", "O")); - - List> train_sents = new List>(); - train_sents.Add(train_sent); - - List X_train = new List(); - train_sents.ForEach(cur_sent => X_train.Add(new ItemSequence(sent2features(cur_sent)))); - - StringList sl = new StringList(); - - - List y_train = new List(); - train_sents.ForEach(cur_sent => y_train.Add(new StringList(sent2labels(cur_sent)))); - - Fit(X_train,y_train); - - + var corpus = agent.Corpus; + + List> tags = data["Tags"].ToObject>>(); + List> tokens = data["Tokens"].ToObject>>(); + List> userSays = corpus.UserSays; + List> list =new List>(); + FileStream fs = new FileStream("/home/bolo/Desktop/BotSharp/TrainingFiles/rawTrain.txt", FileMode.Create); + StreamWriter sw = new StreamWriter(fs); + for (int i = 0 ; i < tags.Count; i++) + { + List curLine = Merge(tokens[i], tags[i], userSays[i].Entities); + list.Add(curLine); + curLine.ForEach(trainingData =>{ + string[] wordParams = {trainingData.Entity, trainingData.Token, trainingData.Tag, trainingData.Chunk}; + string wordStr = string.Join(" ", wordParams); + sw.Write(wordStr + "\n"); + }); + sw.Write("\n"); + } + sw.Flush(); + sw.Close(); + fs.Close(); + + new MachineLearning.CRFsuite.Ner().NerStart(); + + Runcmd(); return true; } - /* - public List Merge(List sentence, List entities ) + + public void Runcmd () + { + string cmd = "/home/bolo/Desktop/BotSharp/TrainingFiles/crfsuite learn -m /home/bolo/Desktop/BotSharp/TrainingFiles/crfsuite/bolo.model /home/bolo/Desktop/BotSharp/TrainingFiles/crfsuite/1.txt"; + System.Diagnostics.Process p = new System.Diagnostics.Process(); + p.StartInfo.FileName = "sh"; + p.StartInfo.UseShellExecute = false; + p.StartInfo.RedirectStandardInput = true; + p.StartInfo.RedirectStandardOutput = true; + p.StartInfo.RedirectStandardError = true; + p.StartInfo.CreateNoWindow = false; + p.Start(); + + p.StandardInput.WriteLine(cmd + "&exit"); + p.StandardInput.AutoFlush = false; + + string output = p.StandardOutput.ReadToEnd(); + + p.WaitForExit();//等待程序执行完退出进程 + p.Close(); + Console.WriteLine(output); + } + public List Merge(List sentence, List tags, List entities) { List trainingTuple = new List(); - HashSet entityWordBag = new HashSet(); - - entities.ForEach(entity => + int wordCandidateCount = 0; + + for (int i = 0; i < sentence.Count; i++) { - String[] words = entity.Value.Split(); - foreach (string word in words) + TrainingIntentExpressionPart curEntity = null; + if (entities != null) { - entityWordBag.Add(word); + bool entityFinded = false; + entities.ForEach(entity => { + if (!entityFinded) + { + string[] words = entity.Value.Split(" "); + for (int j = 0; j < words.Length; j++) + { + if (sentence[i + j].Text == words[j]) + { + wordCandidateCount++; + if (j == words.Length - 1) + { + curEntity = entity; + } + } + else + { + wordCandidateCount = 0; + break; + } + } + if (wordCandidateCount != 0) + { + String entityName = curEntity.Entity.Contains(":")? curEntity.Entity.Substring(curEntity.Entity.IndexOf(":") + 1): curEntity.Entity; + foreach(string s in words) + { + trainingTuple.Add(new TrainingData(entityName, s, tags[i], "I")); + } + entityFinded = true; + } + } + }); } - }); - - sentence.ForEach(token => { - if (!entityWordBag.Contains(token.Text)) + if (wordCandidateCount == 0) { - trainingTuple.Add(new TrainingData(token.Text, "O", token.Offset)); + trainingTuple.Add(new TrainingData("O", sentence[i].Text, tags[i], "O")); } - }); - - entities.ForEach(entity => trainingTuple.Add(new TrainingData(entity.Value, entity.EntityName, entity.Start))); - - trainingTuple.Sort((left, right) => { - if (left.Start > right.Start) - return 1; - else if (left.Start < right.Start) - return -1; else - return 0; - }); - - - - - return trainingTuple; - } - */ - - - - /* Train a model. - - * Parameters - * ---------- - * X : list of lists of dicts - Feature dicts for several documents (in a python-crfsuite format). - - * y : list of lists of strings - Labels for several documents. - - * X_dev : (optional) list of lists of dicts - Feature dicts used for testing. - - * y_dev : (optional) list of lists of strings - Labels corresponding to X_dev. - */ - public void Fit(List X, List y, List X_dev = null, List y_dev = null) { - Trainer trainer = new Trainer(); - for (int i = 0; i < Math.Min(X.Count, y.Count); i++) - { - // group ? - trainer.append(X[i], y[i], 0); - } - - trainer.train("model_test", X_dev == null ? -1 : 1); - } - - public Item Word2Features(List sent, int i) { - string word = sent[i].Token; - string postag = sent[i].Tag; - - float bias = 1.0F; - String wordLower = word.ToLower(); - String wordLast3Char = wordLower.Length >= 3 ? wordLower.Substring(wordLower.Length - 3) : wordLower; - string patternAllCaptain = @"^[A-Z]+$"; - Boolean isSupper = new Regex(patternAllCaptain).IsMatch(word); - string patternFirstCaptain = @"^[A-Z]{1}[a-z]+$"; - Boolean isTitle = new Regex(patternFirstCaptain).IsMatch(word); - string patternAllDigit = @"^[0-9]+$"; - Boolean isDigit = new Regex(patternAllDigit).IsMatch(word); - String posTag = postag; - String postagFirst2Char = postag.Length >= 2 ? postag.Substring(0,2) : postag.Substring(0); - - Feature feature = new Feature(bias, wordLower, wordLast3Char, isSupper, isTitle, isDigit, posTag, postagFirst2Char); - - Item curItem = new Item(); - - - - if (i > 0) - { - string minusWord = sent[i - 1].Token; - string minusPostag = sent[i - 1].Tag; - - feature.MinusWordLower = minusWord; - feature.MinusIsTitle = new Regex(patternFirstCaptain).IsMatch(minusWord); - feature.MinusIsSupper = new Regex(patternAllCaptain).IsMatch(minusWord); - feature.MinusPostag = minusPostag; - feature.MinusPostagFirst2Char = minusPostag.Length >= 2 ? minusPostag.Substring(0, 2) : minusPostag.Substring(0); - - feature.Items.Add(new Attribute($"minusWordLower:{minusWord}", 1.0)); - feature.Items.Add(new Attribute($"minusIsTitle", feature.MinusIsTitle ? 1.0 : 0.0)); - feature.Items.Add(new Attribute($"minusIsSupper", feature.MinusIsSupper ? 1.0 : 0.0)); - feature.Items.Add(new Attribute($"minusPostag:{minusPostag}", 1.0)); - feature.Items.Add(new Attribute($"minusPostagFirst2Char:{feature.MinusPostagFirst2Char}", 1.0)); - } - else { - feature.BOS = true; - feature.Items.Add(new Attribute($"BOS", feature.BOS? 1.0 : 0.0)); - } - - if ( i < sent.Count - 1) - { - string plusWord = sent[i + 1].Token; - string plusPostag = sent[i + 1].Tag; - - feature.PlusWordLower = plusWord; - feature.PlusIsTitle = new Regex(patternFirstCaptain).IsMatch(plusWord); - feature.PlusIsSupper = new Regex(patternAllCaptain).IsMatch(plusWord); - feature.PlusPostag = plusPostag; - feature.PlusPostagFirst2Char = plusPostag.Length >= 2 ? plusPostag.Substring(0, 2) : plusPostag.Substring(0); - - feature.Items.Add(new Attribute($"minusWordLower:{plusWord}", 1.0)); - feature.Items.Add(new Attribute($"minusIsTitle", feature.PlusIsTitle ? 1.0 : 0.0)); - feature.Items.Add(new Attribute($"minusIsSupper", feature.PlusIsSupper ? 1.0 : 0.0)); - feature.Items.Add(new Attribute($"minusPostag:{plusPostag}", 1.0)); - feature.Items.Add(new Attribute($"minusPostagFirst2Char:{feature.PlusPostagFirst2Char}", 1.0)); - } - return feature.ToItems(); - } - - public List sent2features(List sent) - { - List list = new List(); - for (int i = 0 ; i < sent.Count; i++ ) - { - list.Add(Word2Features(sent, i)); + { + i = i + wordCandidateCount - 1; + } } - return list; - } - - public List sent2labels(List sent) - { - List list = new List(); - sent.ForEach(tuple => list.Add(tuple.Entity)); - return list; - } - - public List sent2tokens(List sent) - { - List list = new List(); - sent.ForEach(tuple => list.Add(tuple.Token)); - return list; - } - } - public class Feature - { - public float Bias { get; set; } - public String WordLower { get; set; } - public String WordLast3Char { get; set; } - public Boolean IsSupper { get; set; } - public Boolean IsTitle { get; set; } - public Boolean IsDigit { get; set; } - public String Postag { get; set; } - public String PostagFirst2Char { get; set; } - - public Boolean BOS { get; set; } - public Boolean EOS { get; set; } - - public String PlusWordLower { get; set; } - public String PlusLast3Char { get; set; } - public Boolean PlusIsSupper { get; set; } - public Boolean PlusIsTitle { get; set; } - public Boolean PlusIsDigit { get; set; } - public String PlusPostag { get; set; } - public String PlusPostagFirst2Char { get; set; } - - public String MinusWordLower { get; set; } - public String MinusLast3Char { get; set; } - public Boolean MinusIsSupper { get; set; } - public Boolean MinusIsTitle { get; set; } - public Boolean MinusIsDigit { get; set; } - public String MinusPostag { get; set; } - public String MinusPostagFirst2Char { get; set; } - - public Item Items { get; set; } - - public Feature(float bias, String wordLower, String wordLast3Char, Boolean isSupper, Boolean isTitle, Boolean isDigit, String posTag, String postagFirst2Char) - { - this.Bias = bias; - this.WordLower = wordLower; - this.WordLast3Char = wordLast3Char; - this.IsSupper = isSupper; - this.IsTitle = isTitle; - this.IsDigit = isDigit; - this.Postag = posTag; - this.PostagFirst2Char = postagFirst2Char; - this.Items = new Item(); - - Items.Add(new Attribute($"bias", bias)); - Items.Add(new Attribute($"wordLower:{wordLower}", 1.0)); - Items.Add(new Attribute($"wordLast3Char:{wordLast3Char}", 1.0)); - Items.Add(new Attribute($"isSupper", isSupper? 1.0 : 0.0)); - Items.Add(new Attribute($"isTitle", isTitle ? 1.0 : 0.0)); - Items.Add(new Attribute($"isDigit", isDigit ? 1.0 : 0.0)); - Items.Add(new Attribute($"posTag={posTag}", 1.0)); - Items.Add(new Attribute($"postagFirst2Char:{postagFirst2Char}", 1.0)); - } + return trainingTuple; - public Item ToItems() - { - return this.Items; } } @@ -277,12 +138,14 @@ public class TrainingData public String Token { get; set; } public String Entity { get; set; } public String Tag { get; set; } + public String Chunk { get; set; } - public TrainingData(string token, string entity, string tag) + public TrainingData(string entity, string token, string tag, string chunk) { this.Token = token; this.Entity = entity; this.Tag = tag; + this.Chunk = chunk; } } diff --git a/BotSharp.Core/Engines/SpaCy/SpaCyTagger.cs b/BotSharp.Core/Engines/SpaCy/SpaCyTagger.cs index 4c7c56f79..272cb8435 100644 --- a/BotSharp.Core/Engines/SpaCy/SpaCyTagger.cs +++ b/BotSharp.Core/Engines/SpaCy/SpaCyTagger.cs @@ -1,10 +1,13 @@ using BotSharp.Core.Abstractions; using BotSharp.Core.Agents; +using EntityFrameworkCore.BootKit; using Microsoft.Extensions.Configuration; using Newtonsoft.Json.Linq; +using RestSharp; using System; using System.Collections.Generic; using System.Text; +using BotSharp.MachineLearning.NLP; namespace BotSharp.Core.Engines.SpaCy { @@ -12,9 +15,30 @@ class SpaCyTagger : INlpPipeline { public IConfiguration Configuration { get; set; } - public bool Process(Agent agent, JObject data) + +public bool Process(Agent agent, JObject data) { - throw new NotImplementedException(); + var client = new RestClient(Configuration.GetSection("SpaCyProvider:Url").Value); + var request = new RestRequest("tagger", Method.GET); + List> tags = new List>(); + Boolean res = true; + var dc = new DefaultDataContextLoader().GetDefaultDc(); + var corpus = agent.Corpus; + + corpus.UserSays.ForEach(usersay => { + request.AddParameter("text", usersay.Text); + var response = client.Execute(request); + tags.Add(response.Data.Tags); + res = res && response.IsSuccessful; + }); + data.Add("Tags", JToken.FromObject(tags)); + + return res; + } + + public class Result + { + public List Tags { get; set; } } } } diff --git a/BotSharp.Core/Engines/SpaCy/SpaCyTokenizer.cs b/BotSharp.Core/Engines/SpaCy/SpaCyTokenizer.cs index ed4d276c1..8835b7f08 100644 --- a/BotSharp.Core/Engines/SpaCy/SpaCyTokenizer.cs +++ b/BotSharp.Core/Engines/SpaCy/SpaCyTokenizer.cs @@ -24,14 +24,14 @@ public bool Process(Agent agent, JObject data) List> tokens = new List>(); Boolean res = true; var dc = new DefaultDataContextLoader().GetDefaultDc(); - /*var corpus = ; + var corpus = agent.Corpus; corpus.UserSays.ForEach(usersay => { request.AddParameter("text", usersay.Text); var response = client.Execute(request); tokens.Add(response.Data.Tokens); res = res && response.IsSuccessful; - });*/ + }); diff --git a/BotSharp.MachineLearning/CRFsuite/Crfutils.cs b/BotSharp.MachineLearning/CRFsuite/Crfutils.cs new file mode 100644 index 000000000..c3db9e119 --- /dev/null +++ b/BotSharp.MachineLearning/CRFsuite/Crfutils.cs @@ -0,0 +1,156 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Text.RegularExpressions; + +namespace BotSharp.MachineLearning.CRFsuite +{ + public class Crfutils + { + /// + /// Generate features for an item sequence by applying feature templates. + /// A feature template consists of a tuple of (name, offset) pairs, + /// where name and offset specify a field name and offset from which + /// the template extracts a feature valreaditerue. Generated features are stored + /// in the 'F' field of each item in the sequence. + /// + /// Token features for a sentence + /// the template which contains what feature to extract + + public void ApplyTemplates (List> X, Template templates) + { + foreach (List template in templates.Features) + { + List list = new List(); + template.ForEach(t => list.Add($"{t.Field}[{t.Offset}]")); + string name = string.Join("|", list); + + for (int t = 0 ; t < X.Count() ; t++) { + List values = new List(); + foreach (CRFFeature crffeature in template) + { + string field = crffeature.Field; + int offset = crffeature.Offset; + int p = t + offset; + if (p < 0 || p >= X.Count) + { + values.Clear(); + break; + } + values.Add(X[p][field].ToString()); + } + if (values != null && values.Count > 0) + { + string value = string.Join("|", values); + ((List)X[t]["F"]).Add($"{name}={value}"); + } + } + } + } + /// + /// Return an iterator for item sequences read from a file object. + /// This function reads a sequence from a file object L{fi}, and + /// yields the sequence as a list of mapping objects. Each line + /// (item) from the file object is split by the separator character + /// L{sep}. Separated values of the item are named by L{names}, + /// and stored in a mapping object. Every item has a field 'F' that + /// is reserved for storing features. + /// + /// source file which contains crf style training data + /// each attribute name in fields + /// seperate by + + public List>> Readiter (string fiPath, List names, string sep = " ") + { + List>> Xs = new List>>(); + List> X = new List>(); + StreamReader sr = new StreamReader(fiPath, Encoding.Default); + string line; + while ((line = sr.ReadLine()) != null) + { + line = line.Replace("\n",""); + if (line == null || line.Length == 0) + { + Xs.Add(new List>(X)); + X.Clear(); + } + else + { + String[] fields = line.Split(sep); + if (fields.Count() < names.Count) + { + // Error Exception + } + Dictionary item = new Dictionary(); + item.Add("F", new List()); + for (int i = 0 ; i < names.Count ; i++) + { + item.Add(names[i], fields[i]); + } + X.Add(item); + } + } + return Xs; + } + /// + /// Escape colon characters from feature names. + /// + /// a feature name + + public string Escape(string src) + { + return src.Replace(":", "__COLON__"); + } + /// + /// Output features (and reference labels) of a sequence in CRFSuite + /// format. For each item in the sequence, this function writes a + /// reference label (if L{field} is a non-empty string) and features. + /// + /// destination file stream writer + /// Token features for a sentence + /// one attribute name in fields + + public void OutputFeatures (StreamWriter sw, List> X, string field = "") + { + for (int t = 0; t < X.Count; t++) + { + if (field.Length != 0) + { + sw.Write(X[t][field]); + } + foreach (string a in (List)X[t]["F"]) + { + sw.Write($"\t{Escape(a)}"); + } + sw.Write("\n"); + } + sw.Write("\n"); + } + /// + /// CRFFileGenerator + /// + /// an extractor which to do the feature extracting work + /// attributes name seperated by space + /// string whihch seperated by + public void CRFFileGenerator (System.Action>> FeatureExtractor, string fields, string sep= " ") + { + String fiPath = "/home/bolo/Desktop/BotSharp/TrainingFiles/rawTrain.txt"; + FileStream fs = new FileStream("/home/bolo/Desktop/BotSharp/TrainingFiles/1.txt", FileMode.Create); + StreamWriter sw = new StreamWriter(fs); + List F = fields.Split(" ").ToList(); + List>> Xs = Readiter(fiPath, F, " "); + + foreach (List> X in Xs) + { + FeatureExtractor(X); + OutputFeatures(sw, X, "y"); + } + sw.Flush(); + sw.Close(); + fs.Close(); + } + } +} \ No newline at end of file diff --git a/BotSharp.MachineLearning/CRFsuite/Ner.cs b/BotSharp.MachineLearning/CRFsuite/Ner.cs new file mode 100644 index 000000000..904fe423b --- /dev/null +++ b/BotSharp.MachineLearning/CRFsuite/Ner.cs @@ -0,0 +1,589 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.IO; +using System.Text; +using System.Text.RegularExpressions; + +namespace BotSharp.MachineLearning.CRFsuite +{ + public class Ner + { + // Separator of field values. + string separator = " "; + // Field names of the input data. + string fields = "y w pos chk"; + Template templates = new Template(); + + public string GetShape (string token) + { + string r = ""; + foreach (char c in token.ToCharArray()) + { + if (IsSupperChar(c)) + { + r += "U"; + } + else if (IsLowerChar(c)) + { + r += "L"; + } + else if (IsDigitChar(c)) + { + r += "D"; + } + else if (((IList)new char[]{'.', ','}).Contains(c)) + { + r += "."; + } + else if (((IList)new char[]{';', ':', '?', '!'}).Contains(c)) + { + r += ";"; + } + else if (((IList)new char[]{'+', '-', '*', '/', '=', '|', '_'}).Contains(c)) + { + r += "-"; + } + else if (((IList)new char[]{'(', '{', '[', '<'}).Contains(c)) + { + r += "("; + } + else if (((IList)new char[]{')', '}', ']', '>'}).Contains(c)) + { + r += ")"; + } + else + { + r += c; + } + } + return r; + } + + public string Degenerate (string src) + { + string dst = ""; + foreach (char c in src) + { + if (dst.Trim() == "" || char.Parse(dst.Substring(dst.Length - 1, 1)) != c) + { + dst += c; + } + } + return dst; + } + + public string GetType (string token) + { + List T = new List{"AllUpper", "AllDigit", "AllSymbol","AllUpperDigit", "AllUpperSymbol", "AllDigitSymbol", + "AllUpperDigitSymbol","InitUpper","AllLetter","AllAlnum"}; + HashSet R = new HashSet(T); + if (token == null || token.Trim() == "") + { + return "EMPTY"; + } + for (int i = 0 ; i < token.Length ; i++) + { + char c = token[i]; + if (IsSupperChar(c)) + { + if (R.Contains("AllDigit")) + { + R.Remove("AllDigit"); + } + if (R.Contains("AllSymbol")) + { + R.Remove("AllSymbol"); + } + if (R.Contains("AllDigitSymbol")) + { + R.Remove("AllDigitSymbol"); + } + } + else if (IsDigitChar(c) || ((IList)new char[]{'.', ','}).Contains(c)) + { + if (R.Contains("AllUpper")) + { + R.Remove("AllUpper"); + } + if (R.Contains("AllSymbol")) + { + R.Remove("AllSymbol"); + } + if (R.Contains("AllUpperSymbol")) + { + R.Remove("AllUpperSymbol"); + } + if (R.Contains("AllLetter")) + { + R.Remove("AllLetter"); + } + } + else if (IsLowerChar(c)) + { + if (R.Contains("AllUpper")) + { + R.Remove("AllUpper"); + } + if (R.Contains("AllDigit")) + { + R.Remove("AllDigit"); + } + if (R.Contains("AllSymbol")) + { + R.Remove("AllSymbol"); + } + if (R.Contains("AllUpperDigit")) + { + R.Remove("AllUpperDigit"); + } + if (R.Contains("AllUpperSymbol")) + { + R.Remove("AllUpperSymbol"); + } + if (R.Contains("AllDigitSymbol")) + { + R.Remove("AllDigitSymbol"); + } + if (R.Contains("AllUpperDigitSymbol")) + { + R.Remove("AllUpperDigitSymbol"); + } + } + else + { + if (R.Contains("AllUpper")) + { + R.Remove("AllUpper"); + } + if (R.Contains("AllDigit")) + { + R.Remove("AllDigit"); + } + if (R.Contains("AllUpperDigit")) + { + R.Remove("AllUpperDigit"); + } + if (R.Contains("AllLetter")) + { + R.Remove("AllLetter"); + } + if (R.Contains("AllAlnum")) + { + R.Remove("AllAlnum"); + } + } + + if (i == 0 && !IsSupperChar(c)) + { + if (R.Contains("InitUpper")) + { + R.Remove("InitUpper"); + } + } + } + foreach (string tag in T) + { + if (R.Contains(tag)) + { + return tag; + } + } + return "NO"; + } + + public Boolean Get2d (string token) + { + return token.Length == 2 && IsDigit(token); + } + + public Boolean Get4d (string token) + { + return token.Length == 4 && IsDigit(token); + } + + // is token digit, alpha or not + public Boolean GetDa (string token) + { + Boolean bd = false; + Boolean ba = false; + foreach (char c in token) + { + if (IsDigitChar(c)) + { + bd = true; + } + else if (IsAlphaChar(c)) + { + ba = true; + } + else + { + return false; + } + } + + return bd && ba; + } + + public Boolean GetDand (string token, char p) + { + Boolean bd = false; + Boolean bdd = false; + foreach (char c in token) + { + if (IsDigitChar(c)) + { + bd = true; + } + else if (c == p) + { + bdd = true; + } + else + { + return false; + } + } + return bd && bdd; + } + + public Boolean GetAllOther (string token) + { + foreach (char c in token) + { + if (IsDigitChar(c) || IsAlphaChar(c)) + { + return false; + } + } + return true; + } + + public Boolean GetCapPeriod (string token) + { + return token.Length == 2 && IsSupperChar(token[0]) && token[1] == '.'; + } + + public Boolean ContainsUpper (string token) + { + foreach (char c in token) + { + if (IsSupperChar(c)) + { + return true; + } + } + return false; + } + + public Boolean ContainsLower (string token) + { + foreach (char c in token) + { + if (IsLowerChar(c)) + { + return true; + } + } + return false; + } + + public Boolean ContainsAlpha (string token) + { + foreach (char c in token) + { + if (IsAlphaChar(c)) + { + return true; + } + } + return false; + } + + public Boolean ContainsDigit (string token) + { + foreach (char c in token) + { + if (IsDigitChar(c)) + { + return true; + } + } + return false; + } + + public Boolean ContainsSymbol (string token) + { + foreach (char c in token) + { + if (!IsAlnumChar(c)) + { + return true; + } + } + return false; + } + + public string B (Boolean v) + { + return v ? "yes" : "no"; + } + + public void Observation (Dictionary v, string defval = "") + { + // Lowercased token. + v.Add("wl", v["w"].ToString().ToLower()); + // Token shape. + v.Add("shape", GetShape(v["w"].ToString())); + // Token shape degenerated. + v.Add("shaped", Degenerate(v["shape"].ToString())); + // Token type. + v.Add("type", GetType(v["w"].ToString())); + // Prefixes (length between one to four). + if (v["w"].ToString().Length >= 1) + { + v.Add("p1", v["w"].ToString().Substring(0, 1)); + } + else + { + v.Add("p1", defval); + } + + if (v["w"].ToString().Length >= 2) + { + v.Add("p2", v["w"].ToString().Substring(0, 2)); + } + else + { + v.Add("p2", defval); + } + + if (v["w"].ToString().Length >= 3) + { + v.Add("p3", v["w"].ToString().Substring(0, 3)); + } + else + { + v.Add("p3", defval); + } + + if (v["w"].ToString().Length >= 4) + { + v.Add("p4", v["w"].ToString().Substring(0, 4)); + } + else + { + v.Add("p4", defval); + } + + // Suffixes (length between one to four). + string word = v["w"].ToString(); + if (v["w"].ToString().Length >= 1) + { + v.Add("s1", word.Substring(word.Length - 1, 1)); + } + else + { + v.Add("s1", defval); + } + + if (v["w"].ToString().Length >= 2) + { + v.Add("s2", word.Substring(word.Length - 2, 2)); + } + else + { + v.Add("s2", defval); + } + + if (v["w"].ToString().Length >= 3) + { + v.Add("s3", word.Substring(word.Length - 3, 3)); + } + else + { + v.Add("s3", defval); + } + + if (v["w"].ToString().Length >= 4) + { + v.Add("s4", word.Substring(word.Length - 4, 4)); + } + else + { + v.Add("s4", defval); + } + + // Two digits + v.Add("2d", B(Get2d(v["w"].ToString()))); + // Four digits + v.Add("4d", B(Get4d(v["w"].ToString()))); + // Alphanumeric token. + v.Add("d&a", B(GetDa(v["w"].ToString()))); + // Digits and '-'. + v.Add("d&-", B(GetDand(v["w"].ToString(), '-'))); + // Digits and '/'. + v.Add("d&/", B(GetDand(v["w"].ToString(), '/'))); + // Digits and ','. + v.Add("d&,", B(GetDand(v["w"].ToString(), ','))); + // Digits and '.'. + v.Add("d&.", B(GetDand(v["w"].ToString(), '.'))); + // A uppercase letter followed by '.' + v.Add("up", B(GetCapPeriod(v["w"].ToString()))); + // An initial uppercase letter. + v.Add("iu", B(IsSupperChar(v["w"].ToString()[0]))); + // All uppercase letters. + v.Add("au", B(IsSupper(v["w"].ToString()))); + // All lowercase letters. + v.Add("al", B(IsLower(v["w"].ToString()))); + // All digit letters. + v.Add("ad", B(IsDigit(v["w"].ToString()))); + // All other (non-alphanumeric) letters. + v.Add("ao",B(GetAllOther(v["w"].ToString()))); + + // Contains a uppercase letter. + v.Add("cu", B(ContainsUpper(v["w"].ToString()))); + // Contains a lowercase letter. + v.Add("cl", B(ContainsLower(v["w"].ToString()))); + // Contains a alphabet letter. + v.Add("ca", B(ContainsAlpha(v["w"].ToString()))); + // Contains a digit. + v.Add("cd", B(ContainsUpper(v["w"].ToString()))); + // Contains a symbol. + v.Add("cs", B(ContainsSymbol(v["w"].ToString()))); + } + + public void DisJunctive(List> X, int t, string field, int begin, int end) + { + string name = $"{field}[{begin}..{end}]"; + for (int offset = begin; offset < end + 1; offset++) + { + int p = t + offset; + if (p < 0 || p >= X.Count) + { + continue; + } + List F = (List)X[t]["F"]; + F.Add($"{name}={X[p][field]}"); + } + } + + string[] Uique = new string[]{"w", "wl", "pos", "chk", "shape", "shaped", "type", + "p1", "p2", "p3", "p4","s1", "s2", "s3", "s4", + "2d", "4d", "d&a", "d&-", "d&/", "d&,", "d&.", "up", + "iu", "au", "al", "ad", "ao", "cu", "cl", "ca", "cd", "cs"}; + string[] Bi = new string[]{"w", "pos", "chk", "shaped", "type"}; + + public void InitialTemplate () + { + foreach (string name in Uique) + { + for (int i = -2 ; i < 3; i++) + { + List templateRowFeature = new List(); + templateRowFeature.Add(new CRFFeature(name, i)); + templates.Features.Add(templateRowFeature); + } + } + + foreach (string name in Bi) + { + for (int i = -2 ; i < 2; i++) + { + List templateRowFeature = new List(); + templateRowFeature.Add(new CRFFeature(name, i)); + templateRowFeature.Add(new CRFFeature(name, i + 1)); + templates.Features.Add(templateRowFeature); + } + } + } + + public void FeatureExtractor (List> X) + { + // Append observations. + foreach (Dictionary d in X) + { + Observation(d); + } + // Apply the feature templates. + new Crfutils().ApplyTemplates(X, templates); + + // Append disjunctive features. + for (int t = 0; t < X.Count ; t++) + { + DisJunctive(X, t, "w", -4, -1); + DisJunctive(X, t, "w", 1, 4); + } + + if (X != null && X.Count > 0) { + ((List)X[0]["F"]).Add("__BOS__"); + ((List)X[X.Count - 1]["F"]).Add("__EOS__"); + } + } + + public void NerStart () + { + InitialTemplate(); + new Crfutils().CRFFileGenerator(FeatureExtractor, fields, separator); + } + + + private Boolean IsSupperChar(char c) + { + return ((int) c - 'A' >= 0) && ('Z' - (int) c >= 0) ; + } + private Boolean IsLowerChar(char c) + { + return ((int) c - 'a' >= 0)&&('z' - (int) c >= 0) ; + } + private Boolean IsDigitChar(char c) + { + return ((int) c - '0' >= 0)&&('9' - (int) c >= 0) ; + } + private Boolean IsAlphaChar (char c) + { + return IsLowerChar(c) || IsSupperChar(c); + } + private Boolean IsAlnumChar (char c) + { + return IsAlphaChar(c) || IsDigitChar(c); + } + private Boolean IsDigit (String s) + { + string patternAllDigit = @"^[0-9]+$"; + return new Regex(patternAllDigit).IsMatch(s); + } + private Boolean IsSupper (string s) + { + string patternAllCaptain = @"^[A-Z]+$"; + return new Regex(patternAllCaptain).IsMatch(s); + } + private Boolean IsLower (string s) + { + string patternAllCaptain = @"^[a-z]+$"; + return new Regex(patternAllCaptain).IsMatch(s); + } + } + + public class Template + { + public List> Features{ get; set; } + public Template () + { + this.Features = new List>(); + } + + } + + public class CRFFeature + { + public string Field { get; set; } + public int Offset { get; set; } + public CRFFeature (string field, int offset) + { + this.Field = field; + this.Offset = offset; + } + } +} \ No newline at end of file diff --git a/BotSharp.WebHost/Settings/bot.json b/BotSharp.WebHost/Settings/bot.json index 7d2c3951a..b6924bd2a 100644 --- a/BotSharp.WebHost/Settings/bot.json +++ b/BotSharp.WebHost/Settings/bot.json @@ -9,6 +9,6 @@ "SpaCyProvider": { "Url": "http://10.2.21.200:5005" }, - "Pipe": "SpaCyTokenizer, SpacyFeaturizer, CRFsuiteEntityRecognizer" //SpaCyEntitizer, SpaCyTextCategorizer, SpaCyEntityRecognizer + "Pipe": "SpaCyTokenizer, SpaCyTagger, CRFsuiteEntityRecognizer" } } diff --git a/BotSharp.WebHost/Startup.cs b/BotSharp.WebHost/Startup.cs index 4a1606906..7bc3c5c6d 100644 --- a/BotSharp.WebHost/Startup.cs +++ b/BotSharp.WebHost/Startup.cs @@ -13,6 +13,7 @@ using Microsoft.Extensions.PlatformAbstractions; using Newtonsoft.Json.Serialization; using Swashbuckle.AspNetCore.Swagger; +using BotSharp.Core.Engines.BotSharp; namespace BotSharp.WebHost { @@ -103,6 +104,52 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env) Database.Configuration = Configuration; Database.ContentRootPath = env.ContentRootPath; Database.Assemblies = Configuration.GetValue("Assemblies").Split(','); + + Runcmd(); + + var ai = new BotSharpAi(); + ai.LoadAgent("6a9fd374-c43d-447a-97f2-f37540d0c725"); + ai.Train(); + } + + public void Runcmd () + { + string cmd = "/home/bolo/Desktop/BotSharp/TrainingFiles/crfsuite learn -m /home/bolo/Desktop/BotSharp/TrainingFiles/bolo.model /home/bolo/Desktop/BotSharp/TrainingFiles/1.txt"; + System.Diagnostics.Process p = new System.Diagnostics.Process(); + p.StartInfo.FileName = "sh"; + p.StartInfo.UseShellExecute = false; //是否使用操作系统shell启动 + p.StartInfo.RedirectStandardInput = true;//接受来自调用程序的输入信息 + p.StartInfo.RedirectStandardOutput = true;//由调用程序获取输出信息 + p.StartInfo.RedirectStandardError = true;//重定向标准错误输出 + p.StartInfo.CreateNoWindow = false;//不显示程序窗口 + p.Start();//启动程序 + + //向cmd窗口发送输入信息 + p.StandardInput.WriteLine(cmd + "&exit"); + + p.StandardInput.AutoFlush = false; + //p.StandardInput.WriteLine("exit"); + //向标准输入写入要执行的命令。这里使用&是批处理命令的符号,表示前面一个命令不管是否执行成功都执行后面(exit)命令,如果不执行exit命令,后面调用ReadToEnd()方法会假死 + //同类的符号还有&&和||前者表示必须前一个命令执行成功才会执行后面的命令,后者表示必须前一个命令执行失败才会执行后面的命令 + + + + //获取cmd窗口的输出信息 + string output = p.StandardOutput.ReadToEnd(); + + //StreamReader reader = p.StandardOutput; + //string line=reader.ReadLine(); + //while (!reader.EndOfStream) + //{ + // str += line + " "; + // line = reader.ReadLine(); + //} + + p.WaitForExit();//等待程序执行完退出进程 + p.Close(); + + + Console.WriteLine(output); } } } diff --git a/TrainingFiles/1.txt b/TrainingFiles/1.txt new file mode 100644 index 000000000..5473d1156 --- /dev/null +++ b/TrainingFiles/1.txt @@ -0,0 +1,2226 @@ +O w[0]=add w[1]=this w[2]=song wl[0]=add wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=a p1[1]=t p1[2]=s p2[0]=ad p2[1]=th p2[2]=so p3[0]=add p3[1]=thi p3[2]=son p4[0]= p4[1]=this p4[2]=song s1[0]=d s1[1]=s s1[2]=g s2[0]=dd s2[1]=is s2[2]=ng s3[0]=add s3[1]=his s3[2]=ong s4[0]= s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=add|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song w[1..4]=to w[1..4]=my __BOS__ +O w[-1]=add w[0]=this w[1]=song w[2]=to wl[-1]=add wl[0]=this wl[1]=song wl[2]=to pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=a p1[0]=t p1[1]=s p1[2]=t p2[-1]=ad p2[0]=th p2[1]=so p2[2]=to p3[-1]=add p3[0]=thi p3[1]=son p3[2]= p4[-1]= p4[0]=this p4[1]=song p4[2]= s1[-1]=d s1[0]=s s1[1]=g s1[2]=o s2[-1]=dd s2[0]=is s2[1]=ng s2[2]=to s3[-1]=add s3[0]=his s3[1]=ong s3[2]= s4[-1]= s4[0]=this s4[1]=song s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=add|this w[0]|w[1]=this|song w[1]|w[2]=song|to pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[1..4]=song w[1..4]=to w[1..4]=my w[1..4]=playlist +O w[-2]=add w[-1]=this w[0]=song w[1]=to w[2]=my wl[-2]=add wl[-1]=this wl[0]=song wl[1]=to wl[2]=my pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=t p1[0]=s p1[1]=t p1[2]=m p2[-2]=ad p2[-1]=th p2[0]=so p2[1]=to p2[2]=my p3[-2]=add p3[-1]=thi p3[0]=son p3[1]= p3[2]= p4[-2]= p4[-1]=this p4[0]=song p4[1]= p4[2]= s1[-2]=d s1[-1]=s s1[0]=g s1[1]=o s1[2]=y s2[-2]=dd s2[-1]=is s2[0]=ng s2[1]=to s2[2]=my s3[-2]=add s3[-1]=his s3[0]=ong s3[1]= s3[2]= s4[-2]= s4[-1]=this s4[0]=song s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=add|this w[-1]|w[0]=this|song w[0]|w[1]=song|to w[1]|w[2]=to|my pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[1..4]=to w[1..4]=my w[1..4]=playlist +O w[-2]=this w[-1]=song w[0]=to w[1]=my w[2]=playlist wl[-2]=this wl[-1]=song wl[0]=to wl[1]=my wl[2]=playlist pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=PRP$ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=LL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=s p1[0]=t p1[1]=m p1[2]=p p2[-2]=th p2[-1]=so p2[0]=to p2[1]=my p2[2]=pl p3[-2]=thi p3[-1]=son p3[0]= p3[1]= p3[2]=pla p4[-2]=this p4[-1]=song p4[0]= p4[1]= p4[2]=play s1[-2]=s s1[-1]=g s1[0]=o s1[1]=y s1[2]=t s2[-2]=is s2[-1]=ng s2[0]=to s2[1]=my s2[2]=st s3[-2]=his s3[-1]=ong s3[0]= s3[1]= s3[2]=ist s4[-2]=this s4[-1]=song s4[0]= s4[1]= s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=this|song w[-1]|w[0]=song|to w[0]|w[1]=to|my w[1]|w[2]=my|playlist pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[-4..-1]=song w[1..4]=my w[1..4]=playlist +O w[-2]=song w[-1]=to w[0]=my w[1]=playlist wl[-2]=song wl[-1]=to wl[0]=my wl[1]=playlist pos[-2]=NN pos[-1]=IN pos[0]=PRP$ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=s p1[-1]=t p1[0]=m p1[1]=p p2[-2]=so p2[-1]=to p2[0]=my p2[1]=pl p3[-2]=son p3[-1]= p3[0]= p3[1]=pla p4[-2]=song p4[-1]= p4[0]= p4[1]=play s1[-2]=g s1[-1]=o s1[0]=y s1[1]=t s2[-2]=ng s2[-1]=to s2[0]=my s2[1]=st s3[-2]=ong s3[-1]= s3[0]= s3[1]=ist s4[-2]=song s4[-1]= s4[0]= s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|to w[-1]|w[0]=to|my w[0]|w[1]=my|playlist pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[-4..-1]=song w[-4..-1]=to w[1..4]=playlist +O w[-2]=to w[-1]=my w[0]=playlist wl[-2]=to wl[-1]=my wl[0]=playlist pos[-2]=IN pos[-1]=PRP$ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=m p1[0]=p p2[-2]=to p2[-1]=my p2[0]=pl p3[-2]= p3[-1]= p3[0]=pla p4[-2]= p4[-1]= p4[0]=play s1[-2]=o s1[-1]=y s1[0]=t s2[-2]=to s2[-1]=my s2[0]=st s3[-2]= s3[-1]= s3[0]=ist s4[-2]= s4[-1]= s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|my w[-1]|w[0]=my|playlist pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=this w[-4..-1]=song w[-4..-1]=to w[-4..-1]=my __EOS__ + +O w[0]=put w[1]=it w[2]=on wl[0]=put wl[1]=it wl[2]=on pos[0]=VB pos[1]=PRP pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=i p1[2]=o p2[0]=pu p2[1]=it p2[2]=on p3[0]=put p3[1]= p3[2]= p4[0]= p4[1]= p4[2]= s1[0]=t s1[1]=t s1[2]=n s2[0]=ut s2[1]=it s2[2]=on s3[0]=put s3[1]= s3[2]= s4[0]= s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|it w[1]|w[2]=it|on pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=on w[1..4]=my w[1..4]=Late __BOS__ +O w[-1]=put w[0]=it w[1]=on w[2]=my wl[-1]=put wl[0]=it wl[1]=on wl[2]=my pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=PRP$ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=i p1[1]=o p1[2]=m p2[-1]=pu p2[0]=it p2[1]=on p2[2]=my p3[-1]=put p3[0]= p3[1]= p3[2]= p4[-1]= p4[0]= p4[1]= p4[2]= s1[-1]=t s1[0]=t s1[1]=n s1[2]=y s2[-1]=ut s2[0]=it s2[1]=on s2[2]=my s3[-1]=put s3[0]= s3[1]= s3[2]= s4[-1]= s4[0]= s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|it w[0]|w[1]=it|on w[1]|w[2]=on|my pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|PRP$ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=on w[1..4]=my w[1..4]=Late w[1..4]=Night +O w[-2]=put w[-1]=it w[0]=on w[1]=my w[2]=Late wl[-2]=put wl[-1]=it wl[0]=on wl[1]=my wl[2]=late pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=PRP$ pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LL shape[0]=LL shape[1]=LL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=i p1[0]=o p1[1]=m p1[2]=L p2[-2]=pu p2[-1]=it p2[0]=on p2[1]=my p2[2]=La p3[-2]=put p3[-1]= p3[0]= p3[1]= p3[2]=Lat p4[-2]= p4[-1]= p4[0]= p4[1]= p4[2]=Late s1[-2]=t s1[-1]=t s1[0]=n s1[1]=y s1[2]=e s2[-2]=ut s2[-1]=it s2[0]=on s2[1]=my s2[2]=te s3[-2]=put s3[-1]= s3[0]= s3[1]= s3[2]=ate s4[-2]= s4[-1]= s4[0]= s4[1]= s4[2]=Late 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=put|it w[-1]|w[0]=it|on w[0]|w[1]=on|my w[1]|w[2]=my|Late pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=put w[-4..-1]=it w[1..4]=my w[1..4]=Late w[1..4]=Night w[1..4]=playlist +O w[-2]=it w[-1]=on w[0]=my w[1]=Late w[2]=Night wl[-2]=it wl[-1]=on wl[0]=my wl[1]=late wl[2]=night pos[-2]=PRP pos[-1]=IN pos[0]=PRP$ pos[1]=JJ pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=LL shape[0]=LL shape[1]=ULLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=i p1[-1]=o p1[0]=m p1[1]=L p1[2]=N p2[-2]=it p2[-1]=on p2[0]=my p2[1]=La p2[2]=Ni p3[-2]= p3[-1]= p3[0]= p3[1]=Lat p3[2]=Nig p4[-2]= p4[-1]= p4[0]= p4[1]=Late p4[2]=Nigh s1[-2]=t s1[-1]=n s1[0]=y s1[1]=e s1[2]=t s2[-2]=it s2[-1]=on s2[0]=my s2[1]=te s2[2]=ht s3[-2]= s3[-1]= s3[0]= s3[1]=ate s3[2]=ght s4[-2]= s4[-1]= s4[0]= s4[1]=Late s4[2]=ight 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=it|on w[-1]|w[0]=on|my w[0]|w[1]=my|Late w[1]|w[2]=Late|Night pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|JJ pos[1]|pos[2]=JJ|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=put w[-4..-1]=it w[-4..-1]=on w[1..4]=Late w[1..4]=Night w[1..4]=playlist +playlist w[-2]=on w[-1]=my w[0]=Late w[1]=Night w[2]=playlist wl[-2]=on wl[-1]=my wl[0]=late wl[1]=night wl[2]=playlist pos[-2]=IN pos[-1]=PRP$ pos[0]=JJ pos[1]=JJ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LL shape[-1]=LL shape[0]=ULLL shape[1]=ULLLL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=o p1[-1]=m p1[0]=L p1[1]=N p1[2]=p p2[-2]=on p2[-1]=my p2[0]=La p2[1]=Ni p2[2]=pl p3[-2]= p3[-1]= p3[0]=Lat p3[1]=Nig p3[2]=pla p4[-2]= p4[-1]= p4[0]=Late p4[1]=Nigh p4[2]=play s1[-2]=n s1[-1]=y s1[0]=e s1[1]=t s1[2]=t s2[-2]=on s2[-1]=my s2[0]=te s2[1]=ht s2[2]=st s3[-2]= s3[-1]= s3[0]=ate s3[1]=ght s3[2]=ist s4[-2]= s4[-1]= s4[0]=Late s4[1]=ight s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=on|my w[-1]|w[0]=my|Late w[0]|w[1]=Late|Night w[1]|w[2]=Night|playlist pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|JJ pos[0]|pos[1]=JJ|JJ pos[1]|pos[2]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=put w[-4..-1]=it w[-4..-1]=on w[-4..-1]=my w[1..4]=Night w[1..4]=playlist +playlist w[-2]=my w[-1]=Late w[0]=Night w[1]=playlist wl[-2]=my wl[-1]=late wl[0]=night wl[1]=playlist pos[-2]=PRP$ pos[-1]=JJ pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=ULLL shape[0]=ULLLL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-2]=m p1[-1]=L p1[0]=N p1[1]=p p2[-2]=my p2[-1]=La p2[0]=Ni p2[1]=pl p3[-2]= p3[-1]=Lat p3[0]=Nig p3[1]=pla p4[-2]= p4[-1]=Late p4[0]=Nigh p4[1]=play s1[-2]=y s1[-1]=e s1[0]=t s1[1]=t s2[-2]=my s2[-1]=te s2[0]=ht s2[1]=st s3[-2]= s3[-1]=ate s3[0]=ght s3[1]=ist s4[-2]= s4[-1]=Late s4[0]=ight s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=my|Late w[-1]|w[0]=Late|Night w[0]|w[1]=Night|playlist pos[-2]|pos[-1]=PRP$|JJ pos[-1]|pos[0]=JJ|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=it w[-4..-1]=on w[-4..-1]=my w[-4..-1]=Late w[1..4]=playlist +O w[-2]=Late w[-1]=Night w[0]=playlist wl[-2]=late wl[-1]=night wl[0]=playlist pos[-2]=JJ pos[-1]=JJ pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULLL shape[-1]=ULLLL shape[0]=LLLLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=L p1[-1]=N p1[0]=p p2[-2]=La p2[-1]=Ni p2[0]=pl p3[-2]=Lat p3[-1]=Nig p3[0]=pla p4[-2]=Late p4[-1]=Nigh p4[0]=play s1[-2]=e s1[-1]=t s1[0]=t s2[-2]=te s2[-1]=ht s2[0]=st s3[-2]=ate s3[-1]=ght s3[0]=ist s4[-2]=Late s4[-1]=ight s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Late|Night w[-1]|w[0]=Night|playlist pos[-2]|pos[-1]=JJ|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=on w[-4..-1]=my w[-4..-1]=Late w[-4..-1]=Night __EOS__ + +O w[0]=save w[1]=this w[2]=song wl[0]=save wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=s p2[0]=sa p2[1]=th p2[2]=so p3[0]=sav p3[1]=thi p3[2]=son p4[0]=save p4[1]=this p4[2]=song s1[0]=e s1[1]=s s1[2]=g s2[0]=ve s2[1]=is s2[2]=ng s3[0]=ave s3[1]=his s3[2]=ong s4[0]=save s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=save|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song w[1..4]=to w[1..4]=my __BOS__ +O w[-1]=save w[0]=this w[1]=song w[2]=to wl[-1]=save wl[0]=this wl[1]=song wl[2]=to pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=s p1[0]=t p1[1]=s p1[2]=t p2[-1]=sa p2[0]=th p2[1]=so p2[2]=to p3[-1]=sav p3[0]=thi p3[1]=son p3[2]= p4[-1]=save p4[0]=this p4[1]=song p4[2]= s1[-1]=e s1[0]=s s1[1]=g s1[2]=o s2[-1]=ve s2[0]=is s2[1]=ng s2[2]=to s3[-1]=ave s3[0]=his s3[1]=ong s3[2]= s4[-1]=save s4[0]=this s4[1]=song s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=save|this w[0]|w[1]=this|song w[1]|w[2]=song|to pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=save w[1..4]=song w[1..4]=to w[1..4]=my w[1..4]=Workout +O w[-2]=save w[-1]=this w[0]=song w[1]=to w[2]=my wl[-2]=save wl[-1]=this wl[0]=song wl[1]=to wl[2]=my pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=t p1[0]=s p1[1]=t p1[2]=m p2[-2]=sa p2[-1]=th p2[0]=so p2[1]=to p2[2]=my p3[-2]=sav p3[-1]=thi p3[0]=son p3[1]= p3[2]= p4[-2]=save p4[-1]=this p4[0]=song p4[1]= p4[2]= s1[-2]=e s1[-1]=s s1[0]=g s1[1]=o s1[2]=y s2[-2]=ve s2[-1]=is s2[0]=ng s2[1]=to s2[2]=my s3[-2]=ave s3[-1]=his s3[0]=ong s3[1]= s3[2]= s4[-2]=save s4[-1]=this s4[0]=song s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=save|this w[-1]|w[0]=this|song w[0]|w[1]=song|to w[1]|w[2]=to|my pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=save w[-4..-1]=this w[1..4]=to w[1..4]=my w[1..4]=Workout w[1..4]=playlist +O w[-2]=this w[-1]=song w[0]=to w[1]=my w[2]=Workout wl[-2]=this wl[-1]=song wl[0]=to wl[1]=my wl[2]=workout pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=PRP$ pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=s p1[0]=t p1[1]=m p1[2]=W p2[-2]=th p2[-1]=so p2[0]=to p2[1]=my p2[2]=Wo p3[-2]=thi p3[-1]=son p3[0]= p3[1]= p3[2]=Wor p4[-2]=this p4[-1]=song p4[0]= p4[1]= p4[2]=Work s1[-2]=s s1[-1]=g s1[0]=o s1[1]=y s1[2]=t s2[-2]=is s2[-1]=ng s2[0]=to s2[1]=my s2[2]=ut s3[-2]=his s3[-1]=ong s3[0]= s3[1]= s3[2]=out s4[-2]=this s4[-1]=song s4[0]= s4[1]= s4[2]=kout 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=this|song w[-1]|w[0]=song|to w[0]|w[1]=to|my w[1]|w[2]=my|Workout pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=save w[-4..-1]=this w[-4..-1]=song w[1..4]=my w[1..4]=Workout w[1..4]=playlist +O w[-2]=song w[-1]=to w[0]=my w[1]=Workout w[2]=playlist wl[-2]=song wl[-1]=to wl[0]=my wl[1]=workout wl[2]=playlist pos[-2]=NN pos[-1]=IN pos[0]=PRP$ pos[1]=NNP pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LL shape[1]=ULLLLLL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=s p1[-1]=t p1[0]=m p1[1]=W p1[2]=p p2[-2]=so p2[-1]=to p2[0]=my p2[1]=Wo p2[2]=pl p3[-2]=son p3[-1]= p3[0]= p3[1]=Wor p3[2]=pla p4[-2]=song p4[-1]= p4[0]= p4[1]=Work p4[2]=play s1[-2]=g s1[-1]=o s1[0]=y s1[1]=t s1[2]=t s2[-2]=ng s2[-1]=to s2[0]=my s2[1]=ut s2[2]=st s3[-2]=ong s3[-1]= s3[0]= s3[1]=out s3[2]=ist s4[-2]=song s4[-1]= s4[0]= s4[1]=kout s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|to w[-1]|w[0]=to|my w[0]|w[1]=my|Workout w[1]|w[2]=Workout|playlist pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=save w[-4..-1]=this w[-4..-1]=song w[-4..-1]=to w[1..4]=Workout w[1..4]=playlist +playlist w[-2]=to w[-1]=my w[0]=Workout w[1]=playlist wl[-2]=to wl[-1]=my wl[0]=workout wl[1]=playlist pos[-2]=IN pos[-1]=PRP$ pos[0]=NNP pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=LL shape[0]=ULLLLLL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter p1[-2]=t p1[-1]=m p1[0]=W p1[1]=p p2[-2]=to p2[-1]=my p2[0]=Wo p2[1]=pl p3[-2]= p3[-1]= p3[0]=Wor p3[1]=pla p4[-2]= p4[-1]= p4[0]=Work p4[1]=play s1[-2]=o s1[-1]=y s1[0]=t s1[1]=t s2[-2]=to s2[-1]=my s2[0]=ut s2[1]=st s3[-2]= s3[-1]= s3[0]=out s3[1]=ist s4[-2]= s4[-1]= s4[0]=kout s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|my w[-1]|w[0]=my|Workout w[0]|w[1]=Workout|playlist pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NNP pos[0]|pos[1]=NNP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=this w[-4..-1]=song w[-4..-1]=to w[-4..-1]=my w[1..4]=playlist +O w[-2]=my w[-1]=Workout w[0]=playlist wl[-2]=my wl[-1]=workout wl[0]=playlist pos[-2]=PRP$ pos[-1]=NNP pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LL shape[-1]=ULLLLLL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter p1[-2]=m p1[-1]=W p1[0]=p p2[-2]=my p2[-1]=Wo p2[0]=pl p3[-2]= p3[-1]=Wor p3[0]=pla p4[-2]= p4[-1]=Work p4[0]=play s1[-2]=y s1[-1]=t s1[0]=t s2[-2]=my s2[-1]=ut s2[0]=st s3[-2]= s3[-1]=out s3[0]=ist s4[-2]= s4[-1]=kout s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=my|Workout w[-1]|w[0]=Workout|playlist pos[-2]|pos[-1]=PRP$|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=song w[-4..-1]=to w[-4..-1]=my w[-4..-1]=Workout __EOS__ + +O w[0]=move w[1]=it w[2]=to wl[0]=move wl[1]=it wl[2]=to pos[0]=VB pos[1]=PRP pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=m p1[1]=i p1[2]=t p2[0]=mo p2[1]=it p2[2]=to p3[0]=mov p3[1]= p3[2]= p4[0]=move p4[1]= p4[2]= s1[0]=e s1[1]=t s1[2]=o s2[0]=ve s2[1]=it s2[2]=to s3[0]=ove s3[1]= s3[2]= s4[0]=move s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=move|it w[1]|w[2]=it|to pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=to w[1..4]=the w[1..4]=Gym __BOS__ +O w[-1]=move w[0]=it w[1]=to w[2]=the wl[-1]=move wl[0]=it wl[1]=to wl[2]=the pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=m p1[0]=i p1[1]=t p1[2]=t p2[-1]=mo p2[0]=it p2[1]=to p2[2]=th p3[-1]=mov p3[0]= p3[1]= p3[2]=the p4[-1]=move p4[0]= p4[1]= p4[2]= s1[-1]=e s1[0]=t s1[1]=o s1[2]=e s2[-1]=ve s2[0]=it s2[1]=to s2[2]=he s3[-1]=ove s3[0]= s3[1]= s3[2]=the s4[-1]=move s4[0]= s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=move|it w[0]|w[1]=it|to w[1]|w[2]=to|the pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=move w[1..4]=to w[1..4]=the w[1..4]=Gym w[1..4]=playlist +O w[-2]=move w[-1]=it w[0]=to w[1]=the w[2]=Gym wl[-2]=move wl[-1]=it wl[0]=to wl[1]=the wl[2]=gym pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=DT pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LL shape[1]=LLL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=m p1[-1]=i p1[0]=t p1[1]=t p1[2]=G p2[-2]=mo p2[-1]=it p2[0]=to p2[1]=th p2[2]=Gy p3[-2]=mov p3[-1]= p3[0]= p3[1]=the p3[2]=Gym p4[-2]=move p4[-1]= p4[0]= p4[1]= p4[2]= s1[-2]=e s1[-1]=t s1[0]=o s1[1]=e s1[2]=m s2[-2]=ve s2[-1]=it s2[0]=to s2[1]=he s2[2]=ym s3[-2]=ove s3[-1]= s3[0]= s3[1]=the s3[2]=Gym s4[-2]=move s4[-1]= s4[0]= s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=move|it w[-1]|w[0]=it|to w[0]|w[1]=to|the w[1]|w[2]=the|Gym pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=move w[-4..-1]=it w[1..4]=the w[1..4]=Gym w[1..4]=playlist +O w[-2]=it w[-1]=to w[0]=the w[1]=Gym w[2]=playlist wl[-2]=it wl[-1]=to wl[0]=the wl[1]=gym wl[2]=playlist pos[-2]=PRP pos[-1]=IN pos[0]=DT pos[1]=NNP pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LL shape[-1]=LL shape[0]=LLL shape[1]=ULL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=i p1[-1]=t p1[0]=t p1[1]=G p1[2]=p p2[-2]=it p2[-1]=to p2[0]=th p2[1]=Gy p2[2]=pl p3[-2]= p3[-1]= p3[0]=the p3[1]=Gym p3[2]=pla p4[-2]= p4[-1]= p4[0]= p4[1]= p4[2]=play s1[-2]=t s1[-1]=o s1[0]=e s1[1]=m s1[2]=t s2[-2]=it s2[-1]=to s2[0]=he s2[1]=ym s2[2]=st s3[-2]= s3[-1]= s3[0]=the s3[1]=Gym s3[2]=ist s4[-2]= s4[-1]= s4[0]= s4[1]= s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=it|to w[-1]|w[0]=to|the w[0]|w[1]=the|Gym w[1]|w[2]=Gym|playlist pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=move w[-4..-1]=it w[-4..-1]=to w[1..4]=Gym w[1..4]=playlist +playlist w[-2]=to w[-1]=the w[0]=Gym w[1]=playlist wl[-2]=to wl[-1]=the wl[0]=gym wl[1]=playlist pos[-2]=IN pos[-1]=DT pos[0]=NNP pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=LLL shape[0]=ULL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter p1[-2]=t p1[-1]=t p1[0]=G p1[1]=p p2[-2]=to p2[-1]=th p2[0]=Gy p2[1]=pl p3[-2]= p3[-1]=the p3[0]=Gym p3[1]=pla p4[-2]= p4[-1]= p4[0]= p4[1]=play s1[-2]=o s1[-1]=e s1[0]=m s1[1]=t s2[-2]=to s2[-1]=he s2[0]=ym s2[1]=st s3[-2]= s3[-1]=the s3[0]=Gym s3[1]=ist s4[-2]= s4[-1]= s4[0]= s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|Gym w[0]|w[1]=Gym|playlist pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NNP pos[0]|pos[1]=NNP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=move w[-4..-1]=it w[-4..-1]=to w[-4..-1]=the w[1..4]=playlist +O w[-2]=the w[-1]=Gym w[0]=playlist wl[-2]=the wl[-1]=gym wl[0]=playlist pos[-2]=DT pos[-1]=NNP pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLL shape[-1]=ULL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter p1[-2]=t p1[-1]=G p1[0]=p p2[-2]=th p2[-1]=Gy p2[0]=pl p3[-2]=the p3[-1]=Gym p3[0]=pla p4[-2]= p4[-1]= p4[0]=play s1[-2]=e s1[-1]=m s1[0]=t s2[-2]=he s2[-1]=ym s2[0]=st s3[-2]=the s3[-1]=Gym s3[0]=ist s4[-2]= s4[-1]= s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|Gym w[-1]|w[0]=Gym|playlist pos[-2]|pos[-1]=DT|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=it w[-4..-1]=to w[-4..-1]=the w[-4..-1]=Gym __EOS__ + +O w[0]=add w[1]=it w[2]=to wl[0]=add wl[1]=it wl[2]=to pos[0]=VB pos[1]=PRP pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=a p1[1]=i p1[2]=t p2[0]=ad p2[1]=it p2[2]=to p3[0]=add p3[1]= p3[2]= p4[0]= p4[1]= p4[2]= s1[0]=d s1[1]=t s1[2]=o s2[0]=dd s2[1]=it s2[2]=to s3[0]=add s3[1]= s3[2]= s4[0]= s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=add|it w[1]|w[2]=it|to pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=to w[1..4]=the w[1..4]=playlist __BOS__ +O w[-1]=add w[0]=it w[1]=to w[2]=the wl[-1]=add wl[0]=it wl[1]=to wl[2]=the pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=a p1[0]=i p1[1]=t p1[2]=t p2[-1]=ad p2[0]=it p2[1]=to p2[2]=th p3[-1]=add p3[0]= p3[1]= p3[2]=the p4[-1]= p4[0]= p4[1]= p4[2]= s1[-1]=d s1[0]=t s1[1]=o s1[2]=e s2[-1]=dd s2[0]=it s2[1]=to s2[2]=he s3[-1]=add s3[0]= s3[1]= s3[2]=the s4[-1]= s4[0]= s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=add|it w[0]|w[1]=it|to w[1]|w[2]=to|the pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[1..4]=to w[1..4]=the w[1..4]=playlist w[1..4]=Yoga +O w[-2]=add w[-1]=it w[0]=to w[1]=the w[2]=playlist wl[-2]=add wl[-1]=it wl[0]=to wl[1]=the wl[2]=playlist pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LL shape[0]=LL shape[1]=LLL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=i p1[0]=t p1[1]=t p1[2]=p p2[-2]=ad p2[-1]=it p2[0]=to p2[1]=th p2[2]=pl p3[-2]=add p3[-1]= p3[0]= p3[1]=the p3[2]=pla p4[-2]= p4[-1]= p4[0]= p4[1]= p4[2]=play s1[-2]=d s1[-1]=t s1[0]=o s1[1]=e s1[2]=t s2[-2]=dd s2[-1]=it s2[0]=to s2[1]=he s2[2]=st s3[-2]=add s3[-1]= s3[0]= s3[1]=the s3[2]=ist s4[-2]= s4[-1]= s4[0]= s4[1]= s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=add|it w[-1]|w[0]=it|to w[0]|w[1]=to|the w[1]|w[2]=the|playlist pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=it w[1..4]=the w[1..4]=playlist w[1..4]=Yoga +O w[-2]=it w[-1]=to w[0]=the w[1]=playlist w[2]=Yoga wl[-2]=it wl[-1]=to wl[0]=the wl[1]=playlist wl[2]=yoga pos[-2]=PRP pos[-1]=IN pos[0]=DT pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=LL shape[0]=LLL shape[1]=LLLLLLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=i p1[-1]=t p1[0]=t p1[1]=p p1[2]=Y p2[-2]=it p2[-1]=to p2[0]=th p2[1]=pl p2[2]=Yo p3[-2]= p3[-1]= p3[0]=the p3[1]=pla p3[2]=Yog p4[-2]= p4[-1]= p4[0]= p4[1]=play p4[2]=Yoga s1[-2]=t s1[-1]=o s1[0]=e s1[1]=t s1[2]=a s2[-2]=it s2[-1]=to s2[0]=he s2[1]=st s2[2]=ga s3[-2]= s3[-1]= s3[0]=the s3[1]=ist s3[2]=oga s4[-2]= s4[-1]= s4[0]= s4[1]=list s4[2]=Yoga 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=it|to w[-1]|w[0]=to|the w[0]|w[1]=the|playlist w[1]|w[2]=playlist|Yoga pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=add w[-4..-1]=it w[-4..-1]=to w[1..4]=playlist w[1..4]=Yoga +O w[-2]=to w[-1]=the w[0]=playlist w[1]=Yoga wl[-2]=to wl[-1]=the wl[0]=playlist wl[1]=yoga pos[-2]=IN pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=LLL shape[0]=LLLLLLLL shape[1]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=t p1[-1]=t p1[0]=p p1[1]=Y p2[-2]=to p2[-1]=th p2[0]=pl p2[1]=Yo p3[-2]= p3[-1]=the p3[0]=pla p3[1]=Yog p4[-2]= p4[-1]= p4[0]=play p4[1]=Yoga s1[-2]=o s1[-1]=e s1[0]=t s1[1]=a s2[-2]=to s2[-1]=he s2[0]=st s2[1]=ga s3[-2]= s3[-1]=the s3[0]=ist s3[1]=oga s4[-2]= s4[-1]= s4[0]=list s4[1]=Yoga 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|playlist w[0]|w[1]=playlist|Yoga pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=add w[-4..-1]=it w[-4..-1]=to w[-4..-1]=the w[1..4]=Yoga +playlist w[-2]=the w[-1]=playlist w[0]=Yoga wl[-2]=the wl[-1]=playlist wl[0]=yoga pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL shape[-1]=LLLLLLLL shape[0]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=p p1[0]=Y p2[-2]=th p2[-1]=pl p2[0]=Yo p3[-2]=the p3[-1]=pla p3[0]=Yog p4[-2]= p4[-1]=play p4[0]=Yoga s1[-2]=e s1[-1]=t s1[0]=a s2[-2]=he s2[-1]=st s2[0]=ga s3[-2]=the s3[-1]=ist s3[0]=oga s4[-2]= s4[-1]=list s4[0]=Yoga 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|playlist w[-1]|w[0]=playlist|Yoga pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=it w[-4..-1]=to w[-4..-1]=the w[-4..-1]=playlist __EOS__ + +O w[0]=save w[1]=this w[2]=track wl[0]=save wl[1]=this wl[2]=track pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=t p2[0]=sa p2[1]=th p2[2]=tr p3[0]=sav p3[1]=thi p3[2]=tra p4[0]=save p4[1]=this p4[2]=trac s1[0]=e s1[1]=s s1[2]=k s2[0]=ve s2[1]=is s2[2]=ck s3[0]=ave s3[1]=his s3[2]=ack s4[0]=save s4[1]=this s4[2]=rack 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=save|this w[1]|w[2]=this|track pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=track w[1..4]=in w[1..4]=my __BOS__ +O w[-1]=save w[0]=this w[1]=track w[2]=in wl[-1]=save wl[0]=this wl[1]=track wl[2]=in pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=s p1[0]=t p1[1]=t p1[2]=i p2[-1]=sa p2[0]=th p2[1]=tr p2[2]=in p3[-1]=sav p3[0]=thi p3[1]=tra p3[2]= p4[-1]=save p4[0]=this p4[1]=trac p4[2]= s1[-1]=e s1[0]=s s1[1]=k s1[2]=n s2[-1]=ve s2[0]=is s2[1]=ck s2[2]=in s3[-1]=ave s3[0]=his s3[1]=ack s3[2]= s4[-1]=save s4[0]=this s4[1]=rack s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=save|this w[0]|w[1]=this|track w[1]|w[2]=track|in pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=save w[1..4]=track w[1..4]=in w[1..4]=my w[1..4]=playlist +O w[-2]=save w[-1]=this w[0]=track w[1]=in w[2]=my wl[-2]=save wl[-1]=this wl[0]=track wl[1]=in wl[2]=my pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=t p1[0]=t p1[1]=i p1[2]=m p2[-2]=sa p2[-1]=th p2[0]=tr p2[1]=in p2[2]=my p3[-2]=sav p3[-1]=thi p3[0]=tra p3[1]= p3[2]= p4[-2]=save p4[-1]=this p4[0]=trac p4[1]= p4[2]= s1[-2]=e s1[-1]=s s1[0]=k s1[1]=n s1[2]=y s2[-2]=ve s2[-1]=is s2[0]=ck s2[1]=in s2[2]=my s3[-2]=ave s3[-1]=his s3[0]=ack s3[1]= s3[2]= s4[-2]=save s4[-1]=this s4[0]=rack s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=save|this w[-1]|w[0]=this|track w[0]|w[1]=track|in w[1]|w[2]=in|my pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=save w[-4..-1]=this w[1..4]=in w[1..4]=my w[1..4]=playlist +O w[-2]=this w[-1]=track w[0]=in w[1]=my w[2]=playlist wl[-2]=this wl[-1]=track wl[0]=in wl[1]=my wl[2]=playlist pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=PRP$ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=LL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=t p1[0]=i p1[1]=m p1[2]=p p2[-2]=th p2[-1]=tr p2[0]=in p2[1]=my p2[2]=pl p3[-2]=thi p3[-1]=tra p3[0]= p3[1]= p3[2]=pla p4[-2]=this p4[-1]=trac p4[0]= p4[1]= p4[2]=play s1[-2]=s s1[-1]=k s1[0]=n s1[1]=y s1[2]=t s2[-2]=is s2[-1]=ck s2[0]=in s2[1]=my s2[2]=st s3[-2]=his s3[-1]=ack s3[0]= s3[1]= s3[2]=ist s4[-2]=this s4[-1]=rack s4[0]= s4[1]= s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=this|track w[-1]|w[0]=track|in w[0]|w[1]=in|my w[1]|w[2]=my|playlist pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=save w[-4..-1]=this w[-4..-1]=track w[1..4]=my w[1..4]=playlist +O w[-2]=track w[-1]=in w[0]=my w[1]=playlist wl[-2]=track wl[-1]=in wl[0]=my wl[1]=playlist pos[-2]=NN pos[-1]=IN pos[0]=PRP$ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLL shape[-1]=LL shape[0]=LL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=i p1[0]=m p1[1]=p p2[-2]=tr p2[-1]=in p2[0]=my p2[1]=pl p3[-2]=tra p3[-1]= p3[0]= p3[1]=pla p4[-2]=trac p4[-1]= p4[0]= p4[1]=play s1[-2]=k s1[-1]=n s1[0]=y s1[1]=t s2[-2]=ck s2[-1]=in s2[0]=my s2[1]=st s3[-2]=ack s3[-1]= s3[0]= s3[1]=ist s4[-2]=rack s4[-1]= s4[0]= s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=track|in w[-1]|w[0]=in|my w[0]|w[1]=my|playlist pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=save w[-4..-1]=this w[-4..-1]=track w[-4..-1]=in w[1..4]=playlist +O w[-2]=in w[-1]=my w[0]=playlist wl[-2]=in wl[-1]=my wl[0]=playlist pos[-2]=IN pos[-1]=PRP$ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=i p1[-1]=m p1[0]=p p2[-2]=in p2[-1]=my p2[0]=pl p3[-2]= p3[-1]= p3[0]=pla p4[-2]= p4[-1]= p4[0]=play s1[-2]=n s1[-1]=y s1[0]=t s2[-2]=in s2[-1]=my s2[0]=st s3[-2]= s3[-1]= s3[0]=ist s4[-2]= s4[-1]= s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=in|my w[-1]|w[0]=my|playlist pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=this w[-4..-1]=track w[-4..-1]=in w[-4..-1]=my __EOS__ + +O w[0]=put w[1]=it w[2]=into wl[0]=put wl[1]=it wl[2]=into pos[0]=VB pos[1]=PRP pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=i p1[2]=i p2[0]=pu p2[1]=it p2[2]=in p3[0]=put p3[1]= p3[2]=int p4[0]= p4[1]= p4[2]=into s1[0]=t s1[1]=t s1[2]=o s2[0]=ut s2[1]=it s2[2]=to s3[0]=put s3[1]= s3[2]=nto s4[0]= s4[1]= s4[2]=into 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|it w[1]|w[2]=it|into pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=into w[1..4]=the w[1..4]=playlist __BOS__ +O w[-1]=put w[0]=it w[1]=into w[2]=the wl[-1]=put wl[0]=it wl[1]=into wl[2]=the pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=i p1[1]=i p1[2]=t p2[-1]=pu p2[0]=it p2[1]=in p2[2]=th p3[-1]=put p3[0]= p3[1]=int p3[2]=the p4[-1]= p4[0]= p4[1]=into p4[2]= s1[-1]=t s1[0]=t s1[1]=o s1[2]=e s2[-1]=ut s2[0]=it s2[1]=to s2[2]=he s3[-1]=put s3[0]= s3[1]=nto s3[2]=the s4[-1]= s4[0]= s4[1]=into s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|it w[0]|w[1]=it|into w[1]|w[2]=into|the pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=into w[1..4]=the w[1..4]=playlist w[1..4]=Running +O w[-2]=put w[-1]=it w[0]=into w[1]=the w[2]=playlist wl[-2]=put wl[-1]=it wl[0]=into wl[1]=the wl[2]=playlist pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LL shape[0]=LLLL shape[1]=LLL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=i p1[0]=i p1[1]=t p1[2]=p p2[-2]=pu p2[-1]=it p2[0]=in p2[1]=th p2[2]=pl p3[-2]=put p3[-1]= p3[0]=int p3[1]=the p3[2]=pla p4[-2]= p4[-1]= p4[0]=into p4[1]= p4[2]=play s1[-2]=t s1[-1]=t s1[0]=o s1[1]=e s1[2]=t s2[-2]=ut s2[-1]=it s2[0]=to s2[1]=he s2[2]=st s3[-2]=put s3[-1]= s3[0]=nto s3[1]=the s3[2]=ist s4[-2]= s4[-1]= s4[0]=into s4[1]= s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=put|it w[-1]|w[0]=it|into w[0]|w[1]=into|the w[1]|w[2]=the|playlist pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=it w[1..4]=the w[1..4]=playlist w[1..4]=Running +O w[-2]=it w[-1]=into w[0]=the w[1]=playlist w[2]=Running wl[-2]=it wl[-1]=into wl[0]=the wl[1]=playlist wl[2]=running pos[-2]=PRP pos[-1]=IN pos[0]=DT pos[1]=NN pos[2]=VBG chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLLLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=i p1[-1]=i p1[0]=t p1[1]=p p1[2]=R p2[-2]=it p2[-1]=in p2[0]=th p2[1]=pl p2[2]=Ru p3[-2]= p3[-1]=int p3[0]=the p3[1]=pla p3[2]=Run p4[-2]= p4[-1]=into p4[0]= p4[1]=play p4[2]=Runn s1[-2]=t s1[-1]=o s1[0]=e s1[1]=t s1[2]=g s2[-2]=it s2[-1]=to s2[0]=he s2[1]=st s2[2]=ng s3[-2]= s3[-1]=nto s3[0]=the s3[1]=ist s3[2]=ing s4[-2]= s4[-1]=into s4[0]= s4[1]=list s4[2]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=it|into w[-1]|w[0]=into|the w[0]|w[1]=the|playlist w[1]|w[2]=playlist|Running pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|VBG chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=put w[-4..-1]=it w[-4..-1]=into w[1..4]=playlist w[1..4]=Running +O w[-2]=into w[-1]=the w[0]=playlist w[1]=Running wl[-2]=into wl[-1]=the wl[0]=playlist wl[1]=running pos[-2]=IN pos[-1]=DT pos[0]=NN pos[1]=VBG chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLLLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=i p1[-1]=t p1[0]=p p1[1]=R p2[-2]=in p2[-1]=th p2[0]=pl p2[1]=Ru p3[-2]=int p3[-1]=the p3[0]=pla p3[1]=Run p4[-2]=into p4[-1]= p4[0]=play p4[1]=Runn s1[-2]=o s1[-1]=e s1[0]=t s1[1]=g s2[-2]=to s2[-1]=he s2[0]=st s2[1]=ng s3[-2]=nto s3[-1]=the s3[0]=ist s3[1]=ing s4[-2]=into s4[-1]= s4[0]=list s4[1]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=into|the w[-1]|w[0]=the|playlist w[0]|w[1]=playlist|Running pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|VBG chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=put w[-4..-1]=it w[-4..-1]=into w[-4..-1]=the w[1..4]=Running +playlist w[-2]=the w[-1]=playlist w[0]=Running wl[-2]=the wl[-1]=playlist wl[0]=running pos[-2]=DT pos[-1]=NN pos[0]=VBG chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL shape[-1]=LLLLLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=p p1[0]=R p2[-2]=th p2[-1]=pl p2[0]=Ru p3[-2]=the p3[-1]=pla p3[0]=Run p4[-2]= p4[-1]=play p4[0]=Runn s1[-2]=e s1[-1]=t s1[0]=g s2[-2]=he s2[-1]=st s2[0]=ng s3[-2]=the s3[-1]=ist s3[0]=ing s4[-2]= s4[-1]=list s4[0]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|playlist w[-1]|w[0]=playlist|Running pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|VBG chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=it w[-4..-1]=into w[-4..-1]=the w[-4..-1]=playlist __EOS__ + +O w[0]=now w[1]=play wl[0]=now wl[1]=play pos[0]=RB pos[1]=VBP chk[0]=O chk[1]=O shape[0]=LLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=n p1[1]=p p2[0]=no p2[1]=pl p3[0]=now p3[1]=pla p4[0]= p4[1]=play s1[0]=w s1[1]=y s2[0]=ow s2[1]=ay s3[0]=now s3[1]=lay s4[0]= s4[1]=play 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=now|play pos[0]|pos[1]=RB|VBP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=play __BOS__ +O w[-1]=now w[0]=play wl[-1]=now wl[0]=play pos[-1]=RB pos[0]=VBP chk[-1]=O chk[0]=O shape[-1]=LLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=n p1[0]=p p2[-1]=no p2[0]=pl p3[-1]=now p3[0]=pla p4[-1]= p4[0]=play s1[-1]=w s1[0]=y s2[-1]=ow s2[0]=ay s3[-1]=now s3[0]=lay s4[-1]= s4[0]=play 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=now|play pos[-1]|pos[0]=RB|VBP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=now __EOS__ + +O w[0]=play w[1]=this wl[0]=play wl[1]=this pos[0]=VB pos[1]=DT chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=t p2[0]=pl p2[1]=th p3[0]=pla p3[1]=thi p4[0]=play p4[1]=this s1[0]=y s1[1]=s s2[0]=ay s2[1]=is s3[0]=lay s3[1]=his s4[0]=play s4[1]=this 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|this pos[0]|pos[1]=VB|DT chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=this __BOS__ +O w[-1]=play w[0]=this wl[-1]=play wl[0]=this pos[-1]=VB pos[0]=DT chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=t p2[-1]=pl p2[0]=th p3[-1]=pla p3[0]=thi p4[-1]=play p4[0]=this s1[-1]=y s1[0]=s s2[-1]=ay s2[0]=is s3[-1]=lay s3[0]=his s4[-1]=play s4[0]=this 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|this pos[-1]|pos[0]=VB|DT chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play __EOS__ + +O w[0]=play wl[0]=play pos[0]=VB chk[0]=O shape[0]=LLLL shaped[0]=L type[0]=AllLetter p1[0]=p p2[0]=pl p3[0]=pla p4[0]=play s1[0]=y s2[0]=ay s3[0]=lay s4[0]=play 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=could w[1]=you w[2]=play wl[0]=could wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=co p2[1]=yo p2[2]=pl p3[0]=cou p3[1]=you p3[2]=pla p4[0]=coul p4[1]= p4[2]=play s1[0]=d s1[1]=u s1[2]=y s2[0]=ld s2[1]=ou s2[2]=ay s3[0]=uld s3[1]=you s3[2]=lay s4[0]=ould s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=could|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=this w[1..4]=one __BOS__ +O w[-1]=could w[0]=you w[1]=play w[2]=this wl[-1]=could wl[0]=you wl[1]=play wl[2]=this pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=t p2[-1]=co p2[0]=yo p2[1]=pl p2[2]=th p3[-1]=cou p3[0]=you p3[1]=pla p3[2]=thi p4[-1]=coul p4[0]= p4[1]=play p4[2]=this s1[-1]=d s1[0]=u s1[1]=y s1[2]=s s2[-1]=ld s2[0]=ou s2[1]=ay s2[2]=is s3[-1]=uld s3[0]=you s3[1]=lay s3[2]=his s4[-1]=ould s4[0]= s4[1]=play s4[2]=this 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=could|you w[0]|w[1]=you|play w[1]|w[2]=play|this pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[1..4]=play w[1..4]=this w[1..4]=one +O w[-2]=could w[-1]=you w[0]=play w[1]=this w[2]=one wl[-2]=could wl[-1]=you wl[0]=play wl[1]=this wl[2]=one pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=t p1[2]=o p2[-2]=co p2[-1]=yo p2[0]=pl p2[1]=th p2[2]=on p3[-2]=cou p3[-1]=you p3[0]=pla p3[1]=thi p3[2]=one p4[-2]=coul p4[-1]= p4[0]=play p4[1]=this p4[2]= s1[-2]=d s1[-1]=u s1[0]=y s1[1]=s s1[2]=e s2[-2]=ld s2[-1]=ou s2[0]=ay s2[1]=is s2[2]=ne s3[-2]=uld s3[-1]=you s3[0]=lay s3[1]=his s3[2]=one s4[-2]=ould s4[-1]= s4[0]=play s4[1]=this s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=could|you w[-1]|w[0]=you|play w[0]|w[1]=play|this w[1]|w[2]=this|one pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[1..4]=this w[1..4]=one +O w[-2]=you w[-1]=play w[0]=this w[1]=one wl[-2]=you wl[-1]=play wl[0]=this wl[1]=one pos[-2]=PRP pos[-1]=VB pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=y p1[-1]=p p1[0]=t p1[1]=o p2[-2]=yo p2[-1]=pl p2[0]=th p2[1]=on p3[-2]=you p3[-1]=pla p3[0]=thi p3[1]=one p4[-2]= p4[-1]=play p4[0]=this p4[1]= s1[-2]=u s1[-1]=y s1[0]=s s1[1]=e s2[-2]=ou s2[-1]=ay s2[0]=is s2[1]=ne s3[-2]=you s3[-1]=lay s3[0]=his s3[1]=one s4[-2]= s4[-1]=play s4[0]=this s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|this w[0]|w[1]=this|one pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[-4..-1]=play w[1..4]=one +O w[-2]=play w[-1]=this w[0]=one wl[-2]=play wl[-1]=this wl[0]=one pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=t p1[0]=o p2[-2]=pl p2[-1]=th p2[0]=on p3[-2]=pla p3[-1]=thi p3[0]=one p4[-2]=play p4[-1]=this p4[0]= s1[-2]=y s1[-1]=s s1[0]=e s2[-2]=ay s2[-1]=is s2[0]=ne s3[-2]=lay s3[-1]=his s3[0]=one s4[-2]=play s4[-1]=this s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|this w[-1]|w[0]=this|one pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[-4..-1]=play w[-4..-1]=this __EOS__ + +O w[0]=I w[1]=want w[2]=you wl[0]=i wl[1]=want wl[2]=you pos[0]=PRP pos[1]=VBP pos[2]=PRP chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LLL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=y p2[0]= p2[1]=wa p2[2]=yo p3[0]= p3[1]=wan p3[2]=you p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=u s2[0]= s2[1]=nt s2[2]=ou s3[0]= s3[1]=ant s3[2]=you s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|you pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|PRP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=you w[1..4]=to w[1..4]=play __BOS__ +O w[-1]=I w[0]=want w[1]=you w[2]=to wl[-1]=i wl[0]=want wl[1]=you wl[2]=to pos[-1]=PRP pos[0]=VBP pos[1]=PRP pos[2]=TO chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LLL shape[2]=LL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=y p1[2]=t p2[-1]= p2[0]=wa p2[1]=yo p2[2]=to p3[-1]= p3[0]=wan p3[1]=you p3[2]= p4[-1]= p4[0]=want p4[1]= p4[2]= s1[-1]=I s1[0]=t s1[1]=u s1[2]=o s2[-1]= s2[0]=nt s2[1]=ou s2[2]=to s3[-1]= s3[0]=ant s3[1]=you s3[2]= s4[-1]= s4[0]=want s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|you w[1]|w[2]=you|to pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|PRP pos[1]|pos[2]=PRP|TO chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=you w[1..4]=to w[1..4]=play w[1..4]=it +O w[-2]=I w[-1]=want w[0]=you w[1]=to w[2]=play wl[-2]=i wl[-1]=want wl[0]=you wl[1]=to wl[2]=play pos[-2]=PRP pos[-1]=VBP pos[0]=PRP pos[1]=TO pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LLL shape[1]=LL shape[2]=LLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=y p1[1]=t p1[2]=p p2[-2]= p2[-1]=wa p2[0]=yo p2[1]=to p2[2]=pl p3[-2]= p3[-1]=wan p3[0]=you p3[1]= p3[2]=pla p4[-2]= p4[-1]=want p4[0]= p4[1]= p4[2]=play s1[-2]=I s1[-1]=t s1[0]=u s1[1]=o s1[2]=y s2[-2]= s2[-1]=nt s2[0]=ou s2[1]=to s2[2]=ay s3[-2]= s3[-1]=ant s3[0]=you s3[1]= s3[2]=lay s4[-2]= s4[-1]=want s4[0]= s4[1]= s4[2]=play 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|you w[0]|w[1]=you|to w[1]|w[2]=to|play pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|PRP pos[0]|pos[1]=PRP|TO pos[1]|pos[2]=TO|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=to w[1..4]=play w[1..4]=it +O w[-2]=want w[-1]=you w[0]=to w[1]=play w[2]=it wl[-2]=want wl[-1]=you wl[0]=to wl[1]=play wl[2]=it pos[-2]=VBP pos[-1]=PRP pos[0]=TO pos[1]=VB pos[2]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=y p1[0]=t p1[1]=p p1[2]=i p2[-2]=wa p2[-1]=yo p2[0]=to p2[1]=pl p2[2]=it p3[-2]=wan p3[-1]=you p3[0]= p3[1]=pla p3[2]= p4[-2]=want p4[-1]= p4[0]= p4[1]=play p4[2]= s1[-2]=t s1[-1]=u s1[0]=o s1[1]=y s1[2]=t s2[-2]=nt s2[-1]=ou s2[0]=to s2[1]=ay s2[2]=it s3[-2]=ant s3[-1]=you s3[0]= s3[1]=lay s3[2]= s4[-2]=want s4[-1]= s4[0]= s4[1]=play s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|you w[-1]|w[0]=you|to w[0]|w[1]=to|play w[1]|w[2]=play|it pos[-2]|pos[-1]=VBP|PRP pos[-1]|pos[0]=PRP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=you w[1..4]=play w[1..4]=it +O w[-2]=you w[-1]=to w[0]=play w[1]=it wl[-2]=you wl[-1]=to wl[0]=play wl[1]=it pos[-2]=PRP pos[-1]=TO pos[0]=VB pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LL shape[0]=LLLL shape[1]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=y p1[-1]=t p1[0]=p p1[1]=i p2[-2]=yo p2[-1]=to p2[0]=pl p2[1]=it p3[-2]=you p3[-1]= p3[0]=pla p3[1]= p4[-2]= p4[-1]= p4[0]=play p4[1]= s1[-2]=u s1[-1]=o s1[0]=y s1[1]=t s2[-2]=ou s2[-1]=to s2[0]=ay s2[1]=it s3[-2]=you s3[-1]= s3[0]=lay s3[1]= s4[-2]= s4[-1]= s4[0]=play s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=you|to w[-1]|w[0]=to|play w[0]|w[1]=play|it pos[-2]|pos[-1]=PRP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=you w[-4..-1]=to w[1..4]=it +O w[-2]=to w[-1]=play w[0]=it wl[-2]=to wl[-1]=play wl[0]=it pos[-2]=TO pos[-1]=VB pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=p p1[0]=i p2[-2]=to p2[-1]=pl p2[0]=it p3[-2]= p3[-1]=pla p3[0]= p4[-2]= p4[-1]=play p4[0]= s1[-2]=o s1[-1]=y s1[0]=t s2[-2]=to s2[-1]=ay s2[0]=it s3[-2]= s3[-1]=lay s3[0]= s4[-2]= s4[-1]=play s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|play w[-1]|w[0]=play|it pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=want w[-4..-1]=you w[-4..-1]=to w[-4..-1]=play __EOS__ + +O w[0]=start w[1]=playing w[2]=it wl[0]=start wl[1]=playing wl[2]=it pos[0]=VB pos[1]=VBG pos[2]=PRP chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LLLLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=p p1[2]=i p2[0]=st p2[1]=pl p2[2]=it p3[0]=sta p3[1]=pla p3[2]= p4[0]=star p4[1]=play p4[2]= s1[0]=t s1[1]=g s1[2]=t s2[0]=rt s2[1]=ng s2[2]=it s3[0]=art s3[1]=ing s3[2]= s4[0]=tart s4[1]=ying s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=start|playing w[1]|w[2]=playing|it pos[0]|pos[1]=VB|VBG pos[1]|pos[2]=VBG|PRP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=playing w[1..4]=it __BOS__ +O w[-1]=start w[0]=playing w[1]=it wl[-1]=start wl[0]=playing wl[1]=it pos[-1]=VB pos[0]=VBG pos[1]=PRP chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLL shape[0]=LLLLLLL shape[1]=LL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=s p1[0]=p p1[1]=i p2[-1]=st p2[0]=pl p2[1]=it p3[-1]=sta p3[0]=pla p3[1]= p4[-1]=star p4[0]=play p4[1]= s1[-1]=t s1[0]=g s1[1]=t s2[-1]=rt s2[0]=ng s2[1]=it s3[-1]=art s3[0]=ing s3[1]= s4[-1]=tart s4[0]=ying s4[1]= 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=start|playing w[0]|w[1]=playing|it pos[-1]|pos[0]=VB|VBG pos[0]|pos[1]=VBG|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=start w[1..4]=it +O w[-2]=start w[-1]=playing w[0]=it wl[-2]=start wl[-1]=playing wl[0]=it pos[-2]=VB pos[-1]=VBG pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LLLLLLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=p p1[0]=i p2[-2]=st p2[-1]=pl p2[0]=it p3[-2]=sta p3[-1]=pla p3[0]= p4[-2]=star p4[-1]=play p4[0]= s1[-2]=t s1[-1]=g s1[0]=t s2[-2]=rt s2[-1]=ng s2[0]=it s3[-2]=art s3[-1]=ing s3[0]= s4[-2]=tart s4[-1]=ying s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=start|playing w[-1]|w[0]=playing|it pos[-2]|pos[-1]=VB|VBG pos[-1]|pos[0]=VBG|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=start w[-4..-1]=playing __EOS__ + +O w[0]=play w[1]=it wl[0]=play wl[1]=it pos[0]=VB pos[1]=PRP chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=i p2[0]=pl p2[1]=it p3[0]=pla p3[1]= p4[0]=play p4[1]= s1[0]=y s1[1]=t s2[0]=ay s2[1]=it s3[0]=lay s3[1]= s4[0]=play s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|it pos[0]|pos[1]=VB|PRP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=it __BOS__ +O w[-1]=play w[0]=it wl[-1]=play wl[0]=it pos[-1]=VB pos[0]=PRP chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=i p2[-1]=pl p2[0]=it p3[-1]=pla p3[0]= p4[-1]=play p4[0]= s1[-1]=y s1[0]=t s2[-1]=ay s2[0]=it s3[-1]=lay s3[0]= s4[-1]=play s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|it pos[-1]|pos[0]=VB|PRP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play __EOS__ + +O w[0]=could w[1]=you w[2]=play wl[0]=could wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=co p2[1]=yo p2[2]=pl p3[0]=cou p3[1]=you p3[2]=pla p4[0]=coul p4[1]= p4[2]=play s1[0]=d s1[1]=u s1[2]=y s2[0]=ld s2[1]=ou s2[2]=ay s3[0]=uld s3[1]=you s3[2]=lay s4[0]=ould s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=could|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=it w[1..4]=for __BOS__ +O w[-1]=could w[0]=you w[1]=play w[2]=it wl[-1]=could wl[0]=you wl[1]=play wl[2]=it pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLL shape[0]=LLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=i p2[-1]=co p2[0]=yo p2[1]=pl p2[2]=it p3[-1]=cou p3[0]=you p3[1]=pla p3[2]= p4[-1]=coul p4[0]= p4[1]=play p4[2]= s1[-1]=d s1[0]=u s1[1]=y s1[2]=t s2[-1]=ld s2[0]=ou s2[1]=ay s2[2]=it s3[-1]=uld s3[0]=you s3[1]=lay s3[2]= s4[-1]=ould s4[0]= s4[1]=play s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=could|you w[0]|w[1]=you|play w[1]|w[2]=play|it pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[1..4]=play w[1..4]=it w[1..4]=for w[1..4]=me +O w[-2]=could w[-1]=you w[0]=play w[1]=it w[2]=for wl[-2]=could wl[-1]=you wl[0]=play wl[1]=it wl[2]=for pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=PRP pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=i p1[2]=f p2[-2]=co p2[-1]=yo p2[0]=pl p2[1]=it p2[2]=fo p3[-2]=cou p3[-1]=you p3[0]=pla p3[1]= p3[2]=for p4[-2]=coul p4[-1]= p4[0]=play p4[1]= p4[2]= s1[-2]=d s1[-1]=u s1[0]=y s1[1]=t s1[2]=r s2[-2]=ld s2[-1]=ou s2[0]=ay s2[1]=it s2[2]=or s3[-2]=uld s3[-1]=you s3[0]=lay s3[1]= s3[2]=for s4[-2]=ould s4[-1]= s4[0]=play s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=could|you w[-1]|w[0]=you|play w[0]|w[1]=play|it w[1]|w[2]=it|for pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[1..4]=it w[1..4]=for w[1..4]=me +O w[-2]=you w[-1]=play w[0]=it w[1]=for w[2]=me wl[-2]=you wl[-1]=play wl[0]=it wl[1]=for wl[2]=me pos[-2]=PRP pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LL shape[1]=LLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=y p1[-1]=p p1[0]=i p1[1]=f p1[2]=m p2[-2]=yo p2[-1]=pl p2[0]=it p2[1]=fo p2[2]=me p3[-2]=you p3[-1]=pla p3[0]= p3[1]=for p3[2]= p4[-2]= p4[-1]=play p4[0]= p4[1]= p4[2]= s1[-2]=u s1[-1]=y s1[0]=t s1[1]=r s1[2]=e s2[-2]=ou s2[-1]=ay s2[0]=it s2[1]=or s2[2]=me s3[-2]=you s3[-1]=lay s3[0]= s3[1]=for s3[2]= s4[-2]= s4[-1]=play s4[0]= s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|it w[0]|w[1]=it|for w[1]|w[2]=for|me pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[-4..-1]=play w[1..4]=for w[1..4]=me +O w[-2]=play w[-1]=it w[0]=for w[1]=me wl[-2]=play wl[-1]=it wl[0]=for wl[1]=me pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLL shape[1]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=i p1[0]=f p1[1]=m p2[-2]=pl p2[-1]=it p2[0]=fo p2[1]=me p3[-2]=pla p3[-1]= p3[0]=for p3[1]= p4[-2]=play p4[-1]= p4[0]= p4[1]= s1[-2]=y s1[-1]=t s1[0]=r s1[1]=e s2[-2]=ay s2[-1]=it s2[0]=or s2[1]=me s3[-2]=lay s3[-1]= s3[0]=for s3[1]= s4[-2]=play s4[-1]= s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|it w[-1]|w[0]=it|for w[0]|w[1]=for|me pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[-4..-1]=play w[-4..-1]=it w[1..4]=me +O w[-2]=it w[-1]=for w[0]=me wl[-2]=it wl[-1]=for wl[0]=me pos[-2]=PRP pos[-1]=IN pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=i p1[-1]=f p1[0]=m p2[-2]=it p2[-1]=fo p2[0]=me p3[-2]= p3[-1]=for p3[0]= p4[-2]= p4[-1]= p4[0]= s1[-2]=t s1[-1]=r s1[0]=e s2[-2]=it s2[-1]=or s2[0]=me s3[-2]= s3[-1]=for s3[0]= s4[-2]= s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=it|for w[-1]|w[0]=for|me pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=you w[-4..-1]=play w[-4..-1]=it w[-4..-1]=for __EOS__ + +O w[0]=now w[1]=start w[2]=playing wl[0]=now wl[1]=start wl[2]=playing pos[0]=RB pos[1]=VBP pos[2]=VBG chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLLL shape[2]=LLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=n p1[1]=s p1[2]=p p2[0]=no p2[1]=st p2[2]=pl p3[0]=now p3[1]=sta p3[2]=pla p4[0]= p4[1]=star p4[2]=play s1[0]=w s1[1]=t s1[2]=g s2[0]=ow s2[1]=rt s2[2]=ng s3[0]=now s3[1]=art s3[2]=ing s4[0]= s4[1]=tart s4[2]=ying 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=now|start w[1]|w[2]=start|playing pos[0]|pos[1]=RB|VBP pos[1]|pos[2]=VBP|VBG chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=start w[1..4]=playing __BOS__ +O w[-1]=now w[0]=start w[1]=playing wl[-1]=now wl[0]=start wl[1]=playing pos[-1]=RB pos[0]=VBP pos[1]=VBG chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLL shape[0]=LLLLL shape[1]=LLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=n p1[0]=s p1[1]=p p2[-1]=no p2[0]=st p2[1]=pl p3[-1]=now p3[0]=sta p3[1]=pla p4[-1]= p4[0]=star p4[1]=play s1[-1]=w s1[0]=t s1[1]=g s2[-1]=ow s2[0]=rt s2[1]=ng s3[-1]=now s3[0]=art s3[1]=ing s4[-1]= s4[0]=tart s4[1]=ying 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=now|start w[0]|w[1]=start|playing pos[-1]|pos[0]=RB|VBP pos[0]|pos[1]=VBP|VBG chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=now w[1..4]=playing +O w[-2]=now w[-1]=start w[0]=playing wl[-2]=now wl[-1]=start wl[0]=playing pos[-2]=RB pos[-1]=VBP pos[0]=VBG chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLLL shape[0]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=n p1[-1]=s p1[0]=p p2[-2]=no p2[-1]=st p2[0]=pl p3[-2]=now p3[-1]=sta p3[0]=pla p4[-2]= p4[-1]=star p4[0]=play s1[-2]=w s1[-1]=t s1[0]=g s2[-2]=ow s2[-1]=rt s2[0]=ng s3[-2]=now s3[-1]=art s3[0]=ing s4[-2]= s4[-1]=tart s4[0]=ying 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=now|start w[-1]|w[0]=start|playing pos[-2]|pos[-1]=RB|VBP pos[-1]|pos[0]=VBP|VBG chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=now w[-4..-1]=start __EOS__ + +O w[0]=play w[1]=it wl[0]=play wl[1]=it pos[0]=VB pos[1]=PRP chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=i p2[0]=pl p2[1]=it p3[0]=pla p3[1]= p4[0]=play p4[1]= s1[0]=y s1[1]=t s2[0]=ay s2[1]=it s3[0]=lay s3[1]= s4[0]=play s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|it pos[0]|pos[1]=VB|PRP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=it __BOS__ +O w[-1]=play w[0]=it wl[-1]=play wl[0]=it pos[-1]=VB pos[0]=PRP chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=i p2[-1]=pl p2[0]=it p3[-1]=pla p3[0]= p4[-1]=play p4[0]= s1[-1]=y s1[0]=t s2[-1]=ay s2[0]=it s3[-1]=lay s3[0]= s4[-1]=play s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|it pos[-1]|pos[0]=VB|PRP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=it __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=it wl[-1]=can wl[0]=you wl[1]=play wl[2]=it pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=i p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=it p3[-1]=can p3[0]=you p3[1]=pla p3[2]= p4[-1]= p4[0]= p4[1]=play p4[2]= s1[-1]=n s1[0]=u s1[1]=y s1[2]=t s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=it s3[-1]=can s3[0]=you s3[1]=lay s3[2]= s4[-1]= s4[0]= s4[1]=play s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|it pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=play w[1..4]=it +O w[-2]=can w[-1]=you w[0]=play w[1]=it wl[-2]=can wl[-1]=you wl[0]=play wl[1]=it pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=i p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=it p3[-2]=can p3[-1]=you p3[0]=pla p3[1]= p4[-2]= p4[-1]= p4[0]=play p4[1]= s1[-2]=n s1[-1]=u s1[0]=y s1[1]=t s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=it s3[-2]=can s3[-1]=you s3[0]=lay s3[1]= s4[-2]= s4[-1]= s4[0]=play s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|it pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=it +O w[-2]=you w[-1]=play w[0]=it wl[-2]=you wl[-1]=play wl[0]=it pos[-2]=PRP pos[-1]=VB pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=y p1[-1]=p p1[0]=i p2[-2]=yo p2[-1]=pl p2[0]=it p3[-2]=you p3[-1]=pla p3[0]= p4[-2]= p4[-1]=play p4[0]= s1[-2]=u s1[-1]=y s1[0]=t s2[-2]=ou s2[-1]=ay s2[0]=it s3[-2]=you s3[-1]=lay s3[0]= s4[-2]= s4[-1]=play s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|it pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play __EOS__ + +O w[0]=and w[1]=play w[2]=it wl[0]=and wl[1]=play wl[2]=it pos[0]=CC pos[1]=VB pos[2]=PRP chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=a p1[1]=p p1[2]=i p2[0]=an p2[1]=pl p2[2]=it p3[0]=and p3[1]=pla p3[2]= p4[0]= p4[1]=play p4[2]= s1[0]=d s1[1]=y s1[2]=t s2[0]=nd s2[1]=ay s2[2]=it s3[0]=and s3[1]=lay s3[2]= s4[0]= s4[1]=play s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=and|play w[1]|w[2]=play|it pos[0]|pos[1]=CC|VB pos[1]|pos[2]=VB|PRP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=play w[1..4]=it __BOS__ +O w[-1]=and w[0]=play w[1]=it wl[-1]=and wl[0]=play wl[1]=it pos[-1]=CC pos[0]=VB pos[1]=PRP chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=a p1[0]=p p1[1]=i p2[-1]=an p2[0]=pl p2[1]=it p3[-1]=and p3[0]=pla p3[1]= p4[-1]= p4[0]=play p4[1]= s1[-1]=d s1[0]=y s1[1]=t s2[-1]=nd s2[0]=ay s2[1]=it s3[-1]=and s3[0]=lay s3[1]= s4[-1]= s4[0]=play s4[1]= 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=and|play w[0]|w[1]=play|it pos[-1]|pos[0]=CC|VB pos[0]|pos[1]=VB|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=and w[1..4]=it +O w[-2]=and w[-1]=play w[0]=it wl[-2]=and wl[-1]=play wl[0]=it pos[-2]=CC pos[-1]=VB pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=a p1[-1]=p p1[0]=i p2[-2]=an p2[-1]=pl p2[0]=it p3[-2]=and p3[-1]=pla p3[0]= p4[-2]= p4[-1]=play p4[0]= s1[-2]=d s1[-1]=y s1[0]=t s2[-2]=nd s2[-1]=ay s2[0]=it s3[-2]=and s3[-1]=lay s3[0]= s4[-2]= s4[-1]=play s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=and|play w[-1]|w[0]=play|it pos[-2]|pos[-1]=CC|VB pos[-1]|pos[0]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=and w[-4..-1]=play __EOS__ + +O w[0]=shuffle w[1]=them wl[0]=shuffle wl[1]=them pos[0]=VB pos[1]=PRP chk[0]=O chk[1]=O shape[0]=LLLLLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=s p1[1]=t p2[0]=sh p2[1]=th p3[0]=shu p3[1]=the p4[0]=shuf p4[1]=them s1[0]=e s1[1]=m s2[0]=le s2[1]=em s3[0]=fle s3[1]=hem s4[0]=ffle s4[1]=them 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=shuffle|them pos[0]|pos[1]=VB|PRP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=them __BOS__ +O w[-1]=shuffle w[0]=them wl[-1]=shuffle wl[0]=them pos[-1]=VB pos[0]=PRP chk[-1]=O chk[0]=O shape[-1]=LLLLLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=s p1[0]=t p2[-1]=sh p2[0]=th p3[-1]=shu p3[0]=the p4[-1]=shuf p4[0]=them s1[-1]=e s1[0]=m s2[-1]=le s2[0]=em s3[-1]=fle s3[0]=hem s4[-1]=ffle s4[0]=them 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=shuffle|them pos[-1]|pos[0]=VB|PRP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=shuffle __EOS__ + +O w[0]=shuffle w[1]=this w[2]=playlist wl[0]=shuffle wl[1]=this wl[2]=playlist pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLLL shape[1]=LLLL shape[2]=LLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=p p2[0]=sh p2[1]=th p2[2]=pl p3[0]=shu p3[1]=thi p3[2]=pla p4[0]=shuf p4[1]=this p4[2]=play s1[0]=e s1[1]=s s1[2]=t s2[0]=le s2[1]=is s2[2]=st s3[0]=fle s3[1]=his s3[2]=ist s4[0]=ffle s4[1]=this s4[2]=list 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=shuffle|this w[1]|w[2]=this|playlist pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=playlist __BOS__ +O w[-1]=shuffle w[0]=this w[1]=playlist wl[-1]=shuffle wl[0]=this wl[1]=playlist pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLLL shape[0]=LLLL shape[1]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=s p1[0]=t p1[1]=p p2[-1]=sh p2[0]=th p2[1]=pl p3[-1]=shu p3[0]=thi p3[1]=pla p4[-1]=shuf p4[0]=this p4[1]=play s1[-1]=e s1[0]=s s1[1]=t s2[-1]=le s2[0]=is s2[1]=st s3[-1]=fle s3[0]=his s3[1]=ist s4[-1]=ffle s4[0]=this s4[1]=list 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=shuffle|this w[0]|w[1]=this|playlist pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=shuffle w[1..4]=playlist +O w[-2]=shuffle w[-1]=this w[0]=playlist wl[-2]=shuffle wl[-1]=this wl[0]=playlist pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLLL shape[-1]=LLLL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=t p1[0]=p p2[-2]=sh p2[-1]=th p2[0]=pl p3[-2]=shu p3[-1]=thi p3[0]=pla p4[-2]=shuf p4[-1]=this p4[0]=play s1[-2]=e s1[-1]=s s1[0]=t s2[-2]=le s2[-1]=is s2[0]=st s3[-2]=fle s3[-1]=his s3[0]=ist s4[-2]=ffle s4[-1]=this s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=shuffle|this w[-1]|w[0]=this|playlist pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=shuffle w[-4..-1]=this __EOS__ + +O w[0]=shuffle w[1]=mode w[2]=on wl[0]=shuffle wl[1]=mode wl[2]=on pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=m p1[2]=o p2[0]=sh p2[1]=mo p2[2]=on p3[0]=shu p3[1]=mod p3[2]= p4[0]=shuf p4[1]=mode p4[2]= s1[0]=e s1[1]=e s1[2]=n s2[0]=le s2[1]=de s2[2]=on s3[0]=fle s3[1]=ode s3[2]= s4[0]=ffle s4[1]=mode s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=shuffle|mode w[1]|w[2]=mode|on pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=mode w[1..4]=on __BOS__ +O w[-1]=shuffle w[0]=mode w[1]=on wl[-1]=shuffle wl[0]=mode wl[1]=on pos[-1]=VB pos[0]=NN pos[1]=IN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLLL shape[0]=LLLL shape[1]=LL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=s p1[0]=m p1[1]=o p2[-1]=sh p2[0]=mo p2[1]=on p3[-1]=shu p3[0]=mod p3[1]= p4[-1]=shuf p4[0]=mode p4[1]= s1[-1]=e s1[0]=e s1[1]=n s2[-1]=le s2[0]=de s2[1]=on s3[-1]=fle s3[0]=ode s3[1]= s4[-1]=ffle s4[0]=mode s4[1]= 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=shuffle|mode w[0]|w[1]=mode|on pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=shuffle w[1..4]=on +O w[-2]=shuffle w[-1]=mode w[0]=on wl[-2]=shuffle wl[-1]=mode wl[0]=on pos[-2]=VB pos[-1]=NN pos[0]=IN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLLL shape[-1]=LLLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=m p1[0]=o p2[-2]=sh p2[-1]=mo p2[0]=on p3[-2]=shu p3[-1]=mod p3[0]= p4[-2]=shuf p4[-1]=mode p4[0]= s1[-2]=e s1[-1]=e s1[0]=n s2[-2]=le s2[-1]=de s2[0]=on s3[-2]=fle s3[-1]=ode s3[0]= s4[-2]=ffle s4[-1]=mode s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=shuffle|mode w[-1]|w[0]=mode|on pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=shuffle w[-4..-1]=mode __EOS__ + +O w[0]=turn w[1]=on w[2]=shuffle wl[0]=turn wl[1]=on wl[2]=shuffle pos[0]=VB pos[1]=RP pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=o p1[2]=s p2[0]=tu p2[1]=on p2[2]=sh p3[0]=tur p3[1]= p3[2]=shu p4[0]=turn p4[1]= p4[2]=shuf s1[0]=n s1[1]=n s1[2]=e s2[0]=rn s2[1]=on s2[2]=le s3[0]=urn s3[1]= s3[2]=fle s4[0]=turn s4[1]= s4[2]=ffle 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=turn|on w[1]|w[2]=on|shuffle pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=shuffle w[1..4]=mode __BOS__ +O w[-1]=turn w[0]=on w[1]=shuffle w[2]=mode wl[-1]=turn wl[0]=on wl[1]=shuffle wl[2]=mode pos[-1]=VB pos[0]=RP pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=t p1[0]=o p1[1]=s p1[2]=m p2[-1]=tu p2[0]=on p2[1]=sh p2[2]=mo p3[-1]=tur p3[0]= p3[1]=shu p3[2]=mod p4[-1]=turn p4[0]= p4[1]=shuf p4[2]=mode s1[-1]=n s1[0]=n s1[1]=e s1[2]=e s2[-1]=rn s2[0]=on s2[1]=le s2[2]=de s3[-1]=urn s3[0]= s3[1]=fle s3[2]=ode s4[-1]=turn s4[0]= s4[1]=ffle s4[2]=mode 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=turn|on w[0]|w[1]=on|shuffle w[1]|w[2]=shuffle|mode pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[1..4]=shuffle w[1..4]=mode +O w[-2]=turn w[-1]=on w[0]=shuffle w[1]=mode wl[-2]=turn wl[-1]=on wl[0]=shuffle wl[1]=mode pos[-2]=VB pos[-1]=RP pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=o p1[0]=s p1[1]=m p2[-2]=tu p2[-1]=on p2[0]=sh p2[1]=mo p3[-2]=tur p3[-1]= p3[0]=shu p3[1]=mod p4[-2]=turn p4[-1]= p4[0]=shuf p4[1]=mode s1[-2]=n s1[-1]=n s1[0]=e s1[1]=e s2[-2]=rn s2[-1]=on s2[0]=le s2[1]=de s3[-2]=urn s3[-1]= s3[0]=fle s3[1]=ode s4[-2]=turn s4[-1]= s4[0]=ffle s4[1]=mode 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=turn|on w[-1]|w[0]=on|shuffle w[0]|w[1]=shuffle|mode pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[1..4]=mode +O w[-2]=on w[-1]=shuffle w[0]=mode wl[-2]=on wl[-1]=shuffle wl[0]=mode pos[-2]=RP pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=s p1[0]=m p2[-2]=on p2[-1]=sh p2[0]=mo p3[-2]= p3[-1]=shu p3[0]=mod p4[-2]= p4[-1]=shuf p4[0]=mode s1[-2]=n s1[-1]=e s1[0]=e s2[-2]=on s2[-1]=le s2[0]=de s3[-2]= s3[-1]=fle s3[0]=ode s4[-2]= s4[-1]=ffle s4[0]=mode 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=on|shuffle w[-1]|w[0]=shuffle|mode pos[-2]|pos[-1]=RP|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=shuffle __EOS__ + +O w[0]=shuffle wl[0]=shuffle pos[0]=VB chk[0]=O shape[0]=LLLLLLL shaped[0]=L type[0]=AllLetter p1[0]=s p2[0]=sh p3[0]=shu p4[0]=shuf s1[0]=e s2[0]=le s3[0]=fle s4[0]=ffle 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=play w[1]=some w[2]=rock wl[0]=play wl[1]=some wl[2]=rock pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=r p2[0]=pl p2[1]=so p2[2]=ro p3[0]=pla p3[1]=som p3[2]=roc p4[0]=play p4[1]=some p4[2]=rock s1[0]=y s1[1]=e s1[2]=k s2[0]=ay s2[1]=me s2[2]=ck s3[0]=lay s3[1]=ome s3[2]=ock s4[0]=play s4[1]=some s4[2]=rock 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|some w[1]|w[2]=some|rock pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=some w[1..4]=rock w[1..4]=music __BOS__ +O w[-1]=play w[0]=some w[1]=rock w[2]=music wl[-1]=play wl[0]=some wl[1]=rock wl[2]=music pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=r p1[2]=m p2[-1]=pl p2[0]=so p2[1]=ro p2[2]=mu p3[-1]=pla p3[0]=som p3[1]=roc p3[2]=mus p4[-1]=play p4[0]=some p4[1]=rock p4[2]=musi s1[-1]=y s1[0]=e s1[1]=k s1[2]=c s2[-1]=ay s2[0]=me s2[1]=ck s2[2]=ic s3[-1]=lay s3[0]=ome s3[1]=ock s3[2]=sic s4[-1]=play s4[0]=some s4[1]=rock s4[2]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|some w[0]|w[1]=some|rock w[1]|w[2]=rock|music pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=rock w[1..4]=music +genre w[-2]=play w[-1]=some w[0]=rock w[1]=music wl[-2]=play wl[-1]=some wl[0]=rock wl[1]=music pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=s p1[0]=r p1[1]=m p2[-2]=pl p2[-1]=so p2[0]=ro p2[1]=mu p3[-2]=pla p3[-1]=som p3[0]=roc p3[1]=mus p4[-2]=play p4[-1]=some p4[0]=rock p4[1]=musi s1[-2]=y s1[-1]=e s1[0]=k s1[1]=c s2[-2]=ay s2[-1]=me s2[0]=ck s2[1]=ic s3[-2]=lay s3[-1]=ome s3[0]=ock s3[1]=sic s4[-2]=play s4[-1]=some s4[0]=rock s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|some w[-1]|w[0]=some|rock w[0]|w[1]=rock|music pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[1..4]=music +O w[-2]=some w[-1]=rock w[0]=music wl[-2]=some wl[-1]=rock wl[0]=music pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=r p1[0]=m p2[-2]=so p2[-1]=ro p2[0]=mu p3[-2]=som p3[-1]=roc p3[0]=mus p4[-2]=some p4[-1]=rock p4[0]=musi s1[-2]=e s1[-1]=k s1[0]=c s2[-2]=me s2[-1]=ck s2[0]=ic s3[-2]=ome s3[-1]=ock s3[0]=sic s4[-2]=some s4[-1]=rock s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|rock w[-1]|w[0]=rock|music pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=rock __EOS__ + +O w[0]=just w[1]=play w[2]=music wl[0]=just wl[1]=play wl[2]=music pos[0]=RB pos[1]=VBP pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=j p1[1]=p p1[2]=m p2[0]=ju p2[1]=pl p2[2]=mu p3[0]=jus p3[1]=pla p3[2]=mus p4[0]=just p4[1]=play p4[2]=musi s1[0]=t s1[1]=y s1[2]=c s2[0]=st s2[1]=ay s2[2]=ic s3[0]=ust s3[1]=lay s3[2]=sic s4[0]=just s4[1]=play s4[2]=usic 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=just|play w[1]|w[2]=play|music pos[0]|pos[1]=RB|VBP pos[1]|pos[2]=VBP|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=play w[1..4]=music w[1..4]=for w[1..4]=me __BOS__ +O w[-1]=just w[0]=play w[1]=music w[2]=for wl[-1]=just wl[0]=play wl[1]=music wl[2]=for pos[-1]=RB pos[0]=VBP pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=j p1[0]=p p1[1]=m p1[2]=f p2[-1]=ju p2[0]=pl p2[1]=mu p2[2]=fo p3[-1]=jus p3[0]=pla p3[1]=mus p3[2]=for p4[-1]=just p4[0]=play p4[1]=musi p4[2]= s1[-1]=t s1[0]=y s1[1]=c s1[2]=r s2[-1]=st s2[0]=ay s2[1]=ic s2[2]=or s3[-1]=ust s3[0]=lay s3[1]=sic s3[2]=for s4[-1]=just s4[0]=play s4[1]=usic s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=just|play w[0]|w[1]=play|music w[1]|w[2]=music|for pos[-1]|pos[0]=RB|VBP pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=just w[1..4]=music w[1..4]=for w[1..4]=me +O w[-2]=just w[-1]=play w[0]=music w[1]=for w[2]=me wl[-2]=just wl[-1]=play wl[0]=music wl[1]=for wl[2]=me pos[-2]=RB pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=j p1[-1]=p p1[0]=m p1[1]=f p1[2]=m p2[-2]=ju p2[-1]=pl p2[0]=mu p2[1]=fo p2[2]=me p3[-2]=jus p3[-1]=pla p3[0]=mus p3[1]=for p3[2]= p4[-2]=just p4[-1]=play p4[0]=musi p4[1]= p4[2]= s1[-2]=t s1[-1]=y s1[0]=c s1[1]=r s1[2]=e s2[-2]=st s2[-1]=ay s2[0]=ic s2[1]=or s2[2]=me s3[-2]=ust s3[-1]=lay s3[0]=sic s3[1]=for s3[2]= s4[-2]=just s4[-1]=play s4[0]=usic s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=just|play w[-1]|w[0]=play|music w[0]|w[1]=music|for w[1]|w[2]=for|me pos[-2]|pos[-1]=RB|VBP pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=just w[-4..-1]=play w[1..4]=for w[1..4]=me +O w[-2]=play w[-1]=music w[0]=for w[1]=me wl[-2]=play wl[-1]=music wl[0]=for wl[1]=me pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLL shape[1]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=m p1[0]=f p1[1]=m p2[-2]=pl p2[-1]=mu p2[0]=fo p2[1]=me p3[-2]=pla p3[-1]=mus p3[0]=for p3[1]= p4[-2]=play p4[-1]=musi p4[0]= p4[1]= s1[-2]=y s1[-1]=c s1[0]=r s1[1]=e s2[-2]=ay s2[-1]=ic s2[0]=or s2[1]=me s3[-2]=lay s3[-1]=sic s3[0]=for s3[1]= s4[-2]=play s4[-1]=usic s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|music w[-1]|w[0]=music|for w[0]|w[1]=for|me pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=just w[-4..-1]=play w[-4..-1]=music w[1..4]=me +O w[-2]=music w[-1]=for w[0]=me wl[-2]=music wl[-1]=for wl[0]=me pos[-2]=NN pos[-1]=IN pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=f p1[0]=m p2[-2]=mu p2[-1]=fo p2[0]=me p3[-2]=mus p3[-1]=for p3[0]= p4[-2]=musi p4[-1]= p4[0]= s1[-2]=c s1[-1]=r s1[0]=e s2[-2]=ic s2[-1]=or s2[0]=me s3[-2]=sic s3[-1]=for s3[0]= s4[-2]=usic s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=music|for w[-1]|w[0]=for|me pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=just w[-4..-1]=play w[-4..-1]=music w[-4..-1]=for __EOS__ + +O w[0]=play w[1]=genre w[2]=romance wl[0]=play wl[1]=genre wl[2]=romance pos[0]=VBP pos[1]=NN pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=LLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=g p1[2]=r p2[0]=pl p2[1]=ge p2[2]=ro p3[0]=pla p3[1]=gen p3[2]=rom p4[0]=play p4[1]=genr p4[2]=roma s1[0]=y s1[1]=e s1[2]=e s2[0]=ay s2[1]=re s2[2]=ce s3[0]=lay s3[1]=nre s3[2]=nce s4[0]=play s4[1]=enre s4[2]=ance 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|genre w[1]|w[2]=genre|romance pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=genre w[1..4]=romance __BOS__ +O w[-1]=play w[0]=genre w[1]=romance wl[-1]=play wl[0]=genre wl[1]=romance pos[-1]=VBP pos[0]=NN pos[1]=NN chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=g p1[1]=r p2[-1]=pl p2[0]=ge p2[1]=ro p3[-1]=pla p3[0]=gen p3[1]=rom p4[-1]=play p4[0]=genr p4[1]=roma s1[-1]=y s1[0]=e s1[1]=e s2[-1]=ay s2[0]=re s2[1]=ce s3[-1]=lay s3[0]=nre s3[1]=nce s4[-1]=play s4[0]=enre s4[1]=ance 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|genre w[0]|w[1]=genre|romance pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=romance +genre w[-2]=play w[-1]=genre w[0]=romance wl[-2]=play wl[-1]=genre wl[0]=romance pos[-2]=VBP pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=g p1[0]=r p2[-2]=pl p2[-1]=ge p2[0]=ro p3[-2]=pla p3[-1]=gen p3[0]=rom p4[-2]=play p4[-1]=genr p4[0]=roma s1[-2]=y s1[-1]=e s1[0]=e s2[-2]=ay s2[-1]=re s2[0]=ce s3[-2]=lay s3[-1]=nre s3[0]=nce s4[-2]=play s4[-1]=enre s4[0]=ance 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|genre w[-1]|w[0]=genre|romance pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=genre __EOS__ + +O w[0]=play w[1]=song w[2]=The wl[0]=play wl[1]=song wl[2]=the pos[0]=VBP pos[1]=NN pos[2]=DT chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=T p2[0]=pl p2[1]=so p2[2]=Th p3[0]=pla p3[1]=son p3[2]=The p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=e s2[0]=ay s2[1]=ng s2[2]=he s3[0]=lay s3[1]=ong s3[2]=The s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|The pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=The w[1..4]=Nights __BOS__ +O w[-1]=play w[0]=song w[1]=The w[2]=Nights wl[-1]=play wl[0]=song wl[1]=the wl[2]=nights pos[-1]=VBP pos[0]=NN pos[1]=DT pos[2]=DT chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=T p1[2]=N p2[-1]=pl p2[0]=so p2[1]=Th p2[2]=Ni p3[-1]=pla p3[0]=son p3[1]=The p3[2]=Nig p4[-1]=play p4[0]=song p4[1]= p4[2]=Nigh s1[-1]=y s1[0]=g s1[1]=e s1[2]=s s2[-1]=ay s2[0]=ng s2[1]=he s2[2]=ts s3[-1]=lay s3[0]=ong s3[1]=The s3[2]=hts s4[-1]=play s4[0]=song s4[1]= s4[2]=ghts 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|The w[1]|w[2]=The|Nights pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|DT pos[1]|pos[2]=DT|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=The w[1..4]=Nights +song w[-2]=play w[-1]=song w[0]=The w[1]=Nights wl[-2]=play wl[-1]=song wl[0]=the wl[1]=nights pos[-2]=VBP pos[-1]=NN pos[0]=DT pos[1]=DT chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=p p1[-1]=s p1[0]=T p1[1]=N p2[-2]=pl p2[-1]=so p2[0]=Th p2[1]=Ni p3[-2]=pla p3[-1]=son p3[0]=The p3[1]=Nig p4[-2]=play p4[-1]=song p4[0]= p4[1]=Nigh s1[-2]=y s1[-1]=g s1[0]=e s1[1]=s s2[-2]=ay s2[-1]=ng s2[0]=he s2[1]=ts s3[-2]=lay s3[-1]=ong s3[0]=The s3[1]=hts s4[-2]=play s4[-1]=song s4[0]= s4[1]=ghts 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|The w[0]|w[1]=The|Nights pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|DT pos[0]|pos[1]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=Nights +song w[-2]=song w[-1]=The w[0]=Nights wl[-2]=song wl[-1]=the wl[0]=nights pos[-2]=NN pos[-1]=DT pos[0]=DT chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=s p1[-1]=T p1[0]=N p2[-2]=so p2[-1]=Th p2[0]=Ni p3[-2]=son p3[-1]=The p3[0]=Nig p4[-2]=song p4[-1]= p4[0]=Nigh s1[-2]=g s1[-1]=e s1[0]=s s2[-2]=ng s2[-1]=he s2[0]=ts s3[-2]=ong s3[-1]=The s3[0]=hts s4[-2]=song s4[-1]= s4[0]=ghts 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|The w[-1]|w[0]=The|Nights pos[-2]|pos[-1]=NN|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=The __EOS__ + +O w[0]=play w[1]=a w[2]=song wl[0]=play wl[1]=a wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=s p2[0]=pl p2[1]= p2[2]=so p3[0]=pla p3[1]= p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=a s1[2]=g s2[0]=ay s2[1]= s2[2]=ng s3[0]=lay s3[1]= s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=song w[1..4]=Another w[1..4]=Brick __BOS__ +O w[-1]=play w[0]=a w[1]=song w[2]=Another wl[-1]=play wl[0]=a wl[1]=song wl[2]=another pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=L shape[1]=LLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=a p1[1]=s p1[2]=A p2[-1]=pl p2[0]= p2[1]=so p2[2]=An p3[-1]=pla p3[0]= p3[1]=son p3[2]=Ano p4[-1]=play p4[0]= p4[1]=song p4[2]=Anot s1[-1]=y s1[0]=a s1[1]=g s1[2]=r s2[-1]=ay s2[0]= s2[1]=ng s2[2]=er s3[-1]=lay s3[0]= s3[1]=ong s3[2]=her s4[-1]=play s4[0]= s4[1]=song s4[2]=ther 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|song w[1]|w[2]=song|Another pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Another w[1..4]=Brick w[1..4]=in +O w[-2]=play w[-1]=a w[0]=song w[1]=Another w[2]=Brick wl[-2]=play wl[-1]=a wl[0]=song wl[1]=another wl[2]=brick pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=s p1[1]=A p1[2]=B p2[-2]=pl p2[-1]= p2[0]=so p2[1]=An p2[2]=Br p3[-2]=pla p3[-1]= p3[0]=son p3[1]=Ano p3[2]=Bri p4[-2]=play p4[-1]= p4[0]=song p4[1]=Anot p4[2]=Bric s1[-2]=y s1[-1]=a s1[0]=g s1[1]=r s1[2]=k s2[-2]=ay s2[-1]= s2[0]=ng s2[1]=er s2[2]=ck s3[-2]=lay s3[-1]= s3[0]=ong s3[1]=her s3[2]=ick s4[-2]=play s4[-1]= s4[0]=song s4[1]=ther s4[2]=rick 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|song w[0]|w[1]=song|Another w[1]|w[2]=Another|Brick pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=a w[1..4]=Another w[1..4]=Brick w[1..4]=in w[1..4]=the +song w[-2]=a w[-1]=song w[0]=Another w[1]=Brick w[2]=in wl[-2]=a wl[-1]=song wl[0]=another wl[1]=brick wl[2]=in pos[-2]=DT pos[-1]=NN pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=L shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=a p1[-1]=s p1[0]=A p1[1]=B p1[2]=i p2[-2]= p2[-1]=so p2[0]=An p2[1]=Br p2[2]=in p3[-2]= p3[-1]=son p3[0]=Ano p3[1]=Bri p3[2]= p4[-2]= p4[-1]=song p4[0]=Anot p4[1]=Bric p4[2]= s1[-2]=a s1[-1]=g s1[0]=r s1[1]=k s1[2]=n s2[-2]= s2[-1]=ng s2[0]=er s2[1]=ck s2[2]=in s3[-2]= s3[-1]=ong s3[0]=her s3[1]=ick s3[2]= s4[-2]= s4[-1]=song s4[0]=ther s4[1]=rick s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=a|song w[-1]|w[0]=song|Another w[0]|w[1]=Another|Brick w[1]|w[2]=Brick|in pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[1..4]=Brick w[1..4]=in w[1..4]=the w[1..4]=Wall +song w[-2]=song w[-1]=Another w[0]=Brick w[1]=in w[2]=the wl[-2]=song wl[-1]=another wl[0]=brick wl[1]=in wl[2]=the pos[-2]=NN pos[-1]=DT pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLL shape[1]=LL shape[2]=LLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=A p1[0]=B p1[1]=i p1[2]=t p2[-2]=so p2[-1]=An p2[0]=Br p2[1]=in p2[2]=th p3[-2]=son p3[-1]=Ano p3[0]=Bri p3[1]= p3[2]=the p4[-2]=song p4[-1]=Anot p4[0]=Bric p4[1]= p4[2]= s1[-2]=g s1[-1]=r s1[0]=k s1[1]=n s1[2]=e s2[-2]=ng s2[-1]=er s2[0]=ck s2[1]=in s2[2]=he s3[-2]=ong s3[-1]=her s3[0]=ick s3[1]= s3[2]=the s4[-2]=song s4[-1]=ther s4[0]=rick s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Another w[-1]|w[0]=Another|Brick w[0]|w[1]=Brick|in w[1]|w[2]=in|the pos[-2]|pos[-1]=NN|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[-4..-1]=Another w[1..4]=in w[1..4]=the w[1..4]=Wall +song w[-2]=Another w[-1]=Brick w[0]=in w[1]=the w[2]=Wall wl[-2]=another wl[-1]=brick wl[0]=in wl[1]=the wl[2]=wall pos[-2]=DT pos[-1]=DT pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLLLL shape[-1]=ULLLL shape[0]=LL shape[1]=LLL shape[2]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=A p1[-1]=B p1[0]=i p1[1]=t p1[2]=W p2[-2]=An p2[-1]=Br p2[0]=in p2[1]=th p2[2]=Wa p3[-2]=Ano p3[-1]=Bri p3[0]= p3[1]=the p3[2]=Wal p4[-2]=Anot p4[-1]=Bric p4[0]= p4[1]= p4[2]=Wall s1[-2]=r s1[-1]=k s1[0]=n s1[1]=e s1[2]=l s2[-2]=er s2[-1]=ck s2[0]=in s2[1]=he s2[2]=ll s3[-2]=her s3[-1]=ick s3[0]= s3[1]=the s3[2]=all s4[-2]=ther s4[-1]=rick s4[0]= s4[1]= s4[2]=Wall 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Another|Brick w[-1]|w[0]=Brick|in w[0]|w[1]=in|the w[1]|w[2]=the|Wall pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=a w[-4..-1]=song w[-4..-1]=Another w[-4..-1]=Brick w[1..4]=the w[1..4]=Wall +song w[-2]=Brick w[-1]=in w[0]=the w[1]=Wall wl[-2]=brick wl[-1]=in wl[0]=the wl[1]=wall pos[-2]=DT pos[-1]=DT pos[0]=DT pos[1]=DT chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=LLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=B p1[-1]=i p1[0]=t p1[1]=W p2[-2]=Br p2[-1]=in p2[0]=th p2[1]=Wa p3[-2]=Bri p3[-1]= p3[0]=the p3[1]=Wal p4[-2]=Bric p4[-1]= p4[0]= p4[1]=Wall s1[-2]=k s1[-1]=n s1[0]=e s1[1]=l s2[-2]=ck s2[-1]=in s2[0]=he s2[1]=ll s3[-2]=ick s3[-1]= s3[0]=the s3[1]=all s4[-2]=rick s4[-1]= s4[0]= s4[1]=Wall 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Brick|in w[-1]|w[0]=in|the w[0]|w[1]=the|Wall pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=song w[-4..-1]=Another w[-4..-1]=Brick w[-4..-1]=in w[1..4]=Wall +song w[-2]=in w[-1]=the w[0]=Wall wl[-2]=in wl[-1]=the wl[0]=wall pos[-2]=DT pos[-1]=DT pos[0]=DT chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=LLL shape[0]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=i p1[-1]=t p1[0]=W p2[-2]=in p2[-1]=th p2[0]=Wa p3[-2]= p3[-1]=the p3[0]=Wal p4[-2]= p4[-1]= p4[0]=Wall s1[-2]=n s1[-1]=e s1[0]=l s2[-2]=in s2[-1]=he s2[0]=ll s3[-2]= s3[-1]=the s3[0]=all s4[-2]= s4[-1]= s4[0]=Wall 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=in|the w[-1]|w[0]=the|Wall pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Another w[-4..-1]=Brick w[-4..-1]=in w[-4..-1]=the __EOS__ + +O w[0]=play w[1]=Ca w[2]=Marche wl[0]=play wl[1]=ca wl[2]=marche pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=UL shape[2]=ULLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=C p1[2]=M p2[0]=pl p2[1]=Ca p2[2]=Ma p3[0]=pla p3[1]= p3[2]=Mar p4[0]=play p4[1]= p4[2]=Marc s1[0]=y s1[1]=a s1[2]=e s2[0]=ay s2[1]=Ca s2[2]=he s3[0]=lay s3[1]= s3[2]=che s4[0]=play s4[1]= s4[2]=rche 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Ca w[1]|w[2]=Ca|Marche pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Ca w[1..4]=Marche w[1..4]=by w[1..4]=Maitre __BOS__ +song w[-1]=play w[0]=Ca w[1]=Marche w[2]=by wl[-1]=play wl[0]=ca wl[1]=marche wl[2]=by pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=UL shape[1]=ULLLLL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=C p1[1]=M p1[2]=b p2[-1]=pl p2[0]=Ca p2[1]=Ma p2[2]=by p3[-1]=pla p3[0]= p3[1]=Mar p3[2]= p4[-1]=play p4[0]= p4[1]=Marc p4[2]= s1[-1]=y s1[0]=a s1[1]=e s1[2]=y s2[-1]=ay s2[0]=Ca s2[1]=he s2[2]=by s3[-1]=lay s3[0]= s3[1]=che s3[2]= s4[-1]=play s4[0]= s4[1]=rche s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Ca w[0]|w[1]=Ca|Marche w[1]|w[2]=Marche|by pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Marche w[1..4]=by w[1..4]=Maitre w[1..4]=Gims +song w[-2]=play w[-1]=Ca w[0]=Marche w[1]=by w[2]=Maitre wl[-2]=play wl[-1]=ca wl[0]=marche wl[1]=by wl[2]=maitre pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=UL shape[0]=ULLLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=C p1[0]=M p1[1]=b p1[2]=M p2[-2]=pl p2[-1]=Ca p2[0]=Ma p2[1]=by p2[2]=Ma p3[-2]=pla p3[-1]= p3[0]=Mar p3[1]= p3[2]=Mai p4[-2]=play p4[-1]= p4[0]=Marc p4[1]= p4[2]=Mait s1[-2]=y s1[-1]=a s1[0]=e s1[1]=y s1[2]=e s2[-2]=ay s2[-1]=Ca s2[0]=he s2[1]=by s2[2]=re s3[-2]=lay s3[-1]= s3[0]=che s3[1]= s3[2]=tre s4[-2]=play s4[-1]= s4[0]=rche s4[1]= s4[2]=itre 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Ca w[-1]|w[0]=Ca|Marche w[0]|w[1]=Marche|by w[1]|w[2]=by|Maitre pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Ca w[1..4]=by w[1..4]=Maitre w[1..4]=Gims +O w[-2]=Ca w[-1]=Marche w[0]=by w[1]=Maitre w[2]=Gims wl[-2]=ca wl[-1]=marche wl[0]=by wl[1]=maitre wl[2]=gims pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=UL shape[-1]=ULLLLL shape[0]=LL shape[1]=ULLLLL shape[2]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=C p1[-1]=M p1[0]=b p1[1]=M p1[2]=G p2[-2]=Ca p2[-1]=Ma p2[0]=by p2[1]=Ma p2[2]=Gi p3[-2]= p3[-1]=Mar p3[0]= p3[1]=Mai p3[2]=Gim p4[-2]= p4[-1]=Marc p4[0]= p4[1]=Mait p4[2]=Gims s1[-2]=a s1[-1]=e s1[0]=y s1[1]=e s1[2]=s s2[-2]=Ca s2[-1]=he s2[0]=by s2[1]=re s2[2]=ms s3[-2]= s3[-1]=che s3[0]= s3[1]=tre s3[2]=ims s4[-2]= s4[-1]=rche s4[0]= s4[1]=itre s4[2]=Gims 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Ca|Marche w[-1]|w[0]=Marche|by w[0]|w[1]=by|Maitre w[1]|w[2]=Maitre|Gims pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Ca w[-4..-1]=Marche w[1..4]=Maitre w[1..4]=Gims +artist w[-2]=Marche w[-1]=by w[0]=Maitre w[1]=Gims wl[-2]=marche wl[-1]=by wl[0]=maitre wl[1]=gims pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=M p1[-1]=b p1[0]=M p1[1]=G p2[-2]=Ma p2[-1]=by p2[0]=Ma p2[1]=Gi p3[-2]=Mar p3[-1]= p3[0]=Mai p3[1]=Gim p4[-2]=Marc p4[-1]= p4[0]=Mait p4[1]=Gims s1[-2]=e s1[-1]=y s1[0]=e s1[1]=s s2[-2]=he s2[-1]=by s2[0]=re s2[1]=ms s3[-2]=che s3[-1]= s3[0]=tre s3[1]=ims s4[-2]=rche s4[-1]= s4[0]=itre s4[1]=Gims 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Marche|by w[-1]|w[0]=by|Maitre w[0]|w[1]=Maitre|Gims pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Ca w[-4..-1]=Marche w[-4..-1]=by w[1..4]=Gims +artist w[-2]=by w[-1]=Maitre w[0]=Gims wl[-2]=by wl[-1]=maitre wl[0]=gims pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=M p1[0]=G p2[-2]=by p2[-1]=Ma p2[0]=Gi p3[-2]= p3[-1]=Mai p3[0]=Gim p4[-2]= p4[-1]=Mait p4[0]=Gims s1[-2]=y s1[-1]=e s1[0]=s s2[-2]=by s2[-1]=re s2[0]=ms s3[-2]= s3[-1]=tre s3[0]=ims s4[-2]= s4[-1]=itre s4[0]=Gims 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Maitre w[-1]|w[0]=Maitre|Gims pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Ca w[-4..-1]=Marche w[-4..-1]=by w[-4..-1]=Maitre __EOS__ + +O w[0]=play w[1]=any w[2]=song wl[0]=play wl[1]=any wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=s p2[0]=pl p2[1]=an p2[2]=so p3[0]=pla p3[1]=any p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=y s1[2]=g s2[0]=ay s2[1]=ny s2[2]=ng s3[0]=lay s3[1]=any s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|any w[1]|w[2]=any|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=any w[1..4]=song w[1..4]=of w[1..4]=Babbu __BOS__ +O w[-1]=play w[0]=any w[1]=song w[2]=of wl[-1]=play wl[0]=any wl[1]=song wl[2]=of pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=s p1[2]=o p2[-1]=pl p2[0]=an p2[1]=so p2[2]=of p3[-1]=pla p3[0]=any p3[1]=son p3[2]= p4[-1]=play p4[0]= p4[1]=song p4[2]= s1[-1]=y s1[0]=y s1[1]=g s1[2]=f s2[-1]=ay s2[0]=ny s2[1]=ng s2[2]=of s3[-1]=lay s3[0]=any s3[1]=ong s3[2]= s4[-1]=play s4[0]= s4[1]=song s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|any w[0]|w[1]=any|song w[1]|w[2]=song|of pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=song w[1..4]=of w[1..4]=Babbu w[1..4]=Maan +O w[-2]=play w[-1]=any w[0]=song w[1]=of w[2]=Babbu wl[-2]=play wl[-1]=any wl[0]=song wl[1]=of wl[2]=babbu pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=s p1[1]=o p1[2]=B p2[-2]=pl p2[-1]=an p2[0]=so p2[1]=of p2[2]=Ba p3[-2]=pla p3[-1]=any p3[0]=son p3[1]= p3[2]=Bab p4[-2]=play p4[-1]= p4[0]=song p4[1]= p4[2]=Babb s1[-2]=y s1[-1]=y s1[0]=g s1[1]=f s1[2]=u s2[-2]=ay s2[-1]=ny s2[0]=ng s2[1]=of s2[2]=bu s3[-2]=lay s3[-1]=any s3[0]=ong s3[1]= s3[2]=bbu s4[-2]=play s4[-1]= s4[0]=song s4[1]= s4[2]=abbu 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|any w[-1]|w[0]=any|song w[0]|w[1]=song|of w[1]|w[2]=of|Babbu pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=any w[1..4]=of w[1..4]=Babbu w[1..4]=Maan w[1..4]=from +O w[-2]=any w[-1]=song w[0]=of w[1]=Babbu w[2]=Maan wl[-2]=any wl[-1]=song wl[0]=of wl[1]=babbu wl[2]=maan pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=a p1[-1]=s p1[0]=o p1[1]=B p1[2]=M p2[-2]=an p2[-1]=so p2[0]=of p2[1]=Ba p2[2]=Ma p3[-2]=any p3[-1]=son p3[0]= p3[1]=Bab p3[2]=Maa p4[-2]= p4[-1]=song p4[0]= p4[1]=Babb p4[2]=Maan s1[-2]=y s1[-1]=g s1[0]=f s1[1]=u s1[2]=n s2[-2]=ny s2[-1]=ng s2[0]=of s2[1]=bu s2[2]=an s3[-2]=any s3[-1]=ong s3[0]= s3[1]=bbu s3[2]=aan s4[-2]= s4[-1]=song s4[0]= s4[1]=abbu s4[2]=Maan 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=any|song w[-1]|w[0]=song|of w[0]|w[1]=of|Babbu w[1]|w[2]=Babbu|Maan pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=any w[-4..-1]=song w[1..4]=Babbu w[1..4]=Maan w[1..4]=from w[1..4]=my +artist w[-2]=song w[-1]=of w[0]=Babbu w[1]=Maan w[2]=from wl[-2]=song wl[-1]=of wl[0]=babbu wl[1]=maan wl[2]=from pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=s p1[-1]=o p1[0]=B p1[1]=M p1[2]=f p2[-2]=so p2[-1]=of p2[0]=Ba p2[1]=Ma p2[2]=fr p3[-2]=son p3[-1]= p3[0]=Bab p3[1]=Maa p3[2]=fro p4[-2]=song p4[-1]= p4[0]=Babb p4[1]=Maan p4[2]=from s1[-2]=g s1[-1]=f s1[0]=u s1[1]=n s1[2]=m s2[-2]=ng s2[-1]=of s2[0]=bu s2[1]=an s2[2]=om s3[-2]=ong s3[-1]= s3[0]=bbu s3[1]=aan s3[2]=rom s4[-2]=song s4[-1]= s4[0]=abbu s4[1]=Maan s4[2]=from 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|of w[-1]|w[0]=of|Babbu w[0]|w[1]=Babbu|Maan w[1]|w[2]=Maan|from pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=any w[-4..-1]=song w[-4..-1]=of w[1..4]=Maan w[1..4]=from w[1..4]=my w[1..4]=library +artist w[-2]=of w[-1]=Babbu w[0]=Maan w[1]=from w[2]=my wl[-2]=of wl[-1]=babbu wl[0]=maan wl[1]=from wl[2]=my pos[-2]=IN pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=PRP$ chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=o p1[-1]=B p1[0]=M p1[1]=f p1[2]=m p2[-2]=of p2[-1]=Ba p2[0]=Ma p2[1]=fr p2[2]=my p3[-2]= p3[-1]=Bab p3[0]=Maa p3[1]=fro p3[2]= p4[-2]= p4[-1]=Babb p4[0]=Maan p4[1]=from p4[2]= s1[-2]=f s1[-1]=u s1[0]=n s1[1]=m s1[2]=y s2[-2]=of s2[-1]=bu s2[0]=an s2[1]=om s2[2]=my s3[-2]= s3[-1]=bbu s3[0]=aan s3[1]=rom s3[2]= s4[-2]= s4[-1]=abbu s4[0]=Maan s4[1]=from s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=of|Babbu w[-1]|w[0]=Babbu|Maan w[0]|w[1]=Maan|from w[1]|w[2]=from|my pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|PRP$ chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=any w[-4..-1]=song w[-4..-1]=of w[-4..-1]=Babbu w[1..4]=from w[1..4]=my w[1..4]=library +O w[-2]=Babbu w[-1]=Maan w[0]=from w[1]=my w[2]=library wl[-2]=babbu wl[-1]=maan wl[0]=from wl[1]=my wl[2]=library pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=PRP$ pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=O shape[-2]=ULLLL shape[-1]=ULLL shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=B p1[-1]=M p1[0]=f p1[1]=m p1[2]=l p2[-2]=Ba p2[-1]=Ma p2[0]=fr p2[1]=my p2[2]=li p3[-2]=Bab p3[-1]=Maa p3[0]=fro p3[1]= p3[2]=lib p4[-2]=Babb p4[-1]=Maan p4[0]=from p4[1]= p4[2]=libr s1[-2]=u s1[-1]=n s1[0]=m s1[1]=y s1[2]=y s2[-2]=bu s2[-1]=an s2[0]=om s2[1]=my s2[2]=ry s3[-2]=bbu s3[-1]=aan s3[0]=rom s3[1]= s3[2]=ary s4[-2]=abbu s4[-1]=Maan s4[0]=from s4[1]= s4[2]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Babbu|Maan w[-1]|w[0]=Maan|from w[0]|w[1]=from|my w[1]|w[2]=my|library pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=song w[-4..-1]=of w[-4..-1]=Babbu w[-4..-1]=Maan w[1..4]=my w[1..4]=library +O w[-2]=Maan w[-1]=from w[0]=my w[1]=library wl[-2]=maan wl[-1]=from wl[0]=my wl[1]=library pos[-2]=NNP pos[-1]=IN pos[0]=PRP$ pos[1]=NN chk[-2]=I chk[-1]=O chk[0]=O chk[1]=O shape[-2]=ULLL shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=M p1[-1]=f p1[0]=m p1[1]=l p2[-2]=Ma p2[-1]=fr p2[0]=my p2[1]=li p3[-2]=Maa p3[-1]=fro p3[0]= p3[1]=lib p4[-2]=Maan p4[-1]=from p4[0]= p4[1]=libr s1[-2]=n s1[-1]=m s1[0]=y s1[1]=y s2[-2]=an s2[-1]=om s2[0]=my s2[1]=ry s3[-2]=aan s3[-1]=rom s3[0]= s3[1]=ary s4[-2]=Maan s4[-1]=from s4[0]= s4[1]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Maan|from w[-1]|w[0]=from|my w[0]|w[1]=my|library pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=of w[-4..-1]=Babbu w[-4..-1]=Maan w[-4..-1]=from w[1..4]=library +O w[-2]=from w[-1]=my w[0]=library wl[-2]=from wl[-1]=my wl[0]=library pos[-2]=IN pos[-1]=PRP$ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=f p1[-1]=m p1[0]=l p2[-2]=fr p2[-1]=my p2[0]=li p3[-2]=fro p3[-1]= p3[0]=lib p4[-2]=from p4[-1]= p4[0]=libr s1[-2]=m s1[-1]=y s1[0]=y s2[-2]=om s2[-1]=my s2[0]=ry s3[-2]=rom s3[-1]= s3[0]=ary s4[-2]=from s4[-1]= s4[0]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=from|my w[-1]|w[0]=my|library pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=Babbu w[-4..-1]=Maan w[-4..-1]=from w[-4..-1]=my __EOS__ + +artist w[0]=Eminem w[1]=song wl[0]=eminem wl[1]=song pos[0]=NNP pos[1]=NN chk[0]=I chk[1]=O shape[0]=ULLLLL shape[1]=LLLL shaped[0]=UL shaped[1]=L type[0]=InitUpper type[1]=AllLetter p1[0]=E p1[1]=s p2[0]=Em p2[1]=so p3[0]=Emi p3[1]=son p4[0]=Emin p4[1]=song s1[0]=m s1[1]=g s2[0]=em s2[1]=ng s3[0]=nem s3[1]=ong s4[0]=inem s4[1]=song 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=yes iu[1]=no au[0]=no au[1]=no al[0]=no al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=yes cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=yes cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=Eminem|song pos[0]|pos[1]=NNP|NN chk[0]|chk[1]=I|O shaped[0]|shaped[1]=UL|L type[0]|type[1]=InitUpper|AllLetter w[1..4]=song __BOS__ +O w[-1]=Eminem w[0]=song wl[-1]=eminem wl[0]=song pos[-1]=NNP pos[0]=NN chk[-1]=I chk[0]=O shape[-1]=ULLLLL shape[0]=LLLL shaped[-1]=UL shaped[0]=L type[-1]=InitUpper type[0]=AllLetter p1[-1]=E p1[0]=s p2[-1]=Em p2[0]=so p3[-1]=Emi p3[0]=son p4[-1]=Emin p4[0]=song s1[-1]=m s1[0]=g s2[-1]=em s2[0]=ng s3[-1]=nem s3[0]=ong s4[-1]=inem s4[0]=song 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=yes iu[0]=no au[-1]=no au[0]=no al[-1]=no al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=yes cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=yes cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=Eminem|song pos[-1]|pos[0]=NNP|NN chk[-1]|chk[0]=I|O shaped[-1]|shaped[0]=UL|L type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=Eminem __EOS__ + +O w[0]=song w[1]=pop wl[0]=song wl[1]=pop pos[0]=JJ pos[1]=NN chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=LLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=s p1[1]=p p2[0]=so p2[1]=po p3[0]=son p3[1]=pop p4[0]=song p4[1]= s1[0]=g s1[1]=p s2[0]=ng s2[1]=op s3[0]=ong s3[1]=pop s4[0]=song s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=song|pop pos[0]|pos[1]=JJ|NN chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=pop __BOS__ +genre w[-1]=song w[0]=pop wl[-1]=song wl[0]=pop pos[-1]=JJ pos[0]=NN chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=LLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=s p1[0]=p p2[-1]=so p2[0]=po p3[-1]=son p3[0]=pop p4[-1]=song p4[0]= s1[-1]=g s1[0]=p s2[-1]=ng s2[0]=op s3[-1]=ong s3[0]=pop s4[-1]=song s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=song|pop pos[-1]|pos[0]=JJ|NN chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=song __EOS__ + +O w[0]=play w[1]=the w[2]=album wl[0]=play wl[1]=the wl[2]=album pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=a p2[0]=pl p2[1]=th p2[2]=al p3[0]=pla p3[1]=the p3[2]=alb p4[0]=play p4[1]= p4[2]=albu s1[0]=y s1[1]=e s1[2]=m s2[0]=ay s2[1]=he s2[2]=um s3[0]=lay s3[1]=the s3[2]=bum s4[0]=play s4[1]= s4[2]=lbum 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|album pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=album w[1..4]=Divorcio w[1..4]=by __BOS__ +O w[-1]=play w[0]=the w[1]=album w[2]=Divorcio wl[-1]=play wl[0]=the wl[1]=album wl[2]=divorcio pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLL shape[2]=ULLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=a p1[2]=D p2[-1]=pl p2[0]=th p2[1]=al p2[2]=Di p3[-1]=pla p3[0]=the p3[1]=alb p3[2]=Div p4[-1]=play p4[0]= p4[1]=albu p4[2]=Divo s1[-1]=y s1[0]=e s1[1]=m s1[2]=o s2[-1]=ay s2[0]=he s2[1]=um s2[2]=io s3[-1]=lay s3[0]=the s3[1]=bum s3[2]=cio s4[-1]=play s4[0]= s4[1]=lbum s4[2]=rcio 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|album w[1]|w[2]=album|Divorcio pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=album w[1..4]=Divorcio w[1..4]=by w[1..4]=Julio +O w[-2]=play w[-1]=the w[0]=album w[1]=Divorcio w[2]=by wl[-2]=play wl[-1]=the wl[0]=album wl[1]=divorcio wl[2]=by pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NNP pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLL shape[1]=ULLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=a p1[1]=D p1[2]=b p2[-2]=pl p2[-1]=th p2[0]=al p2[1]=Di p2[2]=by p3[-2]=pla p3[-1]=the p3[0]=alb p3[1]=Div p3[2]= p4[-2]=play p4[-1]= p4[0]=albu p4[1]=Divo p4[2]= s1[-2]=y s1[-1]=e s1[0]=m s1[1]=o s1[2]=y s2[-2]=ay s2[-1]=he s2[0]=um s2[1]=io s2[2]=by s3[-2]=lay s3[-1]=the s3[0]=bum s3[1]=cio s3[2]= s4[-2]=play s4[-1]= s4[0]=lbum s4[1]=rcio s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|album w[0]|w[1]=album|Divorcio w[1]|w[2]=Divorcio|by pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=Divorcio w[1..4]=by w[1..4]=Julio w[1..4]=Iglesia +album w[-2]=the w[-1]=album w[0]=Divorcio w[1]=by w[2]=Julio wl[-2]=the wl[-1]=album wl[0]=divorcio wl[1]=by wl[2]=julio pos[-2]=DT pos[-1]=NN pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLLLL shape[0]=ULLLLLLL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=a p1[0]=D p1[1]=b p1[2]=J p2[-2]=th p2[-1]=al p2[0]=Di p2[1]=by p2[2]=Ju p3[-2]=the p3[-1]=alb p3[0]=Div p3[1]= p3[2]=Jul p4[-2]= p4[-1]=albu p4[0]=Divo p4[1]= p4[2]=Juli s1[-2]=e s1[-1]=m s1[0]=o s1[1]=y s1[2]=o s2[-2]=he s2[-1]=um s2[0]=io s2[1]=by s2[2]=io s3[-2]=the s3[-1]=bum s3[0]=cio s3[1]= s3[2]=lio s4[-2]= s4[-1]=lbum s4[0]=rcio s4[1]= s4[2]=ulio 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|album w[-1]|w[0]=album|Divorcio w[0]|w[1]=Divorcio|by w[1]|w[2]=by|Julio pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=album w[1..4]=by w[1..4]=Julio w[1..4]=Iglesia +O w[-2]=album w[-1]=Divorcio w[0]=by w[1]=Julio w[2]=Iglesia wl[-2]=album wl[-1]=divorcio wl[0]=by wl[1]=julio wl[2]=iglesia pos[-2]=NN pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLLL shape[-1]=ULLLLLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=a p1[-1]=D p1[0]=b p1[1]=J p1[2]=I p2[-2]=al p2[-1]=Di p2[0]=by p2[1]=Ju p2[2]=Ig p3[-2]=alb p3[-1]=Div p3[0]= p3[1]=Jul p3[2]=Igl p4[-2]=albu p4[-1]=Divo p4[0]= p4[1]=Juli p4[2]=Igle s1[-2]=m s1[-1]=o s1[0]=y s1[1]=o s1[2]=a s2[-2]=um s2[-1]=io s2[0]=by s2[1]=io s2[2]=ia s3[-2]=bum s3[-1]=cio s3[0]= s3[1]=lio s3[2]=sia s4[-2]=lbum s4[-1]=rcio s4[0]= s4[1]=ulio s4[2]=esia 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Divorcio w[-1]|w[0]=Divorcio|by w[0]|w[1]=by|Julio w[1]|w[2]=Julio|Iglesia pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=album w[-4..-1]=Divorcio w[1..4]=Julio w[1..4]=Iglesia +artist w[-2]=Divorcio w[-1]=by w[0]=Julio w[1]=Iglesia wl[-2]=divorcio wl[-1]=by wl[0]=julio wl[1]=iglesia pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=D p1[-1]=b p1[0]=J p1[1]=I p2[-2]=Di p2[-1]=by p2[0]=Ju p2[1]=Ig p3[-2]=Div p3[-1]= p3[0]=Jul p3[1]=Igl p4[-2]=Divo p4[-1]= p4[0]=Juli p4[1]=Igle s1[-2]=o s1[-1]=y s1[0]=o s1[1]=a s2[-2]=io s2[-1]=by s2[0]=io s2[1]=ia s3[-2]=cio s3[-1]= s3[0]=lio s3[1]=sia s4[-2]=rcio s4[-1]= s4[0]=ulio s4[1]=esia 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Divorcio|by w[-1]|w[0]=by|Julio w[0]|w[1]=Julio|Iglesia pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=the w[-4..-1]=album w[-4..-1]=Divorcio w[-4..-1]=by w[1..4]=Iglesia +artist w[-2]=by w[-1]=Julio w[0]=Iglesia wl[-2]=by wl[-1]=julio wl[0]=iglesia pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=J p1[0]=I p2[-2]=by p2[-1]=Ju p2[0]=Ig p3[-2]= p3[-1]=Jul p3[0]=Igl p4[-2]= p4[-1]=Juli p4[0]=Igle s1[-2]=y s1[-1]=o s1[0]=a s2[-2]=by s2[-1]=io s2[0]=ia s3[-2]= s3[-1]=lio s3[0]=sia s4[-2]= s4[-1]=ulio s4[0]=esia 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Julio w[-1]|w[0]=Julio|Iglesia pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=album w[-4..-1]=Divorcio w[-4..-1]=by w[-4..-1]=Julio __EOS__ + +O w[0]=play w[1]=Miracle wl[0]=play wl[1]=miracle pos[0]=VB pos[1]=NN chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=ULLLLLL shaped[0]=L shaped[1]=UL type[0]=AllLetter type[1]=InitUpper p1[0]=p p1[1]=M p2[0]=pl p2[1]=Mi p3[0]=pla p3[1]=Mir p4[0]=play p4[1]=Mira s1[0]=y s1[1]=e s2[0]=ay s2[1]=le s3[0]=lay s3[1]=cle s4[0]=play s4[1]=acle 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=yes cs[0]=no cs[1]=no w[0]|w[1]=play|Miracle pos[0]|pos[1]=VB|NN chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|UL type[0]|type[1]=AllLetter|InitUpper w[1..4]=Miracle __BOS__ +song w[-1]=play w[0]=Miracle wl[-1]=play wl[0]=miracle pos[-1]=VB pos[0]=NN chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=ULLLLLL shaped[-1]=L shaped[0]=UL type[-1]=AllLetter type[0]=InitUpper p1[-1]=p p1[0]=M p2[-1]=pl p2[0]=Mi p3[-1]=pla p3[0]=Mir p4[-1]=play p4[0]=Mira s1[-1]=y s1[0]=e s2[-1]=ay s2[0]=le s3[-1]=lay s3[0]=cle s4[-1]=play s4[0]=acle 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=yes cs[-1]=no cs[0]=no w[-1]|w[0]=play|Miracle pos[-1]|pos[0]=VB|NN chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|UL type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play __EOS__ + +O w[0]=I w[1]=wanna w[2]=listen wl[0]=i wl[1]=wanna wl[2]=listen pos[0]=PRP pos[1]=MD pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLLL shape[2]=LLLLLL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=l p2[0]= p2[1]=wa p2[2]=li p3[0]= p3[1]=wan p3[2]=lis p4[0]= p4[1]=wann p4[2]=list s1[0]=I s1[1]=a s1[2]=n s2[0]= s2[1]=na s2[2]=en s3[0]= s3[1]=nna s3[2]=ten s4[0]= s4[1]=anna s4[2]=sten 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|wanna w[1]|w[2]=wanna|listen pos[0]|pos[1]=PRP|MD pos[1]|pos[2]=MD|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=wanna w[1..4]=listen w[1..4]=to w[1..4]=reggae __BOS__ +O w[-1]=I w[0]=wanna w[1]=listen w[2]=to wl[-1]=i wl[0]=wanna wl[1]=listen wl[2]=to pos[-1]=PRP pos[0]=MD pos[1]=VB pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLLL shape[1]=LLLLLL shape[2]=LL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=l p1[2]=t p2[-1]= p2[0]=wa p2[1]=li p2[2]=to p3[-1]= p3[0]=wan p3[1]=lis p3[2]= p4[-1]= p4[0]=wann p4[1]=list p4[2]= s1[-1]=I s1[0]=a s1[1]=n s1[2]=o s2[-1]= s2[0]=na s2[1]=en s2[2]=to s3[-1]= s3[0]=nna s3[1]=ten s3[2]= s4[-1]= s4[0]=anna s4[1]=sten s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|wanna w[0]|w[1]=wanna|listen w[1]|w[2]=listen|to pos[-1]|pos[0]=PRP|MD pos[0]|pos[1]=MD|VB pos[1]|pos[2]=VB|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=listen w[1..4]=to w[1..4]=reggae +O w[-2]=I w[-1]=wanna w[0]=listen w[1]=to w[2]=reggae wl[-2]=i wl[-1]=wanna wl[0]=listen wl[1]=to wl[2]=reggae pos[-2]=PRP pos[-1]=MD pos[0]=VB pos[1]=IN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=U shape[-1]=LLLLL shape[0]=LLLLLL shape[1]=LL shape[2]=LLLLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=l p1[1]=t p1[2]=r p2[-2]= p2[-1]=wa p2[0]=li p2[1]=to p2[2]=re p3[-2]= p3[-1]=wan p3[0]=lis p3[1]= p3[2]=reg p4[-2]= p4[-1]=wann p4[0]=list p4[1]= p4[2]=regg s1[-2]=I s1[-1]=a s1[0]=n s1[1]=o s1[2]=e s2[-2]= s2[-1]=na s2[0]=en s2[1]=to s2[2]=ae s3[-2]= s3[-1]=nna s3[0]=ten s3[1]= s3[2]=gae s4[-2]= s4[-1]=anna s4[0]=sten s4[1]= s4[2]=ggae 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|wanna w[-1]|w[0]=wanna|listen w[0]|w[1]=listen|to w[1]|w[2]=to|reggae pos[-2]|pos[-1]=PRP|MD pos[-1]|pos[0]=MD|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=wanna w[1..4]=to w[1..4]=reggae +O w[-2]=wanna w[-1]=listen w[0]=to w[1]=reggae wl[-2]=wanna wl[-1]=listen wl[0]=to wl[1]=reggae pos[-2]=MD pos[-1]=VB pos[0]=IN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLLL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=w p1[-1]=l p1[0]=t p1[1]=r p2[-2]=wa p2[-1]=li p2[0]=to p2[1]=re p3[-2]=wan p3[-1]=lis p3[0]= p3[1]=reg p4[-2]=wann p4[-1]=list p4[0]= p4[1]=regg s1[-2]=a s1[-1]=n s1[0]=o s1[1]=e s2[-2]=na s2[-1]=en s2[0]=to s2[1]=ae s3[-2]=nna s3[-1]=ten s3[0]= s3[1]=gae s4[-2]=anna s4[-1]=sten s4[0]= s4[1]=ggae 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=wanna|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|reggae pos[-2]|pos[-1]=MD|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=wanna w[-4..-1]=listen w[1..4]=reggae +genre w[-2]=listen w[-1]=to w[0]=reggae wl[-2]=listen wl[-1]=to wl[0]=reggae pos[-2]=VB pos[-1]=IN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=l p1[-1]=t p1[0]=r p2[-2]=li p2[-1]=to p2[0]=re p3[-2]=lis p3[-1]= p3[0]=reg p4[-2]=list p4[-1]= p4[0]=regg s1[-2]=n s1[-1]=o s1[0]=e s2[-2]=en s2[-1]=to s2[0]=ae s3[-2]=ten s3[-1]= s3[0]=gae s4[-2]=sten s4[-1]= s4[0]=ggae 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|reggae pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=wanna w[-4..-1]=listen w[-4..-1]=to __EOS__ + +O w[0]=play w[1]=some w[2]=smooth wl[0]=play wl[1]=some wl[2]=smooth pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=s p2[0]=pl p2[1]=so p2[2]=sm p3[0]=pla p3[1]=som p3[2]=smo p4[0]=play p4[1]=some p4[2]=smoo s1[0]=y s1[1]=e s1[2]=h s2[0]=ay s2[1]=me s2[2]=th s3[0]=lay s3[1]=ome s3[2]=oth s4[0]=play s4[1]=some s4[2]=ooth 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|some w[1]|w[2]=some|smooth pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=some w[1..4]=smooth w[1..4]=jazz __BOS__ +O w[-1]=play w[0]=some w[1]=smooth w[2]=jazz wl[-1]=play wl[0]=some wl[1]=smooth wl[2]=jazz pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=s p1[2]=j p2[-1]=pl p2[0]=so p2[1]=sm p2[2]=ja p3[-1]=pla p3[0]=som p3[1]=smo p3[2]=jaz p4[-1]=play p4[0]=some p4[1]=smoo p4[2]=jazz s1[-1]=y s1[0]=e s1[1]=h s1[2]=z s2[-1]=ay s2[0]=me s2[1]=th s2[2]=zz s3[-1]=lay s3[0]=ome s3[1]=oth s3[2]=azz s4[-1]=play s4[0]=some s4[1]=ooth s4[2]=jazz 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|some w[0]|w[1]=some|smooth w[1]|w[2]=smooth|jazz pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=smooth w[1..4]=jazz +genre w[-2]=play w[-1]=some w[0]=smooth w[1]=jazz wl[-2]=play wl[-1]=some wl[0]=smooth wl[1]=jazz pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=JJ chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=s p1[0]=s p1[1]=j p2[-2]=pl p2[-1]=so p2[0]=sm p2[1]=ja p3[-2]=pla p3[-1]=som p3[0]=smo p3[1]=jaz p4[-2]=play p4[-1]=some p4[0]=smoo p4[1]=jazz s1[-2]=y s1[-1]=e s1[0]=h s1[1]=z s2[-2]=ay s2[-1]=me s2[0]=th s2[1]=zz s3[-2]=lay s3[-1]=ome s3[0]=oth s3[1]=azz s4[-2]=play s4[-1]=some s4[0]=ooth s4[1]=jazz 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|some w[-1]|w[0]=some|smooth w[0]|w[1]=smooth|jazz pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[1..4]=jazz +genre w[-2]=some w[-1]=smooth w[0]=jazz wl[-2]=some wl[-1]=smooth wl[0]=jazz pos[-2]=DT pos[-1]=JJ pos[0]=JJ chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=LLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=s p1[0]=j p2[-2]=so p2[-1]=sm p2[0]=ja p3[-2]=som p3[-1]=smo p3[0]=jaz p4[-2]=some p4[-1]=smoo p4[0]=jazz s1[-2]=e s1[-1]=h s1[0]=z s2[-2]=me s2[-1]=th s2[0]=zz s3[-2]=ome s3[-1]=oth s3[0]=azz s4[-2]=some s4[-1]=ooth s4[0]=jazz 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|smooth w[-1]|w[0]=smooth|jazz pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|JJ chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=smooth __EOS__ + +O w[0]=play w[1]=6 w[2]=Words wl[0]=play wl[1]=6 wl[2]=words pos[0]=VB pos[1]=CD pos[2]=CD chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=D shape[2]=ULLLL shaped[0]=L shaped[1]=D shaped[2]=UL type[0]=AllLetter type[1]=AllDigit type[2]=InitUpper p1[0]=p p1[1]=6 p1[2]=W p2[0]=pl p2[1]= p2[2]=Wo p3[0]=pla p3[1]= p3[2]=Wor p4[0]=play p4[1]= p4[2]=Word s1[0]=y s1[1]=6 s1[2]=s s2[0]=ay s2[1]= s2[2]=ds s3[0]=lay s3[1]= s3[2]=rds s4[0]=play s4[1]= s4[2]=ords 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=yes ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[0]=yes ca[1]=no ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|6 w[1]|w[2]=6|Words pos[0]|pos[1]=VB|CD pos[1]|pos[2]=CD|CD chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|D shaped[1]|shaped[2]=D|UL type[0]|type[1]=AllLetter|AllDigit type[1]|type[2]=AllDigit|InitUpper w[1..4]=6 w[1..4]=Words w[1..4]=by w[1..4]=Wretch __BOS__ +song w[-1]=play w[0]=6 w[1]=Words w[2]=by wl[-1]=play wl[0]=6 wl[1]=words wl[2]=by pos[-1]=VB pos[0]=CD pos[1]=CD pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=D shape[1]=ULLLL shape[2]=LL shaped[-1]=L shaped[0]=D shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllDigit type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=6 p1[1]=W p1[2]=b p2[-1]=pl p2[0]= p2[1]=Wo p2[2]=by p3[-1]=pla p3[0]= p3[1]=Wor p3[2]= p4[-1]=play p4[0]= p4[1]=Word p4[2]= s1[-1]=y s1[0]=6 s1[1]=s s1[2]=y s2[-1]=ay s2[0]= s2[1]=ds s2[2]=by s3[-1]=lay s3[0]= s3[1]=rds s3[2]= s4[-1]=play s4[0]= s4[1]=ords s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=yes ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=no ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|6 w[0]|w[1]=6|Words w[1]|w[2]=Words|by pos[-1]|pos[0]=VB|CD pos[0]|pos[1]=CD|CD pos[1]|pos[2]=CD|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|D shaped[0]|shaped[1]=D|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllDigit type[0]|type[1]=AllDigit|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Words w[1..4]=by w[1..4]=Wretch w[1..4]=32 +song w[-2]=play w[-1]=6 w[0]=Words w[1]=by w[2]=Wretch wl[-2]=play wl[-1]=6 wl[0]=words wl[1]=by wl[2]=wretch pos[-2]=VB pos[-1]=CD pos[0]=CD pos[1]=IN pos[2]=JJ chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=D shape[0]=ULLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=D shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllDigit type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=6 p1[0]=W p1[1]=b p1[2]=W p2[-2]=pl p2[-1]= p2[0]=Wo p2[1]=by p2[2]=Wr p3[-2]=pla p3[-1]= p3[0]=Wor p3[1]= p3[2]=Wre p4[-2]=play p4[-1]= p4[0]=Word p4[1]= p4[2]=Wret s1[-2]=y s1[-1]=6 s1[0]=s s1[1]=y s1[2]=h s2[-2]=ay s2[-1]= s2[0]=ds s2[1]=by s2[2]=ch s3[-2]=lay s3[-1]= s3[0]=rds s3[1]= s3[2]=tch s4[-2]=play s4[-1]= s4[0]=ords s4[1]= s4[2]=etch 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=yes ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|6 w[-1]|w[0]=6|Words w[0]|w[1]=Words|by w[1]|w[2]=by|Wretch pos[-2]|pos[-1]=VB|CD pos[-1]|pos[0]=CD|CD pos[0]|pos[1]=CD|IN pos[1]|pos[2]=IN|JJ chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|D shaped[-1]|shaped[0]=D|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllDigit type[-1]|type[0]=AllDigit|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=6 w[1..4]=by w[1..4]=Wretch w[1..4]=32 w[1..4]=on +O w[-2]=6 w[-1]=Words w[0]=by w[1]=Wretch w[2]=32 wl[-2]=6 wl[-1]=words wl[0]=by wl[1]=wretch wl[2]=32 pos[-2]=CD pos[-1]=CD pos[0]=IN pos[1]=JJ pos[2]=JJ chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=D shape[-1]=ULLLL shape[0]=LL shape[1]=ULLLLL shape[2]=DD shaped[-2]=D shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=D type[-2]=AllDigit type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllDigit p1[-2]=6 p1[-1]=W p1[0]=b p1[1]=W p1[2]=3 p2[-2]= p2[-1]=Wo p2[0]=by p2[1]=Wr p2[2]=32 p3[-2]= p3[-1]=Wor p3[0]= p3[1]=Wre p3[2]= p4[-2]= p4[-1]=Word p4[0]= p4[1]=Wret p4[2]= s1[-2]=6 s1[-1]=s s1[0]=y s1[1]=h s1[2]=2 s2[-2]= s2[-1]=ds s2[0]=by s2[1]=ch s2[2]=32 s3[-2]= s3[-1]=rds s3[0]= s3[1]=tch s3[2]= s4[-2]= s4[-1]=ords s4[0]= s4[1]=etch s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=yes 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=yes ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[-2]=no ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=no cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=6|Words w[-1]|w[0]=Words|by w[0]|w[1]=by|Wretch w[1]|w[2]=Wretch|32 pos[-2]|pos[-1]=CD|CD pos[-1]|pos[0]=CD|IN pos[0]|pos[1]=IN|JJ pos[1]|pos[2]=JJ|JJ chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=D|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|D type[-2]|type[-1]=AllDigit|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllDigit w[-4..-1]=play w[-4..-1]=6 w[-4..-1]=Words w[1..4]=Wretch w[1..4]=32 w[1..4]=on w[1..4]=Spotify +artist w[-2]=Words w[-1]=by w[0]=Wretch w[1]=32 w[2]=on wl[-2]=words wl[-1]=by wl[0]=wretch wl[1]=32 wl[2]=on pos[-2]=CD pos[-1]=IN pos[0]=JJ pos[1]=JJ pos[2]=IN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=DD shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=D shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllDigit type[2]=AllLetter p1[-2]=W p1[-1]=b p1[0]=W p1[1]=3 p1[2]=o p2[-2]=Wo p2[-1]=by p2[0]=Wr p2[1]=32 p2[2]=on p3[-2]=Wor p3[-1]= p3[0]=Wre p3[1]= p3[2]= p4[-2]=Word p4[-1]= p4[0]=Wret p4[1]= p4[2]= s1[-2]=s s1[-1]=y s1[0]=h s1[1]=2 s1[2]=n s2[-2]=ds s2[-1]=by s2[0]=ch s2[1]=32 s2[2]=on s3[-2]=rds s3[-1]= s3[0]=tch s3[1]= s3[2]= s4[-2]=ords s4[-1]= s4[0]=etch s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=yes 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=yes ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=no ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Words|by w[-1]|w[0]=by|Wretch w[0]|w[1]=Wretch|32 w[1]|w[2]=32|on pos[-2]|pos[-1]=CD|IN pos[-1]|pos[0]=IN|JJ pos[0]|pos[1]=JJ|JJ pos[1]|pos[2]=JJ|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|D shaped[1]|shaped[2]=D|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllDigit type[1]|type[2]=AllDigit|AllLetter w[-4..-1]=play w[-4..-1]=6 w[-4..-1]=Words w[-4..-1]=by w[1..4]=32 w[1..4]=on w[1..4]=Spotify +artist w[-2]=by w[-1]=Wretch w[0]=32 w[1]=on w[2]=Spotify wl[-2]=by wl[-1]=wretch wl[0]=32 wl[1]=on wl[2]=spotify pos[-2]=IN pos[-1]=JJ pos[0]=JJ pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=DD shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=D shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllDigit type[1]=AllLetter type[2]=InitUpper p1[-2]=b p1[-1]=W p1[0]=3 p1[1]=o p1[2]=S p2[-2]=by p2[-1]=Wr p2[0]=32 p2[1]=on p2[2]=Sp p3[-2]= p3[-1]=Wre p3[0]= p3[1]= p3[2]=Spo p4[-2]= p4[-1]=Wret p4[0]= p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=h s1[0]=2 s1[1]=n s1[2]=y s2[-2]=by s2[-1]=ch s2[0]=32 s2[1]=on s2[2]=fy s3[-2]= s3[-1]=tch s3[0]= s3[1]= s3[2]=ify s4[-2]= s4[-1]=etch s4[0]= s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=yes 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=yes ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=no ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Wretch w[-1]|w[0]=Wretch|32 w[0]|w[1]=32|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=IN|JJ pos[-1]|pos[0]=JJ|JJ pos[0]|pos[1]=JJ|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|D shaped[0]|shaped[1]=D|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllDigit type[0]|type[1]=AllDigit|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=6 w[-4..-1]=Words w[-4..-1]=by w[-4..-1]=Wretch w[1..4]=on w[1..4]=Spotify +O w[-2]=Wretch w[-1]=32 w[0]=on w[1]=Spotify wl[-2]=wretch wl[-1]=32 wl[0]=on wl[1]=spotify pos[-2]=JJ pos[-1]=JJ pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULLLLL shape[-1]=DD shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=D shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllDigit type[0]=AllLetter type[1]=InitUpper p1[-2]=W p1[-1]=3 p1[0]=o p1[1]=S p2[-2]=Wr p2[-1]=32 p2[0]=on p2[1]=Sp p3[-2]=Wre p3[-1]= p3[0]= p3[1]=Spo p4[-2]=Wret p4[-1]= p4[0]= p4[1]=Spot s1[-2]=h s1[-1]=2 s1[0]=n s1[1]=y s2[-2]=ch s2[-1]=32 s2[0]=on s2[1]=fy s3[-2]=tch s3[-1]= s3[0]= s3[1]=ify s4[-2]=etch s4[-1]= s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=yes 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=yes ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=no ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Wretch|32 w[-1]|w[0]=32|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=JJ|JJ pos[-1]|pos[0]=JJ|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|D shaped[-1]|shaped[0]=D|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllDigit type[-1]|type[0]=AllDigit|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=Words w[-4..-1]=by w[-4..-1]=Wretch w[-4..-1]=32 w[1..4]=Spotify +service w[-2]=32 w[-1]=on w[0]=Spotify wl[-2]=32 wl[-1]=on wl[0]=spotify pos[-2]=JJ pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=DD shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=D shaped[-1]=L shaped[0]=UL type[-2]=AllDigit type[-1]=AllLetter type[0]=InitUpper p1[-2]=3 p1[-1]=o p1[0]=S p2[-2]=32 p2[-1]=on p2[0]=Sp p3[-2]= p3[-1]= p3[0]=Spo p4[-2]= p4[-1]= p4[0]=Spot s1[-2]=2 s1[-1]=n s1[0]=y s2[-2]=32 s2[-1]=on s2[0]=fy s3[-2]= s3[-1]= s3[0]=ify s4[-2]= s4[-1]= s4[0]=tify 2d[-2]=yes 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=yes ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=no cl[-1]=yes cl[0]=yes ca[-2]=no ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=32|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=JJ|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=D|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllDigit|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Wretch w[-4..-1]=32 w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=Led w[2]=Zeppelin wl[0]=play wl[1]=led wl[2]=zeppelin pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=L p1[2]=Z p2[0]=pl p2[1]=Le p2[2]=Ze p3[0]=pla p3[1]=Led p3[2]=Zep p4[0]=play p4[1]= p4[2]=Zepp s1[0]=y s1[1]=d s1[2]=n s2[0]=ay s2[1]=ed s2[2]=in s3[0]=lay s3[1]=Led s3[2]=lin s4[0]=play s4[1]= s4[2]=elin 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Led w[1]|w[2]=Led|Zeppelin pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Led w[1..4]=Zeppelin w[1..4]=two __BOS__ +album w[-1]=play w[0]=Led w[1]=Zeppelin w[2]=two wl[-1]=play wl[0]=led wl[1]=zeppelin wl[2]=two pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLLLL shape[2]=LLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=L p1[1]=Z p1[2]=t p2[-1]=pl p2[0]=Le p2[1]=Ze p2[2]=tw p3[-1]=pla p3[0]=Led p3[1]=Zep p3[2]=two p4[-1]=play p4[0]= p4[1]=Zepp p4[2]= s1[-1]=y s1[0]=d s1[1]=n s1[2]=o s2[-1]=ay s2[0]=ed s2[1]=in s2[2]=wo s3[-1]=lay s3[0]=Led s3[1]=lin s3[2]=two s4[-1]=play s4[0]= s4[1]=elin s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Led w[0]|w[1]=Led|Zeppelin w[1]|w[2]=Zeppelin|two pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Zeppelin w[1..4]=two +album w[-2]=play w[-1]=Led w[0]=Zeppelin w[1]=two wl[-2]=play wl[-1]=led wl[0]=zeppelin wl[1]=two pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLLLL shape[1]=LLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-2]=p p1[-1]=L p1[0]=Z p1[1]=t p2[-2]=pl p2[-1]=Le p2[0]=Ze p2[1]=tw p3[-2]=pla p3[-1]=Led p3[0]=Zep p3[1]=two p4[-2]=play p4[-1]= p4[0]=Zepp p4[1]= s1[-2]=y s1[-1]=d s1[0]=n s1[1]=o s2[-2]=ay s2[-1]=ed s2[0]=in s2[1]=wo s3[-2]=lay s3[-1]=Led s3[0]=lin s3[1]=two s4[-2]=play s4[-1]= s4[0]=elin s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Led w[-1]|w[0]=Led|Zeppelin w[0]|w[1]=Zeppelin|two pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Led w[1..4]=two +album w[-2]=Led w[-1]=Zeppelin w[0]=two wl[-2]=led wl[-1]=zeppelin wl[0]=two pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=ULLLLLLL shape[0]=LLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=L p1[-1]=Z p1[0]=t p2[-2]=Le p2[-1]=Ze p2[0]=tw p3[-2]=Led p3[-1]=Zep p3[0]=two p4[-2]= p4[-1]=Zepp p4[0]= s1[-2]=d s1[-1]=n s1[0]=o s2[-2]=ed s2[-1]=in s2[0]=wo s3[-2]=Led s3[-1]=lin s3[0]=two s4[-2]= s4[-1]=elin s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Led|Zeppelin w[-1]|w[0]=Zeppelin|two pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Led w[-4..-1]=Zeppelin __EOS__ + +O w[0]=reproduce w[1]=a w[2]=the wl[0]=reproduce wl[1]=a wl[2]=the pos[0]=VB pos[1]=DT pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLLLLL shape[1]=L shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=a p1[2]=t p2[0]=re p2[1]= p2[2]=th p3[0]=rep p3[1]= p3[2]=the p4[0]=repr p4[1]= p4[2]= s1[0]=e s1[1]=a s1[2]=e s2[0]=ce s2[1]= s2[2]=he s3[0]=uce s3[1]= s3[2]=the s4[0]=duce s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=reproduce|a w[1]|w[2]=a|the pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=the w[1..4]=track w[1..4]=Monster __BOS__ +O w[-1]=reproduce w[0]=a w[1]=the w[2]=track wl[-1]=reproduce wl[0]=a wl[1]=the wl[2]=track pos[-1]=VB pos[0]=DT pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLLLLLL shape[0]=L shape[1]=LLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=r p1[0]=a p1[1]=t p1[2]=t p2[-1]=re p2[0]= p2[1]=th p2[2]=tr p3[-1]=rep p3[0]= p3[1]=the p3[2]=tra p4[-1]=repr p4[0]= p4[1]= p4[2]=trac s1[-1]=e s1[0]=a s1[1]=e s1[2]=k s2[-1]=ce s2[0]= s2[1]=he s2[2]=ck s3[-1]=uce s3[0]= s3[1]=the s3[2]=ack s4[-1]=duce s4[0]= s4[1]= s4[2]=rack 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=reproduce|a w[0]|w[1]=a|the w[1]|w[2]=the|track pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=reproduce w[1..4]=the w[1..4]=track w[1..4]=Monster w[1..4]=by +O w[-2]=reproduce w[-1]=a w[0]=the w[1]=track w[2]=Monster wl[-2]=reproduce wl[-1]=a wl[0]=the wl[1]=track wl[2]=monster pos[-2]=VB pos[-1]=DT pos[0]=DT pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLLLLLLL shape[-1]=L shape[0]=LLL shape[1]=LLLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=r p1[-1]=a p1[0]=t p1[1]=t p1[2]=M p2[-2]=re p2[-1]= p2[0]=th p2[1]=tr p2[2]=Mo p3[-2]=rep p3[-1]= p3[0]=the p3[1]=tra p3[2]=Mon p4[-2]=repr p4[-1]= p4[0]= p4[1]=trac p4[2]=Mons s1[-2]=e s1[-1]=a s1[0]=e s1[1]=k s1[2]=r s2[-2]=ce s2[-1]= s2[0]=he s2[1]=ck s2[2]=er s3[-2]=uce s3[-1]= s3[0]=the s3[1]=ack s3[2]=ter s4[-2]=duce s4[-1]= s4[0]= s4[1]=rack s4[2]=ster 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=reproduce|a w[-1]|w[0]=a|the w[0]|w[1]=the|track w[1]|w[2]=track|Monster pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=reproduce w[-4..-1]=a w[1..4]=track w[1..4]=Monster w[1..4]=by w[1..4]=Rihanna +O w[-2]=a w[-1]=the w[0]=track w[1]=Monster w[2]=by wl[-2]=a wl[-1]=the wl[0]=track wl[1]=monster wl[2]=by pos[-2]=DT pos[-1]=DT pos[0]=NN pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=L shape[-1]=LLL shape[0]=LLLLL shape[1]=ULLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=a p1[-1]=t p1[0]=t p1[1]=M p1[2]=b p2[-2]= p2[-1]=th p2[0]=tr p2[1]=Mo p2[2]=by p3[-2]= p3[-1]=the p3[0]=tra p3[1]=Mon p3[2]= p4[-2]= p4[-1]= p4[0]=trac p4[1]=Mons p4[2]= s1[-2]=a s1[-1]=e s1[0]=k s1[1]=r s1[2]=y s2[-2]= s2[-1]=he s2[0]=ck s2[1]=er s2[2]=by s3[-2]= s3[-1]=the s3[0]=ack s3[1]=ter s3[2]= s4[-2]= s4[-1]= s4[0]=rack s4[1]=ster s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=a|the w[-1]|w[0]=the|track w[0]|w[1]=track|Monster w[1]|w[2]=Monster|by pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=reproduce w[-4..-1]=a w[-4..-1]=the w[1..4]=Monster w[1..4]=by w[1..4]=Rihanna w[1..4]=ft +song w[-2]=the w[-1]=track w[0]=Monster w[1]=by w[2]=Rihanna wl[-2]=the wl[-1]=track wl[0]=monster wl[1]=by wl[2]=rihanna pos[-2]=DT pos[-1]=NN pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLLLL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=t p1[0]=M p1[1]=b p1[2]=R p2[-2]=th p2[-1]=tr p2[0]=Mo p2[1]=by p2[2]=Ri p3[-2]=the p3[-1]=tra p3[0]=Mon p3[1]= p3[2]=Rih p4[-2]= p4[-1]=trac p4[0]=Mons p4[1]= p4[2]=Riha s1[-2]=e s1[-1]=k s1[0]=r s1[1]=y s1[2]=a s2[-2]=he s2[-1]=ck s2[0]=er s2[1]=by s2[2]=na s3[-2]=the s3[-1]=ack s3[0]=ter s3[1]= s3[2]=nna s4[-2]= s4[-1]=rack s4[0]=ster s4[1]= s4[2]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|track w[-1]|w[0]=track|Monster w[0]|w[1]=Monster|by w[1]|w[2]=by|Rihanna pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=reproduce w[-4..-1]=a w[-4..-1]=the w[-4..-1]=track w[1..4]=by w[1..4]=Rihanna w[1..4]=ft w[1..4]=Eminem +O w[-2]=track w[-1]=Monster w[0]=by w[1]=Rihanna w[2]=ft wl[-2]=track wl[-1]=monster wl[0]=by wl[1]=rihanna wl[2]=ft pos[-2]=NN pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLLL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=t p1[-1]=M p1[0]=b p1[1]=R p1[2]=f p2[-2]=tr p2[-1]=Mo p2[0]=by p2[1]=Ri p2[2]=ft p3[-2]=tra p3[-1]=Mon p3[0]= p3[1]=Rih p3[2]= p4[-2]=trac p4[-1]=Mons p4[0]= p4[1]=Riha p4[2]= s1[-2]=k s1[-1]=r s1[0]=y s1[1]=a s1[2]=t s2[-2]=ck s2[-1]=er s2[0]=by s2[1]=na s2[2]=ft s3[-2]=ack s3[-1]=ter s3[0]= s3[1]=nna s3[2]= s4[-2]=rack s4[-1]=ster s4[0]= s4[1]=anna s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=track|Monster w[-1]|w[0]=Monster|by w[0]|w[1]=by|Rihanna w[1]|w[2]=Rihanna|ft pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=a w[-4..-1]=the w[-4..-1]=track w[-4..-1]=Monster w[1..4]=Rihanna w[1..4]=ft w[1..4]=Eminem +artist w[-2]=Monster w[-1]=by w[0]=Rihanna w[1]=ft w[2]=Eminem wl[-2]=monster wl[-1]=by wl[0]=rihanna wl[1]=ft wl[2]=eminem pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NN pos[2]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=M p1[-1]=b p1[0]=R p1[1]=f p1[2]=E p2[-2]=Mo p2[-1]=by p2[0]=Ri p2[1]=ft p2[2]=Em p3[-2]=Mon p3[-1]= p3[0]=Rih p3[1]= p3[2]=Emi p4[-2]=Mons p4[-1]= p4[0]=Riha p4[1]= p4[2]=Emin s1[-2]=r s1[-1]=y s1[0]=a s1[1]=t s1[2]=m s2[-2]=er s2[-1]=by s2[0]=na s2[1]=ft s2[2]=em s3[-2]=ter s3[-1]= s3[0]=nna s3[1]= s3[2]=nem s4[-2]=ster s4[-1]= s4[0]=anna s4[1]= s4[2]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Monster|by w[-1]|w[0]=by|Rihanna w[0]|w[1]=Rihanna|ft w[1]|w[2]=ft|Eminem pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=track w[-4..-1]=Monster w[-4..-1]=by w[1..4]=ft w[1..4]=Eminem +O w[-2]=by w[-1]=Rihanna w[0]=ft w[1]=Eminem wl[-2]=by wl[-1]=rihanna wl[0]=ft wl[1]=eminem pos[-2]=IN pos[-1]=NNP pos[0]=NN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=b p1[-1]=R p1[0]=f p1[1]=E p2[-2]=by p2[-1]=Ri p2[0]=ft p2[1]=Em p3[-2]= p3[-1]=Rih p3[0]= p3[1]=Emi p4[-2]= p4[-1]=Riha p4[0]= p4[1]=Emin s1[-2]=y s1[-1]=a s1[0]=t s1[1]=m s2[-2]=by s2[-1]=na s2[0]=ft s2[1]=em s3[-2]= s3[-1]=nna s3[0]= s3[1]=nem s4[-2]= s4[-1]=anna s4[0]= s4[1]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=by|Rihanna w[-1]|w[0]=Rihanna|ft w[0]|w[1]=ft|Eminem pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=track w[-4..-1]=Monster w[-4..-1]=by w[-4..-1]=Rihanna w[1..4]=Eminem +artist w[-2]=Rihanna w[-1]=ft w[0]=Eminem wl[-2]=rihanna wl[-1]=ft wl[0]=eminem pos[-2]=NNP pos[-1]=NN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=R p1[-1]=f p1[0]=E p2[-2]=Ri p2[-1]=ft p2[0]=Em p3[-2]=Rih p3[-1]= p3[0]=Emi p4[-2]=Riha p4[-1]= p4[0]=Emin s1[-2]=a s1[-1]=t s1[0]=m s2[-2]=na s2[-1]=ft s2[0]=em s3[-2]=nna s3[-1]= s3[0]=nem s4[-2]=anna s4[-1]= s4[0]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Rihanna|ft w[-1]|w[0]=ft|Eminem pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Monster w[-4..-1]=by w[-4..-1]=Rihanna w[-4..-1]=ft __EOS__ + +O w[0]=I w[1]=want w[2]=you wl[0]=i wl[1]=want wl[2]=you pos[0]=PRP pos[1]=VBP pos[2]=PRP chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LLL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=y p2[0]= p2[1]=wa p2[2]=yo p3[0]= p3[1]=wan p3[2]=you p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=u s2[0]= s2[1]=nt s2[2]=ou s3[0]= s3[1]=ant s3[2]=you s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|you pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|PRP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=you w[1..4]=to w[1..4]=play __BOS__ +O w[-1]=I w[0]=want w[1]=you w[2]=to wl[-1]=i wl[0]=want wl[1]=you wl[2]=to pos[-1]=PRP pos[0]=VBP pos[1]=PRP pos[2]=TO chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LLL shape[2]=LL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=y p1[2]=t p2[-1]= p2[0]=wa p2[1]=yo p2[2]=to p3[-1]= p3[0]=wan p3[1]=you p3[2]= p4[-1]= p4[0]=want p4[1]= p4[2]= s1[-1]=I s1[0]=t s1[1]=u s1[2]=o s2[-1]= s2[0]=nt s2[1]=ou s2[2]=to s3[-1]= s3[0]=ant s3[1]=you s3[2]= s4[-1]= s4[0]=want s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|you w[1]|w[2]=you|to pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|PRP pos[1]|pos[2]=PRP|TO chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=you w[1..4]=to w[1..4]=play w[1..4]=music +O w[-2]=I w[-1]=want w[0]=you w[1]=to w[2]=play wl[-2]=i wl[-1]=want wl[0]=you wl[1]=to wl[2]=play pos[-2]=PRP pos[-1]=VBP pos[0]=PRP pos[1]=TO pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LLL shape[1]=LL shape[2]=LLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=y p1[1]=t p1[2]=p p2[-2]= p2[-1]=wa p2[0]=yo p2[1]=to p2[2]=pl p3[-2]= p3[-1]=wan p3[0]=you p3[1]= p3[2]=pla p4[-2]= p4[-1]=want p4[0]= p4[1]= p4[2]=play s1[-2]=I s1[-1]=t s1[0]=u s1[1]=o s1[2]=y s2[-2]= s2[-1]=nt s2[0]=ou s2[1]=to s2[2]=ay s3[-2]= s3[-1]=ant s3[0]=you s3[1]= s3[2]=lay s4[-2]= s4[-1]=want s4[0]= s4[1]= s4[2]=play 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|you w[0]|w[1]=you|to w[1]|w[2]=to|play pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|PRP pos[0]|pos[1]=PRP|TO pos[1]|pos[2]=TO|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=to w[1..4]=play w[1..4]=music +O w[-2]=want w[-1]=you w[0]=to w[1]=play w[2]=music wl[-2]=want wl[-1]=you wl[0]=to wl[1]=play wl[2]=music pos[-2]=VBP pos[-1]=PRP pos[0]=TO pos[1]=VB pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=y p1[0]=t p1[1]=p p1[2]=m p2[-2]=wa p2[-1]=yo p2[0]=to p2[1]=pl p2[2]=mu p3[-2]=wan p3[-1]=you p3[0]= p3[1]=pla p3[2]=mus p4[-2]=want p4[-1]= p4[0]= p4[1]=play p4[2]=musi s1[-2]=t s1[-1]=u s1[0]=o s1[1]=y s1[2]=c s2[-2]=nt s2[-1]=ou s2[0]=to s2[1]=ay s2[2]=ic s3[-2]=ant s3[-1]=you s3[0]= s3[1]=lay s3[2]=sic s4[-2]=want s4[-1]= s4[0]= s4[1]=play s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|you w[-1]|w[0]=you|to w[0]|w[1]=to|play w[1]|w[2]=play|music pos[-2]|pos[-1]=VBP|PRP pos[-1]|pos[0]=PRP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=you w[1..4]=play w[1..4]=music +O w[-2]=you w[-1]=to w[0]=play w[1]=music wl[-2]=you wl[-1]=to wl[0]=play wl[1]=music pos[-2]=PRP pos[-1]=TO pos[0]=VB pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=y p1[-1]=t p1[0]=p p1[1]=m p2[-2]=yo p2[-1]=to p2[0]=pl p2[1]=mu p3[-2]=you p3[-1]= p3[0]=pla p3[1]=mus p4[-2]= p4[-1]= p4[0]=play p4[1]=musi s1[-2]=u s1[-1]=o s1[0]=y s1[1]=c s2[-2]=ou s2[-1]=to s2[0]=ay s2[1]=ic s3[-2]=you s3[-1]= s3[0]=lay s3[1]=sic s4[-2]= s4[-1]= s4[0]=play s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=you|to w[-1]|w[0]=to|play w[0]|w[1]=play|music pos[-2]|pos[-1]=PRP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=you w[-4..-1]=to w[1..4]=music +O w[-2]=to w[-1]=play w[0]=music wl[-2]=to wl[-1]=play wl[0]=music pos[-2]=TO pos[-1]=VB pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=p p1[0]=m p2[-2]=to p2[-1]=pl p2[0]=mu p3[-2]= p3[-1]=pla p3[0]=mus p4[-2]= p4[-1]=play p4[0]=musi s1[-2]=o s1[-1]=y s1[0]=c s2[-2]=to s2[-1]=ay s2[0]=ic s3[-2]= s3[-1]=lay s3[0]=sic s4[-2]= s4[-1]=play s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|play w[-1]|w[0]=play|music pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=want w[-4..-1]=you w[-4..-1]=to w[-4..-1]=play __EOS__ + +O w[0]=Play w[1]=Five w[2]=Seconds wl[0]=play wl[1]=five wl[2]=seconds pos[0]=VB pos[1]=CD pos[2]=CD chk[0]=O chk[1]=I chk[2]=I shape[0]=ULLL shape[1]=ULLL shape[2]=ULLLLLL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[0]=P p1[1]=F p1[2]=S p2[0]=Pl p2[1]=Fi p2[2]=Se p3[0]=Pla p3[1]=Fiv p3[2]=Sec p4[0]=Play p4[1]=Five p4[2]=Seco s1[0]=y s1[1]=e s1[2]=s s2[0]=ay s2[1]=ve s2[2]=ds s3[0]=lay s3[1]=ive s3[2]=nds s4[0]=Play s4[1]=Five s4[2]=onds 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=Play|Five w[1]|w[2]=Five|Seconds pos[0]|pos[1]=VB|CD pos[1]|pos[2]=CD|CD chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Five w[1..4]=Seconds w[1..4]=of w[1..4]=Summer __BOS__ +artist w[-1]=Play w[0]=Five w[1]=Seconds w[2]=of wl[-1]=play wl[0]=five wl[1]=seconds wl[2]=of pos[-1]=VB pos[0]=CD pos[1]=CD pos[2]=CD chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=ULLL shape[0]=ULLL shape[1]=ULLLLLL shape[2]=LL shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=P p1[0]=F p1[1]=S p1[2]=o p2[-1]=Pl p2[0]=Fi p2[1]=Se p2[2]=of p3[-1]=Pla p3[0]=Fiv p3[1]=Sec p3[2]= p4[-1]=Play p4[0]=Five p4[1]=Seco p4[2]= s1[-1]=y s1[0]=e s1[1]=s s1[2]=f s2[-1]=ay s2[0]=ve s2[1]=ds s2[2]=of s3[-1]=lay s3[0]=ive s3[1]=nds s3[2]= s4[-1]=Play s4[0]=Five s4[1]=onds s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=Play|Five w[0]|w[1]=Five|Seconds w[1]|w[2]=Seconds|of pos[-1]|pos[0]=VB|CD pos[0]|pos[1]=CD|CD pos[1]|pos[2]=CD|CD chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Play w[1..4]=Seconds w[1..4]=of w[1..4]=Summer +artist w[-2]=Play w[-1]=Five w[0]=Seconds w[1]=of w[2]=Summer wl[-2]=play wl[-1]=five wl[0]=seconds wl[1]=of wl[2]=summer pos[-2]=VB pos[-1]=CD pos[0]=CD pos[1]=CD pos[2]=CD chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=ULLL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=P p1[-1]=F p1[0]=S p1[1]=o p1[2]=S p2[-2]=Pl p2[-1]=Fi p2[0]=Se p2[1]=of p2[2]=Su p3[-2]=Pla p3[-1]=Fiv p3[0]=Sec p3[1]= p3[2]=Sum p4[-2]=Play p4[-1]=Five p4[0]=Seco p4[1]= p4[2]=Summ s1[-2]=y s1[-1]=e s1[0]=s s1[1]=f s1[2]=r s2[-2]=ay s2[-1]=ve s2[0]=ds s2[1]=of s2[2]=er s3[-2]=lay s3[-1]=ive s3[0]=nds s3[1]= s3[2]=mer s4[-2]=Play s4[-1]=Five s4[0]=onds s4[1]= s4[2]=mmer 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Play|Five w[-1]|w[0]=Five|Seconds w[0]|w[1]=Seconds|of w[1]|w[2]=of|Summer pos[-2]|pos[-1]=VB|CD pos[-1]|pos[0]=CD|CD pos[0]|pos[1]=CD|CD pos[1]|pos[2]=CD|CD chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Play w[-4..-1]=Five w[1..4]=of w[1..4]=Summer +artist w[-2]=Five w[-1]=Seconds w[0]=of w[1]=Summer wl[-2]=five wl[-1]=seconds wl[0]=of wl[1]=summer pos[-2]=CD pos[-1]=CD pos[0]=CD pos[1]=CD chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=F p1[-1]=S p1[0]=o p1[1]=S p2[-2]=Fi p2[-1]=Se p2[0]=of p2[1]=Su p3[-2]=Fiv p3[-1]=Sec p3[0]= p3[1]=Sum p4[-2]=Five p4[-1]=Seco p4[0]= p4[1]=Summ s1[-2]=e s1[-1]=s s1[0]=f s1[1]=r s2[-2]=ve s2[-1]=ds s2[0]=of s2[1]=er s3[-2]=ive s3[-1]=nds s3[0]= s3[1]=mer s4[-2]=Five s4[-1]=onds s4[0]= s4[1]=mmer 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Five|Seconds w[-1]|w[0]=Seconds|of w[0]|w[1]=of|Summer pos[-2]|pos[-1]=CD|CD pos[-1]|pos[0]=CD|CD pos[0]|pos[1]=CD|CD chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=Play w[-4..-1]=Five w[-4..-1]=Seconds w[1..4]=Summer +artist w[-2]=Seconds w[-1]=of w[0]=Summer wl[-2]=seconds wl[-1]=of wl[0]=summer pos[-2]=CD pos[-1]=CD pos[0]=CD chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=S p1[-1]=o p1[0]=S p2[-2]=Se p2[-1]=of p2[0]=Su p3[-2]=Sec p3[-1]= p3[0]=Sum p4[-2]=Seco p4[-1]= p4[0]=Summ s1[-2]=s s1[-1]=f s1[0]=r s2[-2]=ds s2[-1]=of s2[0]=er s3[-2]=nds s3[-1]= s3[0]=mer s4[-2]=onds s4[-1]= s4[0]=mmer 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Seconds|of w[-1]|w[0]=of|Summer pos[-2]|pos[-1]=CD|CD pos[-1]|pos[0]=CD|CD chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Play w[-4..-1]=Five w[-4..-1]=Seconds w[-4..-1]=of __EOS__ + +O w[0]=play w[1]=song w[2]=by wl[0]=play wl[1]=song wl[2]=by pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=son p3[2]= p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=y s2[0]=ay s2[1]=ng s2[2]=by s3[0]=lay s3[1]=ong s3[2]= s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|by pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=song w[1..4]=by w[1..4]=Nicki w[1..4]=Minaj __BOS__ +O w[-1]=play w[0]=song w[1]=by w[2]=Nicki wl[-1]=play wl[0]=song wl[1]=by wl[2]=nicki pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=N p2[-1]=pl p2[0]=so p2[1]=by p2[2]=Ni p3[-1]=pla p3[0]=son p3[1]= p3[2]=Nic p4[-1]=play p4[0]=song p4[1]= p4[2]=Nick s1[-1]=y s1[0]=g s1[1]=y s1[2]=i s2[-1]=ay s2[0]=ng s2[1]=by s2[2]=ki s3[-1]=lay s3[0]=ong s3[1]= s3[2]=cki s4[-1]=play s4[0]=song s4[1]= s4[2]=icki 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|by w[1]|w[2]=by|Nicki pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Nicki w[1..4]=Minaj +O w[-2]=play w[-1]=song w[0]=by w[1]=Nicki w[2]=Minaj wl[-2]=play wl[-1]=song wl[0]=by wl[1]=nicki wl[2]=minaj pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=b p1[1]=N p1[2]=M p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=Ni p2[2]=Mi p3[-2]=pla p3[-1]=son p3[0]= p3[1]=Nic p3[2]=Min p4[-2]=play p4[-1]=song p4[0]= p4[1]=Nick p4[2]=Mina s1[-2]=y s1[-1]=g s1[0]=y s1[1]=i s1[2]=j s2[-2]=ay s2[-1]=ng s2[0]=by s2[1]=ki s2[2]=aj s3[-2]=lay s3[-1]=ong s3[0]= s3[1]=cki s3[2]=naj s4[-2]=play s4[-1]=song s4[0]= s4[1]=icki s4[2]=inaj 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|by w[0]|w[1]=by|Nicki w[1]|w[2]=Nicki|Minaj pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=Nicki w[1..4]=Minaj +artist w[-2]=song w[-1]=by w[0]=Nicki w[1]=Minaj wl[-2]=song wl[-1]=by wl[0]=nicki wl[1]=minaj pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=b p1[0]=N p1[1]=M p2[-2]=so p2[-1]=by p2[0]=Ni p2[1]=Mi p3[-2]=son p3[-1]= p3[0]=Nic p3[1]=Min p4[-2]=song p4[-1]= p4[0]=Nick p4[1]=Mina s1[-2]=g s1[-1]=y s1[0]=i s1[1]=j s2[-2]=ng s2[-1]=by s2[0]=ki s2[1]=aj s3[-2]=ong s3[-1]= s3[0]=cki s3[1]=naj s4[-2]=song s4[-1]= s4[0]=icki s4[1]=inaj 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|by w[-1]|w[0]=by|Nicki w[0]|w[1]=Nicki|Minaj pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by w[1..4]=Minaj +artist w[-2]=by w[-1]=Nicki w[0]=Minaj wl[-2]=by wl[-1]=nicki wl[0]=minaj pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=N p1[0]=M p2[-2]=by p2[-1]=Ni p2[0]=Mi p3[-2]= p3[-1]=Nic p3[0]=Min p4[-2]= p4[-1]=Nick p4[0]=Mina s1[-2]=y s1[-1]=i s1[0]=j s2[-2]=by s2[-1]=ki s2[0]=aj s3[-2]= s3[-1]=cki s3[0]=naj s4[-2]= s4[-1]=icki s4[0]=inaj 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Nicki w[-1]|w[0]=Nicki|Minaj pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by w[-4..-1]=Nicki __EOS__ + +O w[0]=let's w[1]=hear w[2]=The wl[0]=let's wl[1]=hear wl[2]=the pos[0]=VB pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=I shape[0]=LLL'L shape[1]=LLLL shape[2]=ULL shaped[0]=L'L shaped[1]=L shaped[2]=UL type[0]=NO type[1]=AllLetter type[2]=InitUpper p1[0]=l p1[1]=h p1[2]=T p2[0]=le p2[1]=he p2[2]=Th p3[0]=let p3[1]=hea p3[2]=The p4[0]=let' p4[1]=hear p4[2]= s1[0]=s s1[1]=r s1[2]=e s2[0]='s s2[1]=ar s2[2]=he s3[0]=t's s3[1]=ear s3[2]=The s4[0]=et's s4[1]=hear s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=let's|hear w[1]|w[2]=hear|The pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L'L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=NO|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=hear w[1..4]=The w[1..4]=Beatles __BOS__ +O w[-1]=let's w[0]=hear w[1]=The w[2]=Beatles wl[-1]=let's wl[0]=hear wl[1]=the wl[2]=beatles pos[-1]=VB pos[0]=PRP pos[1]=VB pos[2]=VB chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLL'L shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLLL shaped[-1]=L'L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=NO type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=l p1[0]=h p1[1]=T p1[2]=B p2[-1]=le p2[0]=he p2[1]=Th p2[2]=Be p3[-1]=let p3[0]=hea p3[1]=The p3[2]=Bea p4[-1]=let' p4[0]=hear p4[1]= p4[2]=Beat s1[-1]=s s1[0]=r s1[1]=e s1[2]=s s2[-1]='s s2[0]=ar s2[1]=he s2[2]=es s3[-1]=t's s3[0]=ear s3[1]=The s3[2]=les s4[-1]=et's s4[0]=hear s4[1]= s4[2]=tles 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=let's|hear w[0]|w[1]=hear|The w[1]|w[2]=The|Beatles pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L'L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=NO|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=let's w[1..4]=The w[1..4]=Beatles +artist w[-2]=let's w[-1]=hear w[0]=The w[1]=Beatles wl[-2]=let's wl[-1]=hear wl[0]=the wl[1]=beatles pos[-2]=VB pos[-1]=PRP pos[0]=VB pos[1]=VB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLL'L shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLLL shaped[-2]=L'L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=NO type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=l p1[-1]=h p1[0]=T p1[1]=B p2[-2]=le p2[-1]=he p2[0]=Th p2[1]=Be p3[-2]=let p3[-1]=hea p3[0]=The p3[1]=Bea p4[-2]=let' p4[-1]=hear p4[0]= p4[1]=Beat s1[-2]=s s1[-1]=r s1[0]=e s1[1]=s s2[-2]='s s2[-1]=ar s2[0]=he s2[1]=es s3[-2]=t's s3[-1]=ear s3[0]=The s3[1]=les s4[-2]=et's s4[-1]=hear s4[0]= s4[1]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=let's|hear w[-1]|w[0]=hear|The w[0]|w[1]=The|Beatles pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L'L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=NO|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=let's w[-4..-1]=hear w[1..4]=Beatles +artist w[-2]=hear w[-1]=The w[0]=Beatles wl[-2]=hear wl[-1]=the wl[0]=beatles pos[-2]=PRP pos[-1]=VB pos[0]=VB chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=h p1[-1]=T p1[0]=B p2[-2]=he p2[-1]=Th p2[0]=Be p3[-2]=hea p3[-1]=The p3[0]=Bea p4[-2]=hear p4[-1]= p4[0]=Beat s1[-2]=r s1[-1]=e s1[0]=s s2[-2]=ar s2[-1]=he s2[0]=es s3[-2]=ear s3[-1]=The s3[0]=les s4[-2]=hear s4[-1]= s4[0]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=hear|The w[-1]|w[0]=The|Beatles pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|VB chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=let's w[-4..-1]=hear w[-4..-1]=The __EOS__ + +O w[0]=play w[1]=Do w[2]=I wl[0]=play wl[1]=do wl[2]=i pos[0]=VB pos[1]=VBP pos[2]=VBP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=UL shape[2]=U shaped[0]=L shaped[1]=UL shaped[2]=U type[0]=AllLetter type[1]=InitUpper type[2]=AllUpper p1[0]=p p1[1]=D p1[2]=I p2[0]=pl p2[1]=Do p2[2]= p3[0]=pla p3[1]= p3[2]= p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=o s1[2]=I s2[0]=ay s2[1]=Do s2[2]= s3[0]=lay s3[1]= s3[2]= s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=yes al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Do w[1]|w[2]=Do|I pos[0]|pos[1]=VB|VBP pos[1]|pos[2]=VBP|VBP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|U type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllUpper w[1..4]=Do w[1..4]=I w[1..4]=Wanna w[1..4]=Know __BOS__ +song w[-1]=play w[0]=Do w[1]=I w[2]=Wanna wl[-1]=play wl[0]=do wl[1]=i wl[2]=wanna pos[-1]=VB pos[0]=VBP pos[1]=VBP pos[2]=VBP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=UL shape[1]=U shape[2]=ULLLL shaped[-1]=L shaped[0]=UL shaped[1]=U shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllUpper type[2]=InitUpper p1[-1]=p p1[0]=D p1[1]=I p1[2]=W p2[-1]=pl p2[0]=Do p2[1]= p2[2]=Wa p3[-1]=pla p3[0]= p3[1]= p3[2]=Wan p4[-1]=play p4[0]= p4[1]= p4[2]=Wann s1[-1]=y s1[0]=o s1[1]=I s1[2]=a s2[-1]=ay s2[0]=Do s2[1]= s2[2]=na s3[-1]=lay s3[0]= s3[1]= s3[2]=nna s4[-1]=play s4[0]= s4[1]= s4[2]=anna 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=yes au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Do w[0]|w[1]=Do|I w[1]|w[2]=I|Wanna pos[-1]|pos[0]=VB|VBP pos[0]|pos[1]=VBP|VBP pos[1]|pos[2]=VBP|VBP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|U shaped[1]|shaped[2]=U|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllUpper type[1]|type[2]=AllUpper|InitUpper w[-4..-1]=play w[1..4]=I w[1..4]=Wanna w[1..4]=Know w[1..4]=by +song w[-2]=play w[-1]=Do w[0]=I w[1]=Wanna w[2]=Know wl[-2]=play wl[-1]=do wl[0]=i wl[1]=wanna wl[2]=know pos[-2]=VB pos[-1]=VBP pos[0]=VBP pos[1]=VBP pos[2]=VBP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=UL shape[0]=U shape[1]=ULLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=U shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=D p1[0]=I p1[1]=W p1[2]=K p2[-2]=pl p2[-1]=Do p2[0]= p2[1]=Wa p2[2]=Kn p3[-2]=pla p3[-1]= p3[0]= p3[1]=Wan p3[2]=Kno p4[-2]=play p4[-1]= p4[0]= p4[1]=Wann p4[2]=Know s1[-2]=y s1[-1]=o s1[0]=I s1[1]=a s1[2]=w s2[-2]=ay s2[-1]=Do s2[0]= s2[1]=na s2[2]=ow s3[-2]=lay s3[-1]= s3[0]= s3[1]=nna s3[2]=now s4[-2]=play s4[-1]= s4[0]= s4[1]=anna s4[2]=Know 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=yes au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Do w[-1]|w[0]=Do|I w[0]|w[1]=I|Wanna w[1]|w[2]=Wanna|Know pos[-2]|pos[-1]=VB|VBP pos[-1]|pos[0]=VBP|VBP pos[0]|pos[1]=VBP|VBP pos[1]|pos[2]=VBP|VBP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|U shaped[0]|shaped[1]=U|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllUpper type[0]|type[1]=AllUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Do w[1..4]=Wanna w[1..4]=Know w[1..4]=by w[1..4]=Arctic +song w[-2]=Do w[-1]=I w[0]=Wanna w[1]=Know w[2]=by wl[-2]=do wl[-1]=i wl[0]=wanna wl[1]=know wl[2]=by pos[-2]=VBP pos[-1]=VBP pos[0]=VBP pos[1]=VBP pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=UL shape[-1]=U shape[0]=ULLLL shape[1]=ULLL shape[2]=LL shaped[-2]=UL shaped[-1]=U shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=D p1[-1]=I p1[0]=W p1[1]=K p1[2]=b p2[-2]=Do p2[-1]= p2[0]=Wa p2[1]=Kn p2[2]=by p3[-2]= p3[-1]= p3[0]=Wan p3[1]=Kno p3[2]= p4[-2]= p4[-1]= p4[0]=Wann p4[1]=Know p4[2]= s1[-2]=o s1[-1]=I s1[0]=a s1[1]=w s1[2]=y s2[-2]=Do s2[-1]= s2[0]=na s2[1]=ow s2[2]=by s3[-2]= s3[-1]= s3[0]=nna s3[1]=now s3[2]= s4[-2]= s4[-1]= s4[0]=anna s4[1]=Know s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Do|I w[-1]|w[0]=I|Wanna w[0]|w[1]=Wanna|Know w[1]|w[2]=Know|by pos[-2]|pos[-1]=VBP|VBP pos[-1]|pos[0]=VBP|VBP pos[0]|pos[1]=VBP|VBP pos[1]|pos[2]=VBP|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|U shaped[-1]|shaped[0]=U|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllUpper type[-1]|type[0]=AllUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Do w[-4..-1]=I w[1..4]=Know w[1..4]=by w[1..4]=Arctic w[1..4]=Monkeys +song w[-2]=I w[-1]=Wanna w[0]=Know w[1]=by w[2]=Arctic wl[-2]=i wl[-1]=wanna wl[0]=know wl[1]=by wl[2]=arctic pos[-2]=VBP pos[-1]=VBP pos[0]=VBP pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=U shape[-1]=ULLLL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=U shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=I p1[-1]=W p1[0]=K p1[1]=b p1[2]=A p2[-2]= p2[-1]=Wa p2[0]=Kn p2[1]=by p2[2]=Ar p3[-2]= p3[-1]=Wan p3[0]=Kno p3[1]= p3[2]=Arc p4[-2]= p4[-1]=Wann p4[0]=Know p4[1]= p4[2]=Arct s1[-2]=I s1[-1]=a s1[0]=w s1[1]=y s1[2]=c s2[-2]= s2[-1]=na s2[0]=ow s2[1]=by s2[2]=ic s3[-2]= s3[-1]=nna s3[0]=now s3[1]= s3[2]=tic s4[-2]= s4[-1]=anna s4[0]=Know s4[1]= s4[2]=ctic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|Wanna w[-1]|w[0]=Wanna|Know w[0]|w[1]=Know|by w[1]|w[2]=by|Arctic pos[-2]|pos[-1]=VBP|VBP pos[-1]|pos[0]=VBP|VBP pos[0]|pos[1]=VBP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=U|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Do w[-4..-1]=I w[-4..-1]=Wanna w[1..4]=by w[1..4]=Arctic w[1..4]=Monkeys +O w[-2]=Wanna w[-1]=Know w[0]=by w[1]=Arctic w[2]=Monkeys wl[-2]=wanna wl[-1]=know wl[0]=by wl[1]=arctic wl[2]=monkeys pos[-2]=VBP pos[-1]=VBP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=W p1[-1]=K p1[0]=b p1[1]=A p1[2]=M p2[-2]=Wa p2[-1]=Kn p2[0]=by p2[1]=Ar p2[2]=Mo p3[-2]=Wan p3[-1]=Kno p3[0]= p3[1]=Arc p3[2]=Mon p4[-2]=Wann p4[-1]=Know p4[0]= p4[1]=Arct p4[2]=Monk s1[-2]=a s1[-1]=w s1[0]=y s1[1]=c s1[2]=s s2[-2]=na s2[-1]=ow s2[0]=by s2[1]=ic s2[2]=ys s3[-2]=nna s3[-1]=now s3[0]= s3[1]=tic s3[2]=eys s4[-2]=anna s4[-1]=Know s4[0]= s4[1]=ctic s4[2]=keys 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Wanna|Know w[-1]|w[0]=Know|by w[0]|w[1]=by|Arctic w[1]|w[2]=Arctic|Monkeys pos[-2]|pos[-1]=VBP|VBP pos[-1]|pos[0]=VBP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=Do w[-4..-1]=I w[-4..-1]=Wanna w[-4..-1]=Know w[1..4]=Arctic w[1..4]=Monkeys +artist w[-2]=Know w[-1]=by w[0]=Arctic w[1]=Monkeys wl[-2]=know wl[-1]=by wl[0]=arctic wl[1]=monkeys pos[-2]=VBP pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=K p1[-1]=b p1[0]=A p1[1]=M p2[-2]=Kn p2[-1]=by p2[0]=Ar p2[1]=Mo p3[-2]=Kno p3[-1]= p3[0]=Arc p3[1]=Mon p4[-2]=Know p4[-1]= p4[0]=Arct p4[1]=Monk s1[-2]=w s1[-1]=y s1[0]=c s1[1]=s s2[-2]=ow s2[-1]=by s2[0]=ic s2[1]=ys s3[-2]=now s3[-1]= s3[0]=tic s3[1]=eys s4[-2]=Know s4[-1]= s4[0]=ctic s4[1]=keys 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Know|by w[-1]|w[0]=by|Arctic w[0]|w[1]=Arctic|Monkeys pos[-2]|pos[-1]=VBP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=I w[-4..-1]=Wanna w[-4..-1]=Know w[-4..-1]=by w[1..4]=Monkeys +artist w[-2]=by w[-1]=Arctic w[0]=Monkeys wl[-2]=by wl[-1]=arctic wl[0]=monkeys pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=A p1[0]=M p2[-2]=by p2[-1]=Ar p2[0]=Mo p3[-2]= p3[-1]=Arc p3[0]=Mon p4[-2]= p4[-1]=Arct p4[0]=Monk s1[-2]=y s1[-1]=c s1[0]=s s2[-2]=by s2[-1]=ic s2[0]=ys s3[-2]= s3[-1]=tic s3[0]=eys s4[-2]= s4[-1]=ctic s4[0]=keys 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Arctic w[-1]|w[0]=Arctic|Monkeys pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Wanna w[-4..-1]=Know w[-4..-1]=by w[-4..-1]=Arctic __EOS__ + +O w[0]=play w[1]=Queens w[2]=of wl[0]=play wl[1]=queens wl[2]=of pos[0]=VBP pos[1]=NNPS pos[2]=NNPS chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=Q p1[2]=o p2[0]=pl p2[1]=Qu p2[2]=of p3[0]=pla p3[1]=Que p3[2]= p4[0]=play p4[1]=Quee p4[2]= s1[0]=y s1[1]=s s1[2]=f s2[0]=ay s2[1]=ns s2[2]=of s3[0]=lay s3[1]=ens s3[2]= s4[0]=play s4[1]=eens s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Queens w[1]|w[2]=Queens|of pos[0]|pos[1]=VBP|NNPS pos[1]|pos[2]=NNPS|NNPS chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Queens w[1..4]=of w[1..4]=the w[1..4]=stone __BOS__ +artist w[-1]=play w[0]=Queens w[1]=of w[2]=the wl[-1]=play wl[0]=queens wl[1]=of wl[2]=the pos[-1]=VBP pos[0]=NNPS pos[1]=NNPS pos[2]=NNPS chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLLL shape[1]=LL shape[2]=LLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=Q p1[1]=o p1[2]=t p2[-1]=pl p2[0]=Qu p2[1]=of p2[2]=th p3[-1]=pla p3[0]=Que p3[1]= p3[2]=the p4[-1]=play p4[0]=Quee p4[1]= p4[2]= s1[-1]=y s1[0]=s s1[1]=f s1[2]=e s2[-1]=ay s2[0]=ns s2[1]=of s2[2]=he s3[-1]=lay s3[0]=ens s3[1]= s3[2]=the s4[-1]=play s4[0]=eens s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Queens w[0]|w[1]=Queens|of w[1]|w[2]=of|the pos[-1]|pos[0]=VBP|NNPS pos[0]|pos[1]=NNPS|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=of w[1..4]=the w[1..4]=stone w[1..4]=age +artist w[-2]=play w[-1]=Queens w[0]=of w[1]=the w[2]=stone wl[-2]=play wl[-1]=queens wl[0]=of wl[1]=the wl[2]=stone pos[-2]=VBP pos[-1]=NNPS pos[0]=NNPS pos[1]=NNPS pos[2]=NNPS chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=LL shape[1]=LLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=Q p1[0]=o p1[1]=t p1[2]=s p2[-2]=pl p2[-1]=Qu p2[0]=of p2[1]=th p2[2]=st p3[-2]=pla p3[-1]=Que p3[0]= p3[1]=the p3[2]=sto p4[-2]=play p4[-1]=Quee p4[0]= p4[1]= p4[2]=ston s1[-2]=y s1[-1]=s s1[0]=f s1[1]=e s1[2]=e s2[-2]=ay s2[-1]=ns s2[0]=of s2[1]=he s2[2]=ne s3[-2]=lay s3[-1]=ens s3[0]= s3[1]=the s3[2]=one s4[-2]=play s4[-1]=eens s4[0]= s4[1]= s4[2]=tone 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Queens w[-1]|w[0]=Queens|of w[0]|w[1]=of|the w[1]|w[2]=the|stone pos[-2]|pos[-1]=VBP|NNPS pos[-1]|pos[0]=NNPS|NNPS pos[0]|pos[1]=NNPS|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Queens w[1..4]=the w[1..4]=stone w[1..4]=age +artist w[-2]=Queens w[-1]=of w[0]=the w[1]=stone w[2]=age wl[-2]=queens wl[-1]=of wl[0]=the wl[1]=stone wl[2]=age pos[-2]=NNPS pos[-1]=NNPS pos[0]=NNPS pos[1]=NNPS pos[2]=NNPS chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLLL shape[2]=LLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=Q p1[-1]=o p1[0]=t p1[1]=s p1[2]=a p2[-2]=Qu p2[-1]=of p2[0]=th p2[1]=st p2[2]=ag p3[-2]=Que p3[-1]= p3[0]=the p3[1]=sto p3[2]=age p4[-2]=Quee p4[-1]= p4[0]= p4[1]=ston p4[2]= s1[-2]=s s1[-1]=f s1[0]=e s1[1]=e s1[2]=e s2[-2]=ns s2[-1]=of s2[0]=he s2[1]=ne s2[2]=ge s3[-2]=ens s3[-1]= s3[0]=the s3[1]=one s3[2]=age s4[-2]=eens s4[-1]= s4[0]= s4[1]=tone s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Queens|of w[-1]|w[0]=of|the w[0]|w[1]=the|stone w[1]|w[2]=stone|age pos[-2]|pos[-1]=NNPS|NNPS pos[-1]|pos[0]=NNPS|NNPS pos[0]|pos[1]=NNPS|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Queens w[-4..-1]=of w[1..4]=stone w[1..4]=age +artist w[-2]=of w[-1]=the w[0]=stone w[1]=age wl[-2]=of wl[-1]=the wl[0]=stone wl[1]=age pos[-2]=NNPS pos[-1]=NNPS pos[0]=NNPS pos[1]=NNPS chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LL shape[-1]=LLL shape[0]=LLLLL shape[1]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=o p1[-1]=t p1[0]=s p1[1]=a p2[-2]=of p2[-1]=th p2[0]=st p2[1]=ag p3[-2]= p3[-1]=the p3[0]=sto p3[1]=age p4[-2]= p4[-1]= p4[0]=ston p4[1]= s1[-2]=f s1[-1]=e s1[0]=e s1[1]=e s2[-2]=of s2[-1]=he s2[0]=ne s2[1]=ge s3[-2]= s3[-1]=the s3[0]=one s3[1]=age s4[-2]= s4[-1]= s4[0]=tone s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=of|the w[-1]|w[0]=the|stone w[0]|w[1]=stone|age pos[-2]|pos[-1]=NNPS|NNPS pos[-1]|pos[0]=NNPS|NNPS pos[0]|pos[1]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Queens w[-4..-1]=of w[-4..-1]=the w[1..4]=age +artist w[-2]=the w[-1]=stone w[0]=age wl[-2]=the wl[-1]=stone wl[0]=age pos[-2]=NNPS pos[-1]=NNPS pos[0]=NNPS chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLL shape[-1]=LLLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=s p1[0]=a p2[-2]=th p2[-1]=st p2[0]=ag p3[-2]=the p3[-1]=sto p3[0]=age p4[-2]= p4[-1]=ston p4[0]= s1[-2]=e s1[-1]=e s1[0]=e s2[-2]=he s2[-1]=ne s2[0]=ge s3[-2]=the s3[-1]=one s3[0]=age s4[-2]= s4[-1]=tone s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|stone w[-1]|w[0]=stone|age pos[-2]|pos[-1]=NNPS|NNPS pos[-1]|pos[0]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=Queens w[-4..-1]=of w[-4..-1]=the w[-4..-1]=stone __EOS__ + +O w[0]=play w[1]=Rihanna w[2]=Unfaithful wl[0]=play wl[1]=rihanna wl[2]=unfaithful pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLLLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=R p1[2]=U p2[0]=pl p2[1]=Ri p2[2]=Un p3[0]=pla p3[1]=Rih p3[2]=Unf p4[0]=play p4[1]=Riha p4[2]=Unfa s1[0]=y s1[1]=a s1[2]=l s2[0]=ay s2[1]=na s2[2]=ul s3[0]=lay s3[1]=nna s3[2]=ful s4[0]=play s4[1]=anna s4[2]=hful 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Rihanna w[1]|w[2]=Rihanna|Unfaithful pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Rihanna w[1..4]=Unfaithful w[1..4]=for w[1..4]=me __BOS__ +artist w[-1]=play w[0]=Rihanna w[1]=Unfaithful w[2]=for wl[-1]=play wl[0]=rihanna wl[1]=unfaithful wl[2]=for pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLLLLLLL shape[2]=LLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=R p1[1]=U p1[2]=f p2[-1]=pl p2[0]=Ri p2[1]=Un p2[2]=fo p3[-1]=pla p3[0]=Rih p3[1]=Unf p3[2]=for p4[-1]=play p4[0]=Riha p4[1]=Unfa p4[2]= s1[-1]=y s1[0]=a s1[1]=l s1[2]=r s2[-1]=ay s2[0]=na s2[1]=ul s2[2]=or s3[-1]=lay s3[0]=nna s3[1]=ful s3[2]=for s4[-1]=play s4[0]=anna s4[1]=hful s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Rihanna w[0]|w[1]=Rihanna|Unfaithful w[1]|w[2]=Unfaithful|for pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Unfaithful w[1..4]=for w[1..4]=me +song w[-2]=play w[-1]=Rihanna w[0]=Unfaithful w[1]=for w[2]=me wl[-2]=play wl[-1]=rihanna wl[0]=unfaithful wl[1]=for wl[2]=me pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=PRP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLLLLLLL shape[1]=LLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=R p1[0]=U p1[1]=f p1[2]=m p2[-2]=pl p2[-1]=Ri p2[0]=Un p2[1]=fo p2[2]=me p3[-2]=pla p3[-1]=Rih p3[0]=Unf p3[1]=for p3[2]= p4[-2]=play p4[-1]=Riha p4[0]=Unfa p4[1]= p4[2]= s1[-2]=y s1[-1]=a s1[0]=l s1[1]=r s1[2]=e s2[-2]=ay s2[-1]=na s2[0]=ul s2[1]=or s2[2]=me s3[-2]=lay s3[-1]=nna s3[0]=ful s3[1]=for s3[2]= s4[-2]=play s4[-1]=anna s4[0]=hful s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Rihanna w[-1]|w[0]=Rihanna|Unfaithful w[0]|w[1]=Unfaithful|for w[1]|w[2]=for|me pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|PRP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Rihanna w[1..4]=for w[1..4]=me +O w[-2]=Rihanna w[-1]=Unfaithful w[0]=for w[1]=me wl[-2]=rihanna wl[-1]=unfaithful wl[0]=for wl[1]=me pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=PRP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O shape[-2]=ULLLLLL shape[-1]=ULLLLLLLLL shape[0]=LLL shape[1]=LL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter p1[-2]=R p1[-1]=U p1[0]=f p1[1]=m p2[-2]=Ri p2[-1]=Un p2[0]=fo p2[1]=me p3[-2]=Rih p3[-1]=Unf p3[0]=for p3[1]= p4[-2]=Riha p4[-1]=Unfa p4[0]= p4[1]= s1[-2]=a s1[-1]=l s1[0]=r s1[1]=e s2[-2]=na s2[-1]=ul s2[0]=or s2[1]=me s3[-2]=nna s3[-1]=ful s3[0]=for s3[1]= s4[-2]=anna s4[-1]=hful s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Rihanna|Unfaithful w[-1]|w[0]=Unfaithful|for w[0]|w[1]=for|me pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Rihanna w[-4..-1]=Unfaithful w[1..4]=me +O w[-2]=Unfaithful w[-1]=for w[0]=me wl[-2]=unfaithful wl[-1]=for wl[0]=me pos[-2]=NNP pos[-1]=IN pos[0]=PRP chk[-2]=I chk[-1]=O chk[0]=O shape[-2]=ULLLLLLLLL shape[-1]=LLL shape[0]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter p1[-2]=U p1[-1]=f p1[0]=m p2[-2]=Un p2[-1]=fo p2[0]=me p3[-2]=Unf p3[-1]=for p3[0]= p4[-2]=Unfa p4[-1]= p4[0]= s1[-2]=l s1[-1]=r s1[0]=e s2[-2]=ul s2[-1]=or s2[0]=me s3[-2]=ful s3[-1]=for s3[0]= s4[-2]=hful s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Unfaithful|for w[-1]|w[0]=for|me pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|PRP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Rihanna w[-4..-1]=Unfaithful w[-4..-1]=for __EOS__ + +O w[0]=play w[1]=Ignition w[2]=by wl[0]=play wl[1]=ignition wl[2]=by pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=I p1[2]=b p2[0]=pl p2[1]=Ig p2[2]=by p3[0]=pla p3[1]=Ign p3[2]= p4[0]=play p4[1]=Igni p4[2]= s1[0]=y s1[1]=n s1[2]=y s2[0]=ay s2[1]=on s2[2]=by s3[0]=lay s3[1]=ion s3[2]= s4[0]=play s4[1]=tion s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Ignition w[1]|w[2]=Ignition|by pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Ignition w[1..4]=by w[1..4]=R w[1..4]=Kelly __BOS__ +song w[-1]=play w[0]=Ignition w[1]=by w[2]=R wl[-1]=play wl[0]=ignition wl[1]=by wl[2]=r pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=NN chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=LL shape[2]=U shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=U type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllUpper p1[-1]=p p1[0]=I p1[1]=b p1[2]=R p2[-1]=pl p2[0]=Ig p2[1]=by p2[2]= p3[-1]=pla p3[0]=Ign p3[1]= p3[2]= p4[-1]=play p4[0]=Igni p4[1]= p4[2]= s1[-1]=y s1[0]=n s1[1]=y s1[2]=R s2[-1]=ay s2[0]=on s2[1]=by s2[2]= s3[-1]=lay s3[0]=ion s3[1]= s3[2]= s4[-1]=play s4[0]=tion s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Ignition w[0]|w[1]=Ignition|by w[1]|w[2]=by|R pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|U type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllUpper w[-4..-1]=play w[1..4]=by w[1..4]=R w[1..4]=Kelly +O w[-2]=play w[-1]=Ignition w[0]=by w[1]=R w[2]=Kelly wl[-2]=play wl[-1]=ignition wl[0]=by wl[1]=r wl[2]=kelly pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=LL shape[1]=U shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=U shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllUpper type[2]=InitUpper p1[-2]=p p1[-1]=I p1[0]=b p1[1]=R p1[2]=K p2[-2]=pl p2[-1]=Ig p2[0]=by p2[1]= p2[2]=Ke p3[-2]=pla p3[-1]=Ign p3[0]= p3[1]= p3[2]=Kel p4[-2]=play p4[-1]=Igni p4[0]= p4[1]= p4[2]=Kell s1[-2]=y s1[-1]=n s1[0]=y s1[1]=R s1[2]=y s2[-2]=ay s2[-1]=on s2[0]=by s2[1]= s2[2]=ly s3[-2]=lay s3[-1]=ion s3[0]= s3[1]= s3[2]=lly s4[-2]=play s4[-1]=tion s4[0]= s4[1]= s4[2]=elly 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=yes au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Ignition w[-1]|w[0]=Ignition|by w[0]|w[1]=by|R w[1]|w[2]=R|Kelly pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=Ignition w[1..4]=R w[1..4]=Kelly +artist w[-2]=Ignition w[-1]=by w[0]=R w[1]=Kelly wl[-2]=ignition wl[-1]=by wl[0]=r wl[1]=kelly pos[-2]=NN pos[-1]=IN pos[0]=NN pos[1]=NN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLLL shape[-1]=LL shape[0]=U shape[1]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=U shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllUpper type[1]=InitUpper p1[-2]=I p1[-1]=b p1[0]=R p1[1]=K p2[-2]=Ig p2[-1]=by p2[0]= p2[1]=Ke p3[-2]=Ign p3[-1]= p3[0]= p3[1]=Kel p4[-2]=Igni p4[-1]= p4[0]= p4[1]=Kell s1[-2]=n s1[-1]=y s1[0]=R s1[1]=y s2[-2]=on s2[-1]=by s2[0]= s2[1]=ly s3[-2]=ion s3[-1]= s3[0]= s3[1]=lly s4[-2]=tion s4[-1]= s4[0]= s4[1]=elly 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=yes au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Ignition|by w[-1]|w[0]=by|R w[0]|w[1]=R|Kelly pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=Ignition w[-4..-1]=by w[1..4]=Kelly +artist w[-2]=by w[-1]=R w[0]=Kelly wl[-2]=by wl[-1]=r wl[0]=kelly pos[-2]=IN pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=U shape[0]=ULLLL shaped[-2]=L shaped[-1]=U shaped[0]=UL type[-2]=AllLetter type[-1]=AllUpper type[0]=InitUpper p1[-2]=b p1[-1]=R p1[0]=K p2[-2]=by p2[-1]= p2[0]=Ke p3[-2]= p3[-1]= p3[0]=Kel p4[-2]= p4[-1]= p4[0]=Kell s1[-2]=y s1[-1]=R s1[0]=y s2[-2]=by s2[-1]= s2[0]=ly s3[-2]= s3[-1]= s3[0]=lly s4[-2]= s4[-1]= s4[0]=elly 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=yes au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=no cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|R w[-1]|w[0]=R|Kelly pos[-2]|pos[-1]=IN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|UL type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=Ignition w[-4..-1]=by w[-4..-1]=R __EOS__ + +O w[0]=I'd w[1]=like w[2]=to wl[0]=i'd wl[1]=like wl[2]=to pos[0]=PRP pos[1]=MD pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=U'L shape[1]=LLLL shape[2]=LL shaped[0]=U'L shaped[1]=L shaped[2]=L type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=l p1[2]=t p2[0]=I' p2[1]=li p2[2]=to p3[0]=I'd p3[1]=lik p3[2]= p4[0]= p4[1]=like p4[2]= s1[0]=d s1[1]=e s1[2]=o s2[0]='d s2[1]=ke s2[2]=to s3[0]=I'd s3[1]=ike s3[2]= s4[0]= s4[1]=like s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=I'd|like w[1]|w[2]=like|to pos[0]|pos[1]=PRP|MD pos[1]|pos[2]=MD|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=like w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I'd w[0]=like w[1]=to w[2]=listen wl[-1]=i'd wl[0]=like wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=MD pos[1]=VB pos[2]=TO chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U'L shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U'L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=l p1[1]=t p1[2]=l p2[-1]=I' p2[0]=li p2[1]=to p2[2]=li p3[-1]=I'd p3[0]=lik p3[1]= p3[2]=lis p4[-1]= p4[0]=like p4[1]= p4[2]=list s1[-1]=d s1[0]=e s1[1]=o s1[2]=n s2[-1]='d s2[0]=ke s2[1]=to s2[2]=en s3[-1]=I'd s3[0]=ike s3[1]= s3[2]=ten s4[-1]= s4[0]=like s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I'd|like w[0]|w[1]=like|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|MD pos[0]|pos[1]=MD|VB pos[1]|pos[2]=VB|TO chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U'L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=jazz +O w[-2]=I'd w[-1]=like w[0]=to w[1]=listen w[2]=to wl[-2]=i'd wl[-1]=like wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=MD pos[0]=VB pos[1]=TO pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U'L shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U'L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=l p1[0]=t p1[1]=l p1[2]=t p2[-2]=I' p2[-1]=li p2[0]=to p2[1]=li p2[2]=to p3[-2]=I'd p3[-1]=lik p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=like p4[0]= p4[1]=list p4[2]= s1[-2]=d s1[-1]=e s1[0]=o s1[1]=n s1[2]=o s2[-2]='d s2[-1]=ke s2[0]=to s2[1]=en s2[2]=to s3[-2]=I'd s3[-1]=ike s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=like s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I'd|like w[-1]|w[0]=like|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|MD pos[-1]|pos[0]=MD|VB pos[0]|pos[1]=VB|TO pos[1]|pos[2]=TO|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U'L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[1..4]=listen w[1..4]=to w[1..4]=jazz +O w[-2]=like w[-1]=to w[0]=listen w[1]=to w[2]=jazz wl[-2]=like wl[-1]=to wl[0]=listen wl[1]=to wl[2]=jazz pos[-2]=MD pos[-1]=VB pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=l p1[1]=t p1[2]=j p2[-2]=li p2[-1]=to p2[0]=li p2[1]=to p2[2]=ja p3[-2]=lik p3[-1]= p3[0]=lis p3[1]= p3[2]=jaz p4[-2]=like p4[-1]= p4[0]=list p4[1]= p4[2]=jazz s1[-2]=e s1[-1]=o s1[0]=n s1[1]=o s1[2]=z s2[-2]=ke s2[-1]=to s2[0]=en s2[1]=to s2[2]=zz s3[-2]=ike s3[-1]= s3[0]=ten s3[1]= s3[2]=azz s4[-2]=like s4[-1]= s4[0]=sten s4[1]= s4[2]=jazz 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=like|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|jazz pos[-2]|pos[-1]=MD|VB pos[-1]|pos[0]=VB|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[-4..-1]=to w[1..4]=to w[1..4]=jazz +O w[-2]=to w[-1]=listen w[0]=to w[1]=jazz wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=jazz pos[-2]=VB pos[-1]=TO pos[0]=VB pos[1]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=j p2[-2]=to p2[-1]=li p2[0]=to p2[1]=ja p3[-2]= p3[-1]=lis p3[0]= p3[1]=jaz p4[-2]= p4[-1]=list p4[0]= p4[1]=jazz s1[-2]=o s1[-1]=n s1[0]=o s1[1]=z s2[-2]=to s2[-1]=en s2[0]=to s2[1]=zz s3[-2]= s3[-1]=ten s3[0]= s3[1]=azz s4[-2]= s4[-1]=sten s4[0]= s4[1]=jazz 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|jazz pos[-2]|pos[-1]=VB|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[-4..-1]=to w[-4..-1]=listen w[1..4]=jazz +genre w[-2]=listen w[-1]=to w[0]=jazz wl[-2]=listen wl[-1]=to wl[0]=jazz pos[-2]=TO pos[-1]=VB pos[0]=IN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=l p1[-1]=t p1[0]=j p2[-2]=li p2[-1]=to p2[0]=ja p3[-2]=lis p3[-1]= p3[0]=jaz p4[-2]=list p4[-1]= p4[0]=jazz s1[-2]=n s1[-1]=o s1[0]=z s2[-2]=en s2[-1]=to s2[0]=zz s3[-2]=ten s3[-1]= s3[0]=azz s4[-2]=sten s4[-1]= s4[0]=jazz 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|jazz pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=like w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=hear w[1..4]=a __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=hear wl[-1]=i wl[0]=want wl[1]=to wl[2]=hear pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=h p2[-1]= p2[0]=wa p2[1]=to p2[2]=he p3[-1]= p3[0]=wan p3[1]= p3[2]=hea p4[-1]= p4[0]=want p4[1]= p4[2]=hear s1[-1]=I s1[0]=t s1[1]=o s1[2]=r s2[-1]= s2[0]=nt s2[1]=to s2[2]=ar s3[-1]= s3[0]=ant s3[1]= s3[2]=ear s4[-1]= s4[0]=want s4[1]= s4[2]=hear 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|hear pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=hear w[1..4]=a w[1..4]=song +O w[-2]=I w[-1]=want w[0]=to w[1]=hear w[2]=a wl[-2]=i wl[-1]=want wl[0]=to wl[1]=hear wl[2]=a pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shape[2]=L shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=h p1[2]=a p2[-2]= p2[-1]=wa p2[0]=to p2[1]=he p2[2]= p3[-2]= p3[-1]=wan p3[0]= p3[1]=hea p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=hear p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=r s1[2]=a s2[-2]= s2[-1]=nt s2[0]=to s2[1]=ar s2[2]= s3[-2]= s3[-1]=ant s3[0]= s3[1]=ear s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=hear s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|hear w[1]|w[2]=hear|a pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=hear w[1..4]=a w[1..4]=song +O w[-2]=want w[-1]=to w[0]=hear w[1]=a w[2]=song wl[-2]=want wl[-1]=to wl[0]=hear wl[1]=a wl[2]=song pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=t p1[0]=h p1[1]=a p1[2]=s p2[-2]=wa p2[-1]=to p2[0]=he p2[1]= p2[2]=so p3[-2]=wan p3[-1]= p3[0]=hea p3[1]= p3[2]=son p4[-2]=want p4[-1]= p4[0]=hear p4[1]= p4[2]=song s1[-2]=t s1[-1]=o s1[0]=r s1[1]=a s1[2]=g s2[-2]=nt s2[-1]=to s2[0]=ar s2[1]= s2[2]=ng s3[-2]=ant s3[-1]= s3[0]=ear s3[1]= s3[2]=ong s4[-2]=want s4[-1]= s4[0]=hear s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|hear w[0]|w[1]=hear|a w[1]|w[2]=a|song pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=a w[1..4]=song +O w[-2]=to w[-1]=hear w[0]=a w[1]=song wl[-2]=to wl[-1]=hear wl[0]=a wl[1]=song pos[-2]=TO pos[-1]=VB pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLLL shape[0]=L shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=h p1[0]=a p1[1]=s p2[-2]=to p2[-1]=he p2[0]= p2[1]=so p3[-2]= p3[-1]=hea p3[0]= p3[1]=son p4[-2]= p4[-1]=hear p4[0]= p4[1]=song s1[-2]=o s1[-1]=r s1[0]=a s1[1]=g s2[-2]=to s2[-1]=ar s2[0]= s2[1]=ng s3[-2]= s3[-1]=ear s3[0]= s3[1]=ong s4[-2]= s4[-1]=hear s4[0]= s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|hear w[-1]|w[0]=hear|a w[0]|w[1]=a|song pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=hear w[1..4]=song +O w[-2]=hear w[-1]=a w[0]=song wl[-2]=hear wl[-1]=a wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=h p1[-1]=a p1[0]=s p2[-2]=he p2[-1]= p2[0]=so p3[-2]=hea p3[-1]= p3[0]=son p4[-2]=hear p4[-1]= p4[0]=song s1[-2]=r s1[-1]=a s1[0]=g s2[-2]=ar s2[-1]= s2[0]=ng s3[-2]=ear s3[-1]= s3[0]=ong s4[-2]=hear s4[-1]= s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=hear|a w[-1]|w[0]=a|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=want w[-4..-1]=to w[-4..-1]=hear w[-4..-1]=a __EOS__ + +O w[0]=please w[1]=play w[2]=song wl[0]=please wl[1]=play wl[2]=song pos[0]=UH pos[1]=VB pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=p p1[2]=s p2[0]=pl p2[1]=pl p2[2]=so p3[0]=ple p3[1]=pla p3[2]=son p4[0]=plea p4[1]=play p4[2]=song s1[0]=e s1[1]=y s1[2]=g s2[0]=se s2[1]=ay s2[2]=ng s3[0]=ase s3[1]=lay s3[2]=ong s4[0]=ease s4[1]=play s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=please|play w[1]|w[2]=play|song pos[0]|pos[1]=UH|VB pos[1]|pos[2]=VB|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=play w[1..4]=song w[1..4]=Lost w[1..4]=in __BOS__ +O w[-1]=please w[0]=play w[1]=song w[2]=Lost wl[-1]=please wl[0]=play wl[1]=song wl[2]=lost pos[-1]=UH pos[0]=VB pos[1]=NN pos[2]=VBN chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=p p1[1]=s p1[2]=L p2[-1]=pl p2[0]=pl p2[1]=so p2[2]=Lo p3[-1]=ple p3[0]=pla p3[1]=son p3[2]=Los p4[-1]=plea p4[0]=play p4[1]=song p4[2]=Lost s1[-1]=e s1[0]=y s1[1]=g s1[2]=t s2[-1]=se s2[0]=ay s2[1]=ng s2[2]=st s3[-1]=ase s3[0]=lay s3[1]=ong s3[2]=ost s4[-1]=ease s4[0]=play s4[1]=song s4[2]=Lost 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=please|play w[0]|w[1]=play|song w[1]|w[2]=song|Lost pos[-1]|pos[0]=UH|VB pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|VBN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=please w[1..4]=song w[1..4]=Lost w[1..4]=in w[1..4]=You +O w[-2]=please w[-1]=play w[0]=song w[1]=Lost w[2]=in wl[-2]=please wl[-1]=play wl[0]=song wl[1]=lost wl[2]=in pos[-2]=UH pos[-1]=VB pos[0]=NN pos[1]=VBN pos[2]=VBN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=p p1[0]=s p1[1]=L p1[2]=i p2[-2]=pl p2[-1]=pl p2[0]=so p2[1]=Lo p2[2]=in p3[-2]=ple p3[-1]=pla p3[0]=son p3[1]=Los p3[2]= p4[-2]=plea p4[-1]=play p4[0]=song p4[1]=Lost p4[2]= s1[-2]=e s1[-1]=y s1[0]=g s1[1]=t s1[2]=n s2[-2]=se s2[-1]=ay s2[0]=ng s2[1]=st s2[2]=in s3[-2]=ase s3[-1]=lay s3[0]=ong s3[1]=ost s3[2]= s4[-2]=ease s4[-1]=play s4[0]=song s4[1]=Lost s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=please|play w[-1]|w[0]=play|song w[0]|w[1]=song|Lost w[1]|w[2]=Lost|in pos[-2]|pos[-1]=UH|VB pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|VBN pos[1]|pos[2]=VBN|VBN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=please w[-4..-1]=play w[1..4]=Lost w[1..4]=in w[1..4]=You +song w[-2]=play w[-1]=song w[0]=Lost w[1]=in w[2]=You wl[-2]=play wl[-1]=song wl[0]=lost wl[1]=in wl[2]=you pos[-2]=VB pos[-1]=NN pos[0]=VBN pos[1]=VBN pos[2]=VBN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLL shape[1]=LL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=L p1[1]=i p1[2]=Y p2[-2]=pl p2[-1]=so p2[0]=Lo p2[1]=in p2[2]=Yo p3[-2]=pla p3[-1]=son p3[0]=Los p3[1]= p3[2]=You p4[-2]=play p4[-1]=song p4[0]=Lost p4[1]= p4[2]= s1[-2]=y s1[-1]=g s1[0]=t s1[1]=n s1[2]=u s2[-2]=ay s2[-1]=ng s2[0]=st s2[1]=in s2[2]=ou s3[-2]=lay s3[-1]=ong s3[0]=ost s3[1]= s3[2]=You s4[-2]=play s4[-1]=song s4[0]=Lost s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Lost w[0]|w[1]=Lost|in w[1]|w[2]=in|You pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|VBN pos[0]|pos[1]=VBN|VBN pos[1]|pos[2]=VBN|VBN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=please w[-4..-1]=play w[-4..-1]=song w[1..4]=in w[1..4]=You +song w[-2]=song w[-1]=Lost w[0]=in w[1]=You wl[-2]=song wl[-1]=lost wl[0]=in wl[1]=you pos[-2]=NN pos[-1]=VBN pos[0]=VBN pos[1]=VBN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=s p1[-1]=L p1[0]=i p1[1]=Y p2[-2]=so p2[-1]=Lo p2[0]=in p2[1]=Yo p3[-2]=son p3[-1]=Los p3[0]= p3[1]=You p4[-2]=song p4[-1]=Lost p4[0]= p4[1]= s1[-2]=g s1[-1]=t s1[0]=n s1[1]=u s2[-2]=ng s2[-1]=st s2[0]=in s2[1]=ou s3[-2]=ong s3[-1]=ost s3[0]= s3[1]=You s4[-2]=song s4[-1]=Lost s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|Lost w[-1]|w[0]=Lost|in w[0]|w[1]=in|You pos[-2]|pos[-1]=NN|VBN pos[-1]|pos[0]=VBN|VBN pos[0]|pos[1]=VBN|VBN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=please w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Lost w[1..4]=You +song w[-2]=Lost w[-1]=in w[0]=You wl[-2]=lost wl[-1]=in wl[0]=you pos[-2]=VBN pos[-1]=VBN pos[0]=VBN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=L p1[-1]=i p1[0]=Y p2[-2]=Lo p2[-1]=in p2[0]=Yo p3[-2]=Los p3[-1]= p3[0]=You p4[-2]=Lost p4[-1]= p4[0]= s1[-2]=t s1[-1]=n s1[0]=u s2[-2]=st s2[-1]=in s2[0]=ou s3[-2]=ost s3[-1]= s3[0]=You s4[-2]=Lost s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Lost|in w[-1]|w[0]=in|You pos[-2]|pos[-1]=VBN|VBN pos[-1]|pos[0]=VBN|VBN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Lost w[-4..-1]=in __EOS__ + +O w[0]=play w[1]=album w[2]=The wl[0]=play wl[1]=album wl[2]=the pos[0]=VB pos[1]=NN pos[2]=DT chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=T p2[0]=pl p2[1]=al p2[2]=Th p3[0]=pla p3[1]=alb p3[2]=The p4[0]=play p4[1]=albu p4[2]= s1[0]=y s1[1]=m s1[2]=e s2[0]=ay s2[1]=um s2[2]=he s3[0]=lay s3[1]=bum s3[2]=The s4[0]=play s4[1]=lbum s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|The pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=The w[1..4]=marshall w[1..4]=mathers __BOS__ +O w[-1]=play w[0]=album w[1]=The w[2]=marshall wl[-1]=play wl[0]=album wl[1]=the wl[2]=marshall pos[-1]=VB pos[0]=NN pos[1]=DT pos[2]=DT chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULL shape[2]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=T p1[2]=m p2[-1]=pl p2[0]=al p2[1]=Th p2[2]=ma p3[-1]=pla p3[0]=alb p3[1]=The p3[2]=mar p4[-1]=play p4[0]=albu p4[1]= p4[2]=mars s1[-1]=y s1[0]=m s1[1]=e s1[2]=l s2[-1]=ay s2[0]=um s2[1]=he s2[2]=ll s3[-1]=lay s3[0]=bum s3[1]=The s3[2]=all s4[-1]=play s4[0]=lbum s4[1]= s4[2]=hall 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|The w[1]|w[2]=The|marshall pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|DT pos[1]|pos[2]=DT|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=The w[1..4]=marshall w[1..4]=mathers w[1..4]=by +album w[-2]=play w[-1]=album w[0]=The w[1]=marshall w[2]=mathers wl[-2]=play wl[-1]=album wl[0]=the wl[1]=marshall wl[2]=mathers pos[-2]=VB pos[-1]=NN pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULL shape[1]=LLLLLLLL shape[2]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=T p1[1]=m p1[2]=m p2[-2]=pl p2[-1]=al p2[0]=Th p2[1]=ma p2[2]=ma p3[-2]=pla p3[-1]=alb p3[0]=The p3[1]=mar p3[2]=mat p4[-2]=play p4[-1]=albu p4[0]= p4[1]=mars p4[2]=math s1[-2]=y s1[-1]=m s1[0]=e s1[1]=l s1[2]=s s2[-2]=ay s2[-1]=um s2[0]=he s2[1]=ll s2[2]=rs s3[-2]=lay s3[-1]=bum s3[0]=The s3[1]=all s3[2]=ers s4[-2]=play s4[-1]=lbum s4[0]= s4[1]=hall s4[2]=hers 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|The w[0]|w[1]=The|marshall w[1]|w[2]=marshall|mathers pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[1..4]=marshall w[1..4]=mathers w[1..4]=by w[1..4]=Eminem +album w[-2]=album w[-1]=The w[0]=marshall w[1]=mathers w[2]=by wl[-2]=album wl[-1]=the wl[0]=marshall wl[1]=mathers wl[2]=by pos[-2]=NN pos[-1]=DT pos[0]=DT pos[1]=DT pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLL shape[-1]=ULL shape[0]=LLLLLLLL shape[1]=LLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=T p1[0]=m p1[1]=m p1[2]=b p2[-2]=al p2[-1]=Th p2[0]=ma p2[1]=ma p2[2]=by p3[-2]=alb p3[-1]=The p3[0]=mar p3[1]=mat p3[2]= p4[-2]=albu p4[-1]= p4[0]=mars p4[1]=math p4[2]= s1[-2]=m s1[-1]=e s1[0]=l s1[1]=s s1[2]=y s2[-2]=um s2[-1]=he s2[0]=ll s2[1]=rs s2[2]=by s3[-2]=bum s3[-1]=The s3[0]=all s3[1]=ers s3[2]= s4[-2]=lbum s4[-1]= s4[0]=hall s4[1]=hers s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|The w[-1]|w[0]=The|marshall w[0]|w[1]=marshall|mathers w[1]|w[2]=mathers|by pos[-2]|pos[-1]=NN|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[-4..-1]=The w[1..4]=mathers w[1..4]=by w[1..4]=Eminem +album w[-2]=The w[-1]=marshall w[0]=mathers w[1]=by w[2]=Eminem wl[-2]=the wl[-1]=marshall wl[0]=mathers wl[1]=by wl[2]=eminem pos[-2]=DT pos[-1]=DT pos[0]=DT pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULL shape[-1]=LLLLLLLL shape[0]=LLLLLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=T p1[-1]=m p1[0]=m p1[1]=b p1[2]=E p2[-2]=Th p2[-1]=ma p2[0]=ma p2[1]=by p2[2]=Em p3[-2]=The p3[-1]=mar p3[0]=mat p3[1]= p3[2]=Emi p4[-2]= p4[-1]=mars p4[0]=math p4[1]= p4[2]=Emin s1[-2]=e s1[-1]=l s1[0]=s s1[1]=y s1[2]=m s2[-2]=he s2[-1]=ll s2[0]=rs s2[1]=by s2[2]=em s3[-2]=The s3[-1]=all s3[0]=ers s3[1]= s3[2]=nem s4[-2]= s4[-1]=hall s4[0]=hers s4[1]= s4[2]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=The|marshall w[-1]|w[0]=marshall|mathers w[0]|w[1]=mathers|by w[1]|w[2]=by|Eminem pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=The w[-4..-1]=marshall w[1..4]=by w[1..4]=Eminem +O w[-2]=marshall w[-1]=mathers w[0]=by w[1]=Eminem wl[-2]=marshall wl[-1]=mathers wl[0]=by wl[1]=eminem pos[-2]=DT pos[-1]=DT pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLLLLLLL shape[-1]=LLLLLLL shape[0]=LL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=m p1[-1]=m p1[0]=b p1[1]=E p2[-2]=ma p2[-1]=ma p2[0]=by p2[1]=Em p3[-2]=mar p3[-1]=mat p3[0]= p3[1]=Emi p4[-2]=mars p4[-1]=math p4[0]= p4[1]=Emin s1[-2]=l s1[-1]=s s1[0]=y s1[1]=m s2[-2]=ll s2[-1]=rs s2[0]=by s2[1]=em s3[-2]=all s3[-1]=ers s3[0]= s3[1]=nem s4[-2]=hall s4[-1]=hers s4[0]= s4[1]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=marshall|mathers w[-1]|w[0]=mathers|by w[0]|w[1]=by|Eminem pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=album w[-4..-1]=The w[-4..-1]=marshall w[-4..-1]=mathers w[1..4]=Eminem +artist w[-2]=mathers w[-1]=by w[0]=Eminem wl[-2]=mathers wl[-1]=by wl[0]=eminem pos[-2]=DT pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=LLLLLLL shape[-1]=LL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=m p1[-1]=b p1[0]=E p2[-2]=ma p2[-1]=by p2[0]=Em p3[-2]=mat p3[-1]= p3[0]=Emi p4[-2]=math p4[-1]= p4[0]=Emin s1[-2]=s s1[-1]=y s1[0]=m s2[-2]=rs s2[-1]=by s2[0]=em s3[-2]=ers s3[-1]= s3[0]=nem s4[-2]=hers s4[-1]= s4[0]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=mathers|by w[-1]|w[0]=by|Eminem pos[-2]|pos[-1]=DT|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=The w[-4..-1]=marshall w[-4..-1]=mathers w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=Hard w[2]=Times wl[0]=play wl[1]=hard wl[2]=times pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLL shape[2]=ULLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=H p1[2]=T p2[0]=pl p2[1]=Ha p2[2]=Ti p3[0]=pla p3[1]=Har p3[2]=Tim p4[0]=play p4[1]=Hard p4[2]=Time s1[0]=y s1[1]=d s1[2]=s s2[0]=ay s2[1]=rd s2[2]=es s3[0]=lay s3[1]=ard s3[2]=mes s4[0]=play s4[1]=Hard s4[2]=imes 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Hard w[1]|w[2]=Hard|Times pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Hard w[1..4]=Times w[1..4]=by w[1..4]=David __BOS__ +song w[-1]=play w[0]=Hard w[1]=Times w[2]=by wl[-1]=play wl[0]=hard wl[1]=times wl[2]=by pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLL shape[1]=ULLLL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=H p1[1]=T p1[2]=b p2[-1]=pl p2[0]=Ha p2[1]=Ti p2[2]=by p3[-1]=pla p3[0]=Har p3[1]=Tim p3[2]= p4[-1]=play p4[0]=Hard p4[1]=Time p4[2]= s1[-1]=y s1[0]=d s1[1]=s s1[2]=y s2[-1]=ay s2[0]=rd s2[1]=es s2[2]=by s3[-1]=lay s3[0]=ard s3[1]=mes s3[2]= s4[-1]=play s4[0]=Hard s4[1]=imes s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Hard w[0]|w[1]=Hard|Times w[1]|w[2]=Times|by pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Times w[1..4]=by w[1..4]=David w[1..4]=Newman +song w[-2]=play w[-1]=Hard w[0]=Times w[1]=by w[2]=David wl[-2]=play wl[-1]=hard wl[0]=times wl[1]=by wl[2]=david pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=ULLLL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=H p1[0]=T p1[1]=b p1[2]=D p2[-2]=pl p2[-1]=Ha p2[0]=Ti p2[1]=by p2[2]=Da p3[-2]=pla p3[-1]=Har p3[0]=Tim p3[1]= p3[2]=Dav p4[-2]=play p4[-1]=Hard p4[0]=Time p4[1]= p4[2]=Davi s1[-2]=y s1[-1]=d s1[0]=s s1[1]=y s1[2]=d s2[-2]=ay s2[-1]=rd s2[0]=es s2[1]=by s2[2]=id s3[-2]=lay s3[-1]=ard s3[0]=mes s3[1]= s3[2]=vid s4[-2]=play s4[-1]=Hard s4[0]=imes s4[1]= s4[2]=avid 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Hard w[-1]|w[0]=Hard|Times w[0]|w[1]=Times|by w[1]|w[2]=by|David pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Hard w[1..4]=by w[1..4]=David w[1..4]=Newman +O w[-2]=Hard w[-1]=Times w[0]=by w[1]=David w[2]=Newman wl[-2]=hard wl[-1]=times wl[0]=by wl[1]=david wl[2]=newman pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=H p1[-1]=T p1[0]=b p1[1]=D p1[2]=N p2[-2]=Ha p2[-1]=Ti p2[0]=by p2[1]=Da p2[2]=Ne p3[-2]=Har p3[-1]=Tim p3[0]= p3[1]=Dav p3[2]=New p4[-2]=Hard p4[-1]=Time p4[0]= p4[1]=Davi p4[2]=Newm s1[-2]=d s1[-1]=s s1[0]=y s1[1]=d s1[2]=n s2[-2]=rd s2[-1]=es s2[0]=by s2[1]=id s2[2]=an s3[-2]=ard s3[-1]=mes s3[0]= s3[1]=vid s3[2]=man s4[-2]=Hard s4[-1]=imes s4[0]= s4[1]=avid s4[2]=wman 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Hard|Times w[-1]|w[0]=Times|by w[0]|w[1]=by|David w[1]|w[2]=David|Newman pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Hard w[-4..-1]=Times w[1..4]=David w[1..4]=Newman +artist w[-2]=Times w[-1]=by w[0]=David w[1]=Newman wl[-2]=times wl[-1]=by wl[0]=david wl[1]=newman pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=T p1[-1]=b p1[0]=D p1[1]=N p2[-2]=Ti p2[-1]=by p2[0]=Da p2[1]=Ne p3[-2]=Tim p3[-1]= p3[0]=Dav p3[1]=New p4[-2]=Time p4[-1]= p4[0]=Davi p4[1]=Newm s1[-2]=s s1[-1]=y s1[0]=d s1[1]=n s2[-2]=es s2[-1]=by s2[0]=id s2[1]=an s3[-2]=mes s3[-1]= s3[0]=vid s3[1]=man s4[-2]=imes s4[-1]= s4[0]=avid s4[1]=wman 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Times|by w[-1]|w[0]=by|David w[0]|w[1]=David|Newman pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Hard w[-4..-1]=Times w[-4..-1]=by w[1..4]=Newman +artist w[-2]=by w[-1]=David w[0]=Newman wl[-2]=by wl[-1]=david wl[0]=newman pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=D p1[0]=N p2[-2]=by p2[-1]=Da p2[0]=Ne p3[-2]= p3[-1]=Dav p3[0]=New p4[-2]= p4[-1]=Davi p4[0]=Newm s1[-2]=y s1[-1]=d s1[0]=n s2[-2]=by s2[-1]=id s2[0]=an s3[-2]= s3[-1]=vid s3[0]=man s4[-2]= s4[-1]=avid s4[0]=wman 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|David w[-1]|w[0]=David|Newman pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Hard w[-4..-1]=Times w[-4..-1]=by w[-4..-1]=David __EOS__ + +O w[0]=let w[1]=me w[2]=hear wl[0]=let wl[1]=me wl[2]=hear pos[0]=VB pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=l p1[1]=m p1[2]=h p2[0]=le p2[1]=me p2[2]=he p3[0]=let p3[1]= p3[2]=hea p4[0]= p4[1]= p4[2]=hear s1[0]=t s1[1]=e s1[2]=r s2[0]=et s2[1]=me s2[2]=ar s3[0]=let s3[1]= s3[2]=ear s4[0]= s4[1]= s4[2]=hear 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=let|me w[1]|w[2]=me|hear pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=me w[1..4]=hear w[1..4]=some w[1..4]=music __BOS__ +O w[-1]=let w[0]=me w[1]=hear w[2]=some wl[-1]=let wl[0]=me wl[1]=hear wl[2]=some pos[-1]=VB pos[0]=PRP pos[1]=VB pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=l p1[0]=m p1[1]=h p1[2]=s p2[-1]=le p2[0]=me p2[1]=he p2[2]=so p3[-1]=let p3[0]= p3[1]=hea p3[2]=som p4[-1]= p4[0]= p4[1]=hear p4[2]=some s1[-1]=t s1[0]=e s1[1]=r s1[2]=e s2[-1]=et s2[0]=me s2[1]=ar s2[2]=me s3[-1]=let s3[0]= s3[1]=ear s3[2]=ome s4[-1]= s4[0]= s4[1]=hear s4[2]=some 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=let|me w[0]|w[1]=me|hear w[1]|w[2]=hear|some pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=let w[1..4]=hear w[1..4]=some w[1..4]=music w[1..4]=by +O w[-2]=let w[-1]=me w[0]=hear w[1]=some w[2]=music wl[-2]=let wl[-1]=me wl[0]=hear wl[1]=some wl[2]=music pos[-2]=VB pos[-1]=PRP pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=m p1[0]=h p1[1]=s p1[2]=m p2[-2]=le p2[-1]=me p2[0]=he p2[1]=so p2[2]=mu p3[-2]=let p3[-1]= p3[0]=hea p3[1]=som p3[2]=mus p4[-2]= p4[-1]= p4[0]=hear p4[1]=some p4[2]=musi s1[-2]=t s1[-1]=e s1[0]=r s1[1]=e s1[2]=c s2[-2]=et s2[-1]=me s2[0]=ar s2[1]=me s2[2]=ic s3[-2]=let s3[-1]= s3[0]=ear s3[1]=ome s3[2]=sic s4[-2]= s4[-1]= s4[0]=hear s4[1]=some s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=let|me w[-1]|w[0]=me|hear w[0]|w[1]=hear|some w[1]|w[2]=some|music pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=let w[-4..-1]=me w[1..4]=some w[1..4]=music w[1..4]=by w[1..4]=Coldplay +O w[-2]=me w[-1]=hear w[0]=some w[1]=music w[2]=by wl[-2]=me wl[-1]=hear wl[0]=some wl[1]=music wl[2]=by pos[-2]=PRP pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=m p1[-1]=h p1[0]=s p1[1]=m p1[2]=b p2[-2]=me p2[-1]=he p2[0]=so p2[1]=mu p2[2]=by p3[-2]= p3[-1]=hea p3[0]=som p3[1]=mus p3[2]= p4[-2]= p4[-1]=hear p4[0]=some p4[1]=musi p4[2]= s1[-2]=e s1[-1]=r s1[0]=e s1[1]=c s1[2]=y s2[-2]=me s2[-1]=ar s2[0]=me s2[1]=ic s2[2]=by s3[-2]= s3[-1]=ear s3[0]=ome s3[1]=sic s3[2]= s4[-2]= s4[-1]=hear s4[0]=some s4[1]=usic s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=me|hear w[-1]|w[0]=hear|some w[0]|w[1]=some|music w[1]|w[2]=music|by pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=let w[-4..-1]=me w[-4..-1]=hear w[1..4]=music w[1..4]=by w[1..4]=Coldplay +O w[-2]=hear w[-1]=some w[0]=music w[1]=by w[2]=Coldplay wl[-2]=hear wl[-1]=some wl[0]=music wl[1]=by wl[2]=coldplay pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=h p1[-1]=s p1[0]=m p1[1]=b p1[2]=C p2[-2]=he p2[-1]=so p2[0]=mu p2[1]=by p2[2]=Co p3[-2]=hea p3[-1]=som p3[0]=mus p3[1]= p3[2]=Col p4[-2]=hear p4[-1]=some p4[0]=musi p4[1]= p4[2]=Cold s1[-2]=r s1[-1]=e s1[0]=c s1[1]=y s1[2]=y s2[-2]=ar s2[-1]=me s2[0]=ic s2[1]=by s2[2]=ay s3[-2]=ear s3[-1]=ome s3[0]=sic s3[1]= s3[2]=lay s4[-2]=hear s4[-1]=some s4[0]=usic s4[1]= s4[2]=play 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=hear|some w[-1]|w[0]=some|music w[0]|w[1]=music|by w[1]|w[2]=by|Coldplay pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=let w[-4..-1]=me w[-4..-1]=hear w[-4..-1]=some w[1..4]=by w[1..4]=Coldplay +O w[-2]=some w[-1]=music w[0]=by w[1]=Coldplay wl[-2]=some wl[-1]=music wl[0]=by wl[1]=coldplay pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=s p1[-1]=m p1[0]=b p1[1]=C p2[-2]=so p2[-1]=mu p2[0]=by p2[1]=Co p3[-2]=som p3[-1]=mus p3[0]= p3[1]=Col p4[-2]=some p4[-1]=musi p4[0]= p4[1]=Cold s1[-2]=e s1[-1]=c s1[0]=y s1[1]=y s2[-2]=me s2[-1]=ic s2[0]=by s2[1]=ay s3[-2]=ome s3[-1]=sic s3[0]= s3[1]=lay s4[-2]=some s4[-1]=usic s4[0]= s4[1]=play 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=some|music w[-1]|w[0]=music|by w[0]|w[1]=by|Coldplay pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=me w[-4..-1]=hear w[-4..-1]=some w[-4..-1]=music w[1..4]=Coldplay +artist w[-2]=music w[-1]=by w[0]=Coldplay wl[-2]=music wl[-1]=by wl[0]=coldplay pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=m p1[-1]=b p1[0]=C p2[-2]=mu p2[-1]=by p2[0]=Co p3[-2]=mus p3[-1]= p3[0]=Col p4[-2]=musi p4[-1]= p4[0]=Cold s1[-2]=c s1[-1]=y s1[0]=y s2[-2]=ic s2[-1]=by s2[0]=ay s3[-2]=sic s3[-1]= s3[0]=lay s4[-2]=usic s4[-1]= s4[0]=play 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=music|by w[-1]|w[0]=by|Coldplay pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=hear w[-4..-1]=some w[-4..-1]=music w[-4..-1]=by __EOS__ + +genre w[0]=country w[1]=song wl[0]=country wl[1]=song pos[0]=NN pos[1]=NN chk[0]=I chk[1]=O shape[0]=LLLLLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=c p1[1]=s p2[0]=co p2[1]=so p3[0]=cou p3[1]=son p4[0]=coun p4[1]=song s1[0]=y s1[1]=g s2[0]=ry s2[1]=ng s3[0]=try s3[1]=ong s4[0]=ntry s4[1]=song 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=country|song pos[0]|pos[1]=NN|NN chk[0]|chk[1]=I|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=song __BOS__ +O w[-1]=country w[0]=song wl[-1]=country wl[0]=song pos[-1]=NN pos[0]=NN chk[-1]=I chk[0]=O shape[-1]=LLLLLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=c p1[0]=s p2[-1]=co p2[0]=so p3[-1]=cou p3[0]=son p4[-1]=coun p4[0]=song s1[-1]=y s1[0]=g s2[-1]=ry s2[0]=ng s3[-1]=try s3[0]=ong s4[-1]=ntry s4[0]=song 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=country|song pos[-1]|pos[0]=NN|NN chk[-1]|chk[0]=I|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=country __EOS__ + +O w[0]=play w[1]=album w[2]=Purple wl[0]=play wl[1]=album wl[2]=purple pos[0]=VBP pos[1]=NN pos[2]=JJ chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=P p2[0]=pl p2[1]=al p2[2]=Pu p3[0]=pla p3[1]=alb p3[2]=Pur p4[0]=play p4[1]=albu p4[2]=Purp s1[0]=y s1[1]=m s1[2]=e s2[0]=ay s2[1]=um s2[2]=le s3[0]=lay s3[1]=bum s3[2]=ple s4[0]=play s4[1]=lbum s4[2]=rple 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Purple pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Purple w[1..4]=Rain w[1..4]=on __BOS__ +O w[-1]=play w[0]=album w[1]=Purple w[2]=Rain wl[-1]=play wl[0]=album wl[1]=purple wl[2]=rain pos[-1]=VBP pos[0]=NN pos[1]=JJ pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=a p1[1]=P p1[2]=R p2[-1]=pl p2[0]=al p2[1]=Pu p2[2]=Ra p3[-1]=pla p3[0]=alb p3[1]=Pur p3[2]=Rai p4[-1]=play p4[0]=albu p4[1]=Purp p4[2]=Rain s1[-1]=y s1[0]=m s1[1]=e s1[2]=n s2[-1]=ay s2[0]=um s2[1]=le s2[2]=in s3[-1]=lay s3[0]=bum s3[1]=ple s3[2]=ain s4[-1]=play s4[0]=lbum s4[1]=rple s4[2]=Rain 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Purple w[1]|w[2]=Purple|Rain pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|JJ pos[1]|pos[2]=JJ|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Purple w[1..4]=Rain w[1..4]=on w[1..4]=Spotify +album w[-2]=play w[-1]=album w[0]=Purple w[1]=Rain w[2]=on wl[-2]=play wl[-1]=album wl[0]=purple wl[1]=rain wl[2]=on pos[-2]=VBP pos[-1]=NN pos[0]=JJ pos[1]=JJ pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=P p1[1]=R p1[2]=o p2[-2]=pl p2[-1]=al p2[0]=Pu p2[1]=Ra p2[2]=on p3[-2]=pla p3[-1]=alb p3[0]=Pur p3[1]=Rai p3[2]= p4[-2]=play p4[-1]=albu p4[0]=Purp p4[1]=Rain p4[2]= s1[-2]=y s1[-1]=m s1[0]=e s1[1]=n s1[2]=n s2[-2]=ay s2[-1]=um s2[0]=le s2[1]=in s2[2]=on s3[-2]=lay s3[-1]=bum s3[0]=ple s3[1]=ain s3[2]= s4[-2]=play s4[-1]=lbum s4[0]=rple s4[1]=Rain s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Purple w[0]|w[1]=Purple|Rain w[1]|w[2]=Rain|on pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|JJ pos[0]|pos[1]=JJ|JJ pos[1]|pos[2]=JJ|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=album w[1..4]=Rain w[1..4]=on w[1..4]=Spotify +album w[-2]=album w[-1]=Purple w[0]=Rain w[1]=on w[2]=Spotify wl[-2]=album wl[-1]=purple wl[0]=rain wl[1]=on wl[2]=spotify pos[-2]=NN pos[-1]=JJ pos[0]=JJ pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLLL shape[-1]=ULLLLL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=a p1[-1]=P p1[0]=R p1[1]=o p1[2]=S p2[-2]=al p2[-1]=Pu p2[0]=Ra p2[1]=on p2[2]=Sp p3[-2]=alb p3[-1]=Pur p3[0]=Rai p3[1]= p3[2]=Spo p4[-2]=albu p4[-1]=Purp p4[0]=Rain p4[1]= p4[2]=Spot s1[-2]=m s1[-1]=e s1[0]=n s1[1]=n s1[2]=y s2[-2]=um s2[-1]=le s2[0]=in s2[1]=on s2[2]=fy s3[-2]=bum s3[-1]=ple s3[0]=ain s3[1]= s3[2]=ify s4[-2]=lbum s4[-1]=rple s4[0]=Rain s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Purple w[-1]|w[0]=Purple|Rain w[0]|w[1]=Rain|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=NN|JJ pos[-1]|pos[0]=JJ|JJ pos[0]|pos[1]=JJ|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Purple w[1..4]=on w[1..4]=Spotify +O w[-2]=Purple w[-1]=Rain w[0]=on w[1]=Spotify wl[-2]=purple wl[-1]=rain wl[0]=on wl[1]=spotify pos[-2]=JJ pos[-1]=JJ pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULLLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=P p1[-1]=R p1[0]=o p1[1]=S p2[-2]=Pu p2[-1]=Ra p2[0]=on p2[1]=Sp p3[-2]=Pur p3[-1]=Rai p3[0]= p3[1]=Spo p4[-2]=Purp p4[-1]=Rain p4[0]= p4[1]=Spot s1[-2]=e s1[-1]=n s1[0]=n s1[1]=y s2[-2]=le s2[-1]=in s2[0]=on s2[1]=fy s3[-2]=ple s3[-1]=ain s3[0]= s3[1]=ify s4[-2]=rple s4[-1]=Rain s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Purple|Rain w[-1]|w[0]=Rain|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=JJ|JJ pos[-1]|pos[0]=JJ|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Purple w[-4..-1]=Rain w[1..4]=Spotify +service w[-2]=Rain w[-1]=on w[0]=Spotify wl[-2]=rain wl[-1]=on wl[0]=spotify pos[-2]=JJ pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=R p1[-1]=o p1[0]=S p2[-2]=Ra p2[-1]=on p2[0]=Sp p3[-2]=Rai p3[-1]= p3[0]=Spo p4[-2]=Rain p4[-1]= p4[0]=Spot s1[-2]=n s1[-1]=n s1[0]=y s2[-2]=in s2[-1]=on s2[0]=fy s3[-2]=ain s3[-1]= s3[0]=ify s4[-2]=Rain s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Rain|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=JJ|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=album w[-4..-1]=Purple w[-4..-1]=Rain w[-4..-1]=on __EOS__ + +O w[0]=can w[1]=you w[2]=turn wl[0]=can wl[1]=you wl[2]=turn pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=t p2[0]=ca p2[1]=yo p2[2]=tu p3[0]=can p3[1]=you p3[2]=tur p4[0]= p4[1]= p4[2]=turn s1[0]=n s1[1]=u s1[2]=n s2[0]=an s2[1]=ou s2[2]=rn s3[0]=can s3[1]=you s3[2]=urn s4[0]= s4[1]= s4[2]=turn 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|turn pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=turn w[1..4]=on w[1..4]=my __BOS__ +O w[-1]=can w[0]=you w[1]=turn w[2]=on wl[-1]=can wl[0]=you wl[1]=turn wl[2]=on pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=RP chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=t p1[2]=o p2[-1]=ca p2[0]=yo p2[1]=tu p2[2]=on p3[-1]=can p3[0]=you p3[1]=tur p3[2]= p4[-1]= p4[0]= p4[1]=turn p4[2]= s1[-1]=n s1[0]=u s1[1]=n s1[2]=n s2[-1]=an s2[0]=ou s2[1]=rn s2[2]=on s3[-1]=can s3[0]=you s3[1]=urn s3[2]= s4[-1]= s4[0]= s4[1]=turn s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|turn w[1]|w[2]=turn|on pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|RP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=turn w[1..4]=on w[1..4]=my w[1..4]=music +O w[-2]=can w[-1]=you w[0]=turn w[1]=on w[2]=my wl[-2]=can wl[-1]=you wl[0]=turn wl[1]=on wl[2]=my pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=RP pos[2]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=t p1[1]=o p1[2]=m p2[-2]=ca p2[-1]=yo p2[0]=tu p2[1]=on p2[2]=my p3[-2]=can p3[-1]=you p3[0]=tur p3[1]= p3[2]= p4[-2]= p4[-1]= p4[0]=turn p4[1]= p4[2]= s1[-2]=n s1[-1]=u s1[0]=n s1[1]=n s1[2]=y s2[-2]=an s2[-1]=ou s2[0]=rn s2[1]=on s2[2]=my s3[-2]=can s3[-1]=you s3[0]=urn s3[1]= s3[2]= s4[-2]= s4[-1]= s4[0]=turn s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|turn w[0]|w[1]=turn|on w[1]|w[2]=on|my pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=on w[1..4]=my w[1..4]=music +O w[-2]=you w[-1]=turn w[0]=on w[1]=my w[2]=music wl[-2]=you wl[-1]=turn wl[0]=on wl[1]=my wl[2]=music pos[-2]=PRP pos[-1]=VB pos[0]=RP pos[1]=PRP$ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LL shape[1]=LL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=y p1[-1]=t p1[0]=o p1[1]=m p1[2]=m p2[-2]=yo p2[-1]=tu p2[0]=on p2[1]=my p2[2]=mu p3[-2]=you p3[-1]=tur p3[0]= p3[1]= p3[2]=mus p4[-2]= p4[-1]=turn p4[0]= p4[1]= p4[2]=musi s1[-2]=u s1[-1]=n s1[0]=n s1[1]=y s1[2]=c s2[-2]=ou s2[-1]=rn s2[0]=on s2[1]=my s2[2]=ic s3[-2]=you s3[-1]=urn s3[0]= s3[1]= s3[2]=sic s4[-2]= s4[-1]=turn s4[0]= s4[1]= s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|turn w[-1]|w[0]=turn|on w[0]|w[1]=on|my w[1]|w[2]=my|music pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|PRP$ pos[1]|pos[2]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=turn w[1..4]=my w[1..4]=music +O w[-2]=turn w[-1]=on w[0]=my w[1]=music wl[-2]=turn wl[-1]=on wl[0]=my wl[1]=music pos[-2]=VB pos[-1]=RP pos[0]=PRP$ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=o p1[0]=m p1[1]=m p2[-2]=tu p2[-1]=on p2[0]=my p2[1]=mu p3[-2]=tur p3[-1]= p3[0]= p3[1]=mus p4[-2]=turn p4[-1]= p4[0]= p4[1]=musi s1[-2]=n s1[-1]=n s1[0]=y s1[1]=c s2[-2]=rn s2[-1]=on s2[0]=my s2[1]=ic s3[-2]=urn s3[-1]= s3[0]= s3[1]=sic s4[-2]=turn s4[-1]= s4[0]= s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=turn|on w[-1]|w[0]=on|my w[0]|w[1]=my|music pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|PRP$ pos[0]|pos[1]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=turn w[-4..-1]=on w[1..4]=music +O w[-2]=on w[-1]=my w[0]=music wl[-2]=on wl[-1]=my wl[0]=music pos[-2]=RP pos[-1]=PRP$ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=m p1[0]=m p2[-2]=on p2[-1]=my p2[0]=mu p3[-2]= p3[-1]= p3[0]=mus p4[-2]= p4[-1]= p4[0]=musi s1[-2]=n s1[-1]=y s1[0]=c s2[-2]=on s2[-1]=my s2[0]=ic s3[-2]= s3[-1]= s3[0]=sic s4[-2]= s4[-1]= s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=on|my w[-1]|w[0]=my|music pos[-2]|pos[-1]=RP|PRP$ pos[-1]|pos[0]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=you w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=my __EOS__ + +O w[0]=play w[1]=music w[2]=by wl[0]=play wl[1]=music wl[2]=by pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=b p2[0]=pl p2[1]=mu p2[2]=by p3[0]=pla p3[1]=mus p3[2]= p4[0]=play p4[1]=musi p4[2]= s1[0]=y s1[1]=c s1[2]=y s2[0]=ay s2[1]=ic s2[2]=by s3[0]=lay s3[1]=sic s3[2]= s4[0]=play s4[1]=usic s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|music w[1]|w[2]=music|by pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=music w[1..4]=by w[1..4]=Megan w[1..4]=Trainer __BOS__ +O w[-1]=play w[0]=music w[1]=by w[2]=Megan wl[-1]=play wl[0]=music wl[1]=by wl[2]=megan pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=m p1[1]=b p1[2]=M p2[-1]=pl p2[0]=mu p2[1]=by p2[2]=Me p3[-1]=pla p3[0]=mus p3[1]= p3[2]=Meg p4[-1]=play p4[0]=musi p4[1]= p4[2]=Mega s1[-1]=y s1[0]=c s1[1]=y s1[2]=n s2[-1]=ay s2[0]=ic s2[1]=by s2[2]=an s3[-1]=lay s3[0]=sic s3[1]= s3[2]=gan s4[-1]=play s4[0]=usic s4[1]= s4[2]=egan 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|music w[0]|w[1]=music|by w[1]|w[2]=by|Megan pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Megan w[1..4]=Trainer +O w[-2]=play w[-1]=music w[0]=by w[1]=Megan w[2]=Trainer wl[-2]=play wl[-1]=music wl[0]=by wl[1]=megan wl[2]=trainer pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=m p1[0]=b p1[1]=M p1[2]=T p2[-2]=pl p2[-1]=mu p2[0]=by p2[1]=Me p2[2]=Tr p3[-2]=pla p3[-1]=mus p3[0]= p3[1]=Meg p3[2]=Tra p4[-2]=play p4[-1]=musi p4[0]= p4[1]=Mega p4[2]=Trai s1[-2]=y s1[-1]=c s1[0]=y s1[1]=n s1[2]=r s2[-2]=ay s2[-1]=ic s2[0]=by s2[1]=an s2[2]=er s3[-2]=lay s3[-1]=sic s3[0]= s3[1]=gan s3[2]=ner s4[-2]=play s4[-1]=usic s4[0]= s4[1]=egan s4[2]=iner 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|music w[-1]|w[0]=music|by w[0]|w[1]=by|Megan w[1]|w[2]=Megan|Trainer pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[1..4]=Megan w[1..4]=Trainer +artist w[-2]=music w[-1]=by w[0]=Megan w[1]=Trainer wl[-2]=music wl[-1]=by wl[0]=megan wl[1]=trainer pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=m p1[-1]=b p1[0]=M p1[1]=T p2[-2]=mu p2[-1]=by p2[0]=Me p2[1]=Tr p3[-2]=mus p3[-1]= p3[0]=Meg p3[1]=Tra p4[-2]=musi p4[-1]= p4[0]=Mega p4[1]=Trai s1[-2]=c s1[-1]=y s1[0]=n s1[1]=r s2[-2]=ic s2[-1]=by s2[0]=an s2[1]=er s3[-2]=sic s3[-1]= s3[0]=gan s3[1]=ner s4[-2]=usic s4[-1]= s4[0]=egan s4[1]=iner 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=music|by w[-1]|w[0]=by|Megan w[0]|w[1]=Megan|Trainer pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[-4..-1]=by w[1..4]=Trainer +artist w[-2]=by w[-1]=Megan w[0]=Trainer wl[-2]=by wl[-1]=megan wl[0]=trainer pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=M p1[0]=T p2[-2]=by p2[-1]=Me p2[0]=Tr p3[-2]= p3[-1]=Meg p3[0]=Tra p4[-2]= p4[-1]=Mega p4[0]=Trai s1[-2]=y s1[-1]=n s1[0]=r s2[-2]=by s2[-1]=an s2[0]=er s3[-2]= s3[-1]=gan s3[0]=ner s4[-2]= s4[-1]=egan s4[0]=iner 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Megan w[-1]|w[0]=Megan|Trainer pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[-4..-1]=by w[-4..-1]=Megan __EOS__ + +O w[0]=play w[1]=End w[2]=of wl[0]=play wl[1]=end wl[2]=of pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=E p1[2]=o p2[0]=pl p2[1]=En p2[2]=of p3[0]=pla p3[1]=End p3[2]= p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=d s1[2]=f s2[0]=ay s2[1]=nd s2[2]=of s3[0]=lay s3[1]=End s3[2]= s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|End w[1]|w[2]=End|of pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=End w[1..4]=of w[1..4]=the w[1..4]=World __BOS__ +song w[-1]=play w[0]=End w[1]=of w[2]=the wl[-1]=play wl[0]=end wl[1]=of wl[2]=the pos[-1]=VB pos[0]=NN pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULL shape[1]=LL shape[2]=LLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=E p1[1]=o p1[2]=t p2[-1]=pl p2[0]=En p2[1]=of p2[2]=th p3[-1]=pla p3[0]=End p3[1]= p3[2]=the p4[-1]=play p4[0]= p4[1]= p4[2]= s1[-1]=y s1[0]=d s1[1]=f s1[2]=e s2[-1]=ay s2[0]=nd s2[1]=of s2[2]=he s3[-1]=lay s3[0]=End s3[1]= s3[2]=the s4[-1]=play s4[0]= s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|End w[0]|w[1]=End|of w[1]|w[2]=of|the pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=of w[1..4]=the w[1..4]=World w[1..4]=by +song w[-2]=play w[-1]=End w[0]=of w[1]=the w[2]=World wl[-2]=play wl[-1]=end wl[0]=of wl[1]=the wl[2]=world pos[-2]=VB pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=LL shape[1]=LLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=E p1[0]=o p1[1]=t p1[2]=W p2[-2]=pl p2[-1]=En p2[0]=of p2[1]=th p2[2]=Wo p3[-2]=pla p3[-1]=End p3[0]= p3[1]=the p3[2]=Wor p4[-2]=play p4[-1]= p4[0]= p4[1]= p4[2]=Worl s1[-2]=y s1[-1]=d s1[0]=f s1[1]=e s1[2]=d s2[-2]=ay s2[-1]=nd s2[0]=of s2[1]=he s2[2]=ld s3[-2]=lay s3[-1]=End s3[0]= s3[1]=the s3[2]=rld s4[-2]=play s4[-1]= s4[0]= s4[1]= s4[2]=orld 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|End w[-1]|w[0]=End|of w[0]|w[1]=of|the w[1]|w[2]=the|World pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=End w[1..4]=the w[1..4]=World w[1..4]=by w[1..4]=The +song w[-2]=End w[-1]=of w[0]=the w[1]=World w[2]=by wl[-2]=end wl[-1]=of wl[0]=the wl[1]=world wl[2]=by pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULL shape[-1]=LL shape[0]=LLL shape[1]=ULLLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=E p1[-1]=o p1[0]=t p1[1]=W p1[2]=b p2[-2]=En p2[-1]=of p2[0]=th p2[1]=Wo p2[2]=by p3[-2]=End p3[-1]= p3[0]=the p3[1]=Wor p3[2]= p4[-2]= p4[-1]= p4[0]= p4[1]=Worl p4[2]= s1[-2]=d s1[-1]=f s1[0]=e s1[1]=d s1[2]=y s2[-2]=nd s2[-1]=of s2[0]=he s2[1]=ld s2[2]=by s3[-2]=End s3[-1]= s3[0]=the s3[1]=rld s3[2]= s4[-2]= s4[-1]= s4[0]= s4[1]=orld s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=End|of w[-1]|w[0]=of|the w[0]|w[1]=the|World w[1]|w[2]=World|by pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=End w[-4..-1]=of w[1..4]=World w[1..4]=by w[1..4]=The w[1..4]=living +song w[-2]=of w[-1]=the w[0]=World w[1]=by w[2]=The wl[-2]=of wl[-1]=the wl[0]=world wl[1]=by wl[2]=the pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=IN pos[2]=DT chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=LLL shape[0]=ULLLL shape[1]=LL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=o p1[-1]=t p1[0]=W p1[1]=b p1[2]=T p2[-2]=of p2[-1]=th p2[0]=Wo p2[1]=by p2[2]=Th p3[-2]= p3[-1]=the p3[0]=Wor p3[1]= p3[2]=The p4[-2]= p4[-1]= p4[0]=Worl p4[1]= p4[2]= s1[-2]=f s1[-1]=e s1[0]=d s1[1]=y s1[2]=e s2[-2]=of s2[-1]=he s2[0]=ld s2[1]=by s2[2]=he s3[-2]= s3[-1]=the s3[0]=rld s3[1]= s3[2]=The s4[-2]= s4[-1]= s4[0]=orld s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=of|the w[-1]|w[0]=the|World w[0]|w[1]=World|by w[1]|w[2]=by|The pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=End w[-4..-1]=of w[-4..-1]=the w[1..4]=by w[1..4]=The w[1..4]=living w[1..4]=end +O w[-2]=the w[-1]=World w[0]=by w[1]=The w[2]=living wl[-2]=the wl[-1]=world wl[0]=by wl[1]=the wl[2]=living pos[-2]=NN pos[-1]=NN pos[0]=IN pos[1]=DT pos[2]=DT chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=ULLLL shape[0]=LL shape[1]=ULL shape[2]=LLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=t p1[-1]=W p1[0]=b p1[1]=T p1[2]=l p2[-2]=th p2[-1]=Wo p2[0]=by p2[1]=Th p2[2]=li p3[-2]=the p3[-1]=Wor p3[0]= p3[1]=The p3[2]=liv p4[-2]= p4[-1]=Worl p4[0]= p4[1]= p4[2]=livi s1[-2]=e s1[-1]=d s1[0]=y s1[1]=e s1[2]=g s2[-2]=he s2[-1]=ld s2[0]=by s2[1]=he s2[2]=ng s3[-2]=the s3[-1]=rld s3[0]= s3[1]=The s3[2]=ing s4[-2]= s4[-1]=orld s4[0]= s4[1]= s4[2]=ving 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|World w[-1]|w[0]=World|by w[0]|w[1]=by|The w[1]|w[2]=The|living pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=End w[-4..-1]=of w[-4..-1]=the w[-4..-1]=World w[1..4]=The w[1..4]=living w[1..4]=end +artist w[-2]=World w[-1]=by w[0]=The w[1]=living w[2]=end wl[-2]=world wl[-1]=by wl[0]=the wl[1]=living wl[2]=end pos[-2]=NN pos[-1]=IN pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULL shape[1]=LLLLLL shape[2]=LLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=W p1[-1]=b p1[0]=T p1[1]=l p1[2]=e p2[-2]=Wo p2[-1]=by p2[0]=Th p2[1]=li p2[2]=en p3[-2]=Wor p3[-1]= p3[0]=The p3[1]=liv p3[2]=end p4[-2]=Worl p4[-1]= p4[0]= p4[1]=livi p4[2]= s1[-2]=d s1[-1]=y s1[0]=e s1[1]=g s1[2]=d s2[-2]=ld s2[-1]=by s2[0]=he s2[1]=ng s2[2]=nd s3[-2]=rld s3[-1]= s3[0]=The s3[1]=ing s3[2]=end s4[-2]=orld s4[-1]= s4[0]= s4[1]=ving s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=World|by w[-1]|w[0]=by|The w[0]|w[1]=The|living w[1]|w[2]=living|end pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=of w[-4..-1]=the w[-4..-1]=World w[-4..-1]=by w[1..4]=living w[1..4]=end +artist w[-2]=by w[-1]=The w[0]=living w[1]=end wl[-2]=by wl[-1]=the wl[0]=living wl[1]=end pos[-2]=IN pos[-1]=DT pos[0]=DT pos[1]=DT chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LL shape[-1]=ULL shape[0]=LLLLLL shape[1]=LLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter p1[-2]=b p1[-1]=T p1[0]=l p1[1]=e p2[-2]=by p2[-1]=Th p2[0]=li p2[1]=en p3[-2]= p3[-1]=The p3[0]=liv p3[1]=end p4[-2]= p4[-1]= p4[0]=livi p4[1]= s1[-2]=y s1[-1]=e s1[0]=g s1[1]=d s2[-2]=by s2[-1]=he s2[0]=ng s2[1]=nd s3[-2]= s3[-1]=The s3[0]=ing s3[1]=end s4[-2]= s4[-1]= s4[0]=ving s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=by|The w[-1]|w[0]=The|living w[0]|w[1]=living|end pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=the w[-4..-1]=World w[-4..-1]=by w[-4..-1]=The w[1..4]=end +artist w[-2]=The w[-1]=living w[0]=end wl[-2]=the wl[-1]=living wl[0]=end pos[-2]=DT pos[-1]=DT pos[0]=DT chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=LLLLLL shape[0]=LLL shaped[-2]=UL shaped[-1]=L shaped[0]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter p1[-2]=T p1[-1]=l p1[0]=e p2[-2]=Th p2[-1]=li p2[0]=en p3[-2]=The p3[-1]=liv p3[0]=end p4[-2]= p4[-1]=livi p4[0]= s1[-2]=e s1[-1]=g s1[0]=d s2[-2]=he s2[-1]=ng s2[0]=nd s3[-2]=The s3[-1]=ing s3[0]=end s4[-2]= s4[-1]=ving s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=The|living w[-1]|w[0]=living|end pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=World w[-4..-1]=by w[-4..-1]=The w[-4..-1]=living __EOS__ + +O w[0]=play w[1]=Metallica wl[0]=play wl[1]=metallica pos[0]=VB pos[1]=NNP chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=ULLLLLLLL shaped[0]=L shaped[1]=UL type[0]=AllLetter type[1]=InitUpper p1[0]=p p1[1]=M p2[0]=pl p2[1]=Me p3[0]=pla p3[1]=Met p4[0]=play p4[1]=Meta s1[0]=y s1[1]=a s2[0]=ay s2[1]=ca s3[0]=lay s3[1]=ica s4[0]=play s4[1]=lica 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=yes cs[0]=no cs[1]=no w[0]|w[1]=play|Metallica pos[0]|pos[1]=VB|NNP chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|UL type[0]|type[1]=AllLetter|InitUpper w[1..4]=Metallica __BOS__ +artist w[-1]=play w[0]=Metallica wl[-1]=play wl[0]=metallica pos[-1]=VB pos[0]=NNP chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=ULLLLLLLL shaped[-1]=L shaped[0]=UL type[-1]=AllLetter type[0]=InitUpper p1[-1]=p p1[0]=M p2[-1]=pl p2[0]=Me p3[-1]=pla p3[0]=Met p4[-1]=play p4[0]=Meta s1[-1]=y s1[0]=a s2[-1]=ay s2[0]=ca s3[-1]=lay s3[0]=ica s4[-1]=play s4[0]=lica 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=yes cs[-1]=no cs[0]=no w[-1]|w[0]=play|Metallica pos[-1]|pos[0]=VB|NNP chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|UL type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play __EOS__ + +O w[0]=play w[1]=song w[2]=from wl[0]=play wl[1]=song wl[2]=from pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=f p2[0]=pl p2[1]=so p2[2]=fr p3[0]=pla p3[1]=son p3[2]=fro p4[0]=play p4[1]=song p4[2]=from s1[0]=y s1[1]=g s1[2]=m s2[0]=ay s2[1]=ng s2[2]=om s3[0]=lay s3[1]=ong s3[2]=rom s4[0]=play s4[1]=song s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|from pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=song w[1..4]=from w[1..4]=Rihanna __BOS__ +O w[-1]=play w[0]=song w[1]=from w[2]=Rihanna wl[-1]=play wl[0]=song wl[1]=from wl[2]=rihanna pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=f p1[2]=R p2[-1]=pl p2[0]=so p2[1]=fr p2[2]=Ri p3[-1]=pla p3[0]=son p3[1]=fro p3[2]=Rih p4[-1]=play p4[0]=song p4[1]=from p4[2]=Riha s1[-1]=y s1[0]=g s1[1]=m s1[2]=a s2[-1]=ay s2[0]=ng s2[1]=om s2[2]=na s3[-1]=lay s3[0]=ong s3[1]=rom s3[2]=nna s4[-1]=play s4[0]=song s4[1]=from s4[2]=anna 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|from w[1]|w[2]=from|Rihanna pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=from w[1..4]=Rihanna +O w[-2]=play w[-1]=song w[0]=from w[1]=Rihanna wl[-2]=play wl[-1]=song wl[0]=from wl[1]=rihanna pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=s p1[0]=f p1[1]=R p2[-2]=pl p2[-1]=so p2[0]=fr p2[1]=Ri p3[-2]=pla p3[-1]=son p3[0]=fro p3[1]=Rih p4[-2]=play p4[-1]=song p4[0]=from p4[1]=Riha s1[-2]=y s1[-1]=g s1[0]=m s1[1]=a s2[-2]=ay s2[-1]=ng s2[0]=om s2[1]=na s3[-2]=lay s3[-1]=ong s3[0]=rom s3[1]=nna s4[-2]=play s4[-1]=song s4[0]=from s4[1]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|from w[0]|w[1]=from|Rihanna pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=Rihanna +artist w[-2]=song w[-1]=from w[0]=Rihanna wl[-2]=song wl[-1]=from wl[0]=rihanna pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=f p1[0]=R p2[-2]=so p2[-1]=fr p2[0]=Ri p3[-2]=son p3[-1]=fro p3[0]=Rih p4[-2]=song p4[-1]=from p4[0]=Riha s1[-2]=g s1[-1]=m s1[0]=a s2[-2]=ng s2[-1]=om s2[0]=na s3[-2]=ong s3[-1]=rom s3[0]=nna s4[-2]=song s4[-1]=from s4[0]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|from w[-1]|w[0]=from|Rihanna pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=from __EOS__ + +O w[0]=play w[1]=a w[2]=U2 wl[0]=play wl[1]=a wl[2]=u2 pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=L shape[2]=UD shaped[0]=L shaped[1]=L shaped[2]=UD type[0]=AllLetter type[1]=AllLetter type[2]=AllUpperDigit p1[0]=p p1[1]=a p1[2]=U p2[0]=pl p2[1]= p2[2]=U2 p3[0]=pla p3[1]= p3[2]= p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=a s1[2]=2 s2[0]=ay s2[1]= s2[2]=U2 s3[0]=lay s3[1]= s3[2]= s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=yes d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|U2 pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UD type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllUpperDigit w[1..4]=a w[1..4]=U2 w[1..4]=song __BOS__ +O w[-1]=play w[0]=a w[1]=U2 w[2]=song wl[-1]=play wl[0]=a wl[1]=u2 wl[2]=song pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=L shape[1]=UD shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=UD shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllUpperDigit type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=U p1[2]=s p2[-1]=pl p2[0]= p2[1]=U2 p2[2]=so p3[-1]=pla p3[0]= p3[1]= p3[2]=son p4[-1]=play p4[0]= p4[1]= p4[2]=song s1[-1]=y s1[0]=a s1[1]=2 s1[2]=g s2[-1]=ay s2[0]= s2[1]=U2 s2[2]=ng s3[-1]=lay s3[0]= s3[1]= s3[2]=ong s4[-1]=play s4[0]= s4[1]= s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=yes d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|U2 w[1]|w[2]=U2|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UD shaped[1]|shaped[2]=UD|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllUpperDigit type[1]|type[2]=AllUpperDigit|AllLetter w[-4..-1]=play w[1..4]=U2 w[1..4]=song +artist w[-2]=play w[-1]=a w[0]=U2 w[1]=song wl[-2]=play wl[-1]=a wl[0]=u2 wl[1]=song pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=L shape[0]=UD shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UD shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllUpperDigit type[1]=AllLetter p1[-2]=p p1[-1]=a p1[0]=U p1[1]=s p2[-2]=pl p2[-1]= p2[0]=U2 p2[1]=so p3[-2]=pla p3[-1]= p3[0]= p3[1]=son p4[-2]=play p4[-1]= p4[0]= p4[1]=song s1[-2]=y s1[-1]=a s1[0]=2 s1[1]=g s2[-2]=ay s2[-1]= s2[0]=U2 s2[1]=ng s3[-2]=lay s3[-1]= s3[0]= s3[1]=ong s4[-2]=play s4[-1]= s4[0]= s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=yes d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|U2 w[0]|w[1]=U2|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UD shaped[0]|shaped[1]=UD|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllUpperDigit type[0]|type[1]=AllUpperDigit|AllLetter w[-4..-1]=play w[-4..-1]=a w[1..4]=song +O w[-2]=a w[-1]=U2 w[0]=song wl[-2]=a wl[-1]=u2 wl[0]=song pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=L shape[-1]=UD shape[0]=LLLL shaped[-2]=L shaped[-1]=UD shaped[0]=L type[-2]=AllLetter type[-1]=AllUpperDigit type[0]=AllLetter p1[-2]=a p1[-1]=U p1[0]=s p2[-2]= p2[-1]=U2 p2[0]=so p3[-2]= p3[-1]= p3[0]=son p4[-2]= p4[-1]= p4[0]=song s1[-2]=a s1[-1]=2 s1[0]=g s2[-2]= s2[-1]=U2 s2[0]=ng s3[-2]= s3[-1]= s3[0]=ong s4[-2]= s4[-1]= s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=yes d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=no cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=a|U2 w[-1]|w[0]=U2|song pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|UD shaped[-1]|shaped[0]=UD|L type[-2]|type[-1]=AllLetter|AllUpperDigit type[-1]|type[0]=AllUpperDigit|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=U2 __EOS__ + +O w[0]=play w[1]=a w[2]=song wl[0]=play wl[1]=a wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=s p2[0]=pl p2[1]= p2[2]=so p3[0]=pla p3[1]= p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=a s1[2]=g s2[0]=ay s2[1]= s2[2]=ng s3[0]=lay s3[1]= s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=song w[1..4]=from w[1..4]=Spotify __BOS__ +O w[-1]=play w[0]=a w[1]=song w[2]=from wl[-1]=play wl[0]=a wl[1]=song wl[2]=from pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=L shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=s p1[2]=f p2[-1]=pl p2[0]= p2[1]=so p2[2]=fr p3[-1]=pla p3[0]= p3[1]=son p3[2]=fro p4[-1]=play p4[0]= p4[1]=song p4[2]=from s1[-1]=y s1[0]=a s1[1]=g s1[2]=m s2[-1]=ay s2[0]= s2[1]=ng s2[2]=om s3[-1]=lay s3[0]= s3[1]=ong s3[2]=rom s4[-1]=play s4[0]= s4[1]=song s4[2]=from 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|song w[1]|w[2]=song|from pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=song w[1..4]=from w[1..4]=Spotify +O w[-2]=play w[-1]=a w[0]=song w[1]=from w[2]=Spotify wl[-2]=play wl[-1]=a wl[0]=song wl[1]=from wl[2]=spotify pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=s p1[1]=f p1[2]=S p2[-2]=pl p2[-1]= p2[0]=so p2[1]=fr p2[2]=Sp p3[-2]=pla p3[-1]= p3[0]=son p3[1]=fro p3[2]=Spo p4[-2]=play p4[-1]= p4[0]=song p4[1]=from p4[2]=Spot s1[-2]=y s1[-1]=a s1[0]=g s1[1]=m s1[2]=y s2[-2]=ay s2[-1]= s2[0]=ng s2[1]=om s2[2]=fy s3[-2]=lay s3[-1]= s3[0]=ong s3[1]=rom s3[2]=ify s4[-2]=play s4[-1]= s4[0]=song s4[1]=from s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|song w[0]|w[1]=song|from w[1]|w[2]=from|Spotify pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=a w[1..4]=from w[1..4]=Spotify +O w[-2]=a w[-1]=song w[0]=from w[1]=Spotify wl[-2]=a wl[-1]=song wl[0]=from wl[1]=spotify pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=L shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=a p1[-1]=s p1[0]=f p1[1]=S p2[-2]= p2[-1]=so p2[0]=fr p2[1]=Sp p3[-2]= p3[-1]=son p3[0]=fro p3[1]=Spo p4[-2]= p4[-1]=song p4[0]=from p4[1]=Spot s1[-2]=a s1[-1]=g s1[0]=m s1[1]=y s2[-2]= s2[-1]=ng s2[0]=om s2[1]=fy s3[-2]= s3[-1]=ong s3[0]=rom s3[1]=ify s4[-2]= s4[-1]=song s4[0]=from s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=a|song w[-1]|w[0]=song|from w[0]|w[1]=from|Spotify pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=from w[0]=Spotify wl[-2]=song wl[-1]=from wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=f p1[0]=S p2[-2]=so p2[-1]=fr p2[0]=Sp p3[-2]=son p3[-1]=fro p3[0]=Spo p4[-2]=song p4[-1]=from p4[0]=Spot s1[-2]=g s1[-1]=m s1[0]=y s2[-2]=ng s2[-1]=om s2[0]=fy s3[-2]=ong s3[-1]=rom s3[0]=ify s4[-2]=song s4[-1]=from s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|from w[-1]|w[0]=from|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[-4..-1]=from __EOS__ + +O w[0]=play w[1]=Tears w[2]=in wl[0]=play wl[1]=tears wl[2]=in pos[0]=VB pos[1]=NNS pos[2]=NNS chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=T p1[2]=i p2[0]=pl p2[1]=Te p2[2]=in p3[0]=pla p3[1]=Tea p3[2]= p4[0]=play p4[1]=Tear p4[2]= s1[0]=y s1[1]=s s1[2]=n s2[0]=ay s2[1]=rs s2[2]=in s3[0]=lay s3[1]=ars s3[2]= s4[0]=play s4[1]=ears s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Tears w[1]|w[2]=Tears|in pos[0]|pos[1]=VB|NNS pos[1]|pos[2]=NNS|NNS chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Tears w[1..4]=in w[1..4]=Heaven w[1..4]=by __BOS__ +album w[-1]=play w[0]=Tears w[1]=in w[2]=Heaven wl[-1]=play wl[0]=tears wl[1]=in wl[2]=heaven pos[-1]=VB pos[0]=NNS pos[1]=NNS pos[2]=NNS chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLL shape[1]=LL shape[2]=ULLLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=T p1[1]=i p1[2]=H p2[-1]=pl p2[0]=Te p2[1]=in p2[2]=He p3[-1]=pla p3[0]=Tea p3[1]= p3[2]=Hea p4[-1]=play p4[0]=Tear p4[1]= p4[2]=Heav s1[-1]=y s1[0]=s s1[1]=n s1[2]=n s2[-1]=ay s2[0]=rs s2[1]=in s2[2]=en s3[-1]=lay s3[0]=ars s3[1]= s3[2]=ven s4[-1]=play s4[0]=ears s4[1]= s4[2]=aven 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Tears w[0]|w[1]=Tears|in w[1]|w[2]=in|Heaven pos[-1]|pos[0]=VB|NNS pos[0]|pos[1]=NNS|NNS pos[1]|pos[2]=NNS|NNS chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=in w[1..4]=Heaven w[1..4]=by w[1..4]=Eric +album w[-2]=play w[-1]=Tears w[0]=in w[1]=Heaven w[2]=by wl[-2]=play wl[-1]=tears wl[0]=in wl[1]=heaven wl[2]=by pos[-2]=VB pos[-1]=NNS pos[0]=NNS pos[1]=NNS pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=T p1[0]=i p1[1]=H p1[2]=b p2[-2]=pl p2[-1]=Te p2[0]=in p2[1]=He p2[2]=by p3[-2]=pla p3[-1]=Tea p3[0]= p3[1]=Hea p3[2]= p4[-2]=play p4[-1]=Tear p4[0]= p4[1]=Heav p4[2]= s1[-2]=y s1[-1]=s s1[0]=n s1[1]=n s1[2]=y s2[-2]=ay s2[-1]=rs s2[0]=in s2[1]=en s2[2]=by s3[-2]=lay s3[-1]=ars s3[0]= s3[1]=ven s3[2]= s4[-2]=play s4[-1]=ears s4[0]= s4[1]=aven s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Tears w[-1]|w[0]=Tears|in w[0]|w[1]=in|Heaven w[1]|w[2]=Heaven|by pos[-2]|pos[-1]=VB|NNS pos[-1]|pos[0]=NNS|NNS pos[0]|pos[1]=NNS|NNS pos[1]|pos[2]=NNS|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Tears w[1..4]=Heaven w[1..4]=by w[1..4]=Eric w[1..4]=Clapton +album w[-2]=Tears w[-1]=in w[0]=Heaven w[1]=by w[2]=Eric wl[-2]=tears wl[-1]=in wl[0]=heaven wl[1]=by wl[2]=eric pos[-2]=NNS pos[-1]=NNS pos[0]=NNS pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=LL shape[2]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=T p1[-1]=i p1[0]=H p1[1]=b p1[2]=E p2[-2]=Te p2[-1]=in p2[0]=He p2[1]=by p2[2]=Er p3[-2]=Tea p3[-1]= p3[0]=Hea p3[1]= p3[2]=Eri p4[-2]=Tear p4[-1]= p4[0]=Heav p4[1]= p4[2]=Eric s1[-2]=s s1[-1]=n s1[0]=n s1[1]=y s1[2]=c s2[-2]=rs s2[-1]=in s2[0]=en s2[1]=by s2[2]=ic s3[-2]=ars s3[-1]= s3[0]=ven s3[1]= s3[2]=ric s4[-2]=ears s4[-1]= s4[0]=aven s4[1]= s4[2]=Eric 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Tears|in w[-1]|w[0]=in|Heaven w[0]|w[1]=Heaven|by w[1]|w[2]=by|Eric pos[-2]|pos[-1]=NNS|NNS pos[-1]|pos[0]=NNS|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Tears w[-4..-1]=in w[1..4]=by w[1..4]=Eric w[1..4]=Clapton +O w[-2]=in w[-1]=Heaven w[0]=by w[1]=Eric w[2]=Clapton wl[-2]=in wl[-1]=heaven wl[0]=by wl[1]=eric wl[2]=clapton pos[-2]=NNS pos[-1]=NNS pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=LL shape[1]=ULLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=i p1[-1]=H p1[0]=b p1[1]=E p1[2]=C p2[-2]=in p2[-1]=He p2[0]=by p2[1]=Er p2[2]=Cl p3[-2]= p3[-1]=Hea p3[0]= p3[1]=Eri p3[2]=Cla p4[-2]= p4[-1]=Heav p4[0]= p4[1]=Eric p4[2]=Clap s1[-2]=n s1[-1]=n s1[0]=y s1[1]=c s1[2]=n s2[-2]=in s2[-1]=en s2[0]=by s2[1]=ic s2[2]=on s3[-2]= s3[-1]=ven s3[0]= s3[1]=ric s3[2]=ton s4[-2]= s4[-1]=aven s4[0]= s4[1]=Eric s4[2]=pton 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=in|Heaven w[-1]|w[0]=Heaven|by w[0]|w[1]=by|Eric w[1]|w[2]=Eric|Clapton pos[-2]|pos[-1]=NNS|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Tears w[-4..-1]=in w[-4..-1]=Heaven w[1..4]=Eric w[1..4]=Clapton +artist w[-2]=Heaven w[-1]=by w[0]=Eric w[1]=Clapton wl[-2]=heaven wl[-1]=by wl[0]=eric wl[1]=clapton pos[-2]=NNS pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=ULLL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=H p1[-1]=b p1[0]=E p1[1]=C p2[-2]=He p2[-1]=by p2[0]=Er p2[1]=Cl p3[-2]=Hea p3[-1]= p3[0]=Eri p3[1]=Cla p4[-2]=Heav p4[-1]= p4[0]=Eric p4[1]=Clap s1[-2]=n s1[-1]=y s1[0]=c s1[1]=n s2[-2]=en s2[-1]=by s2[0]=ic s2[1]=on s3[-2]=ven s3[-1]= s3[0]=ric s3[1]=ton s4[-2]=aven s4[-1]= s4[0]=Eric s4[1]=pton 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Heaven|by w[-1]|w[0]=by|Eric w[0]|w[1]=Eric|Clapton pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Tears w[-4..-1]=in w[-4..-1]=Heaven w[-4..-1]=by w[1..4]=Clapton +artist w[-2]=by w[-1]=Eric w[0]=Clapton wl[-2]=by wl[-1]=eric wl[0]=clapton pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=E p1[0]=C p2[-2]=by p2[-1]=Er p2[0]=Cl p3[-2]= p3[-1]=Eri p3[0]=Cla p4[-2]= p4[-1]=Eric p4[0]=Clap s1[-2]=y s1[-1]=c s1[0]=n s2[-2]=by s2[-1]=ic s2[0]=on s3[-2]= s3[-1]=ric s3[0]=ton s4[-2]= s4[-1]=Eric s4[0]=pton 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Eric w[-1]|w[0]=Eric|Clapton pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=in w[-4..-1]=Heaven w[-4..-1]=by w[-4..-1]=Eric __EOS__ + +O w[0]=play w[1]=song w[2]=by wl[0]=play wl[1]=song wl[2]=by pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=son p3[2]= p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=y s2[0]=ay s2[1]=ng s2[2]=by s3[0]=lay s3[1]=ong s3[2]= s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|by pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=song w[1..4]=by w[1..4]=Eminem w[1..4]=and __BOS__ +O w[-1]=play w[0]=song w[1]=by w[2]=Eminem wl[-1]=play wl[0]=song wl[1]=by wl[2]=eminem pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=E p2[-1]=pl p2[0]=so p2[1]=by p2[2]=Em p3[-1]=pla p3[0]=son p3[1]= p3[2]=Emi p4[-1]=play p4[0]=song p4[1]= p4[2]=Emin s1[-1]=y s1[0]=g s1[1]=y s1[2]=m s2[-1]=ay s2[0]=ng s2[1]=by s2[2]=em s3[-1]=lay s3[0]=ong s3[1]= s3[2]=nem s4[-1]=play s4[0]=song s4[1]= s4[2]=inem 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|by w[1]|w[2]=by|Eminem pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Eminem w[1..4]=and w[1..4]=Rihanna +O w[-2]=play w[-1]=song w[0]=by w[1]=Eminem w[2]=and wl[-2]=play wl[-1]=song wl[0]=by wl[1]=eminem wl[2]=and pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=CC chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=s p1[0]=b p1[1]=E p1[2]=a p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=Em p2[2]=an p3[-2]=pla p3[-1]=son p3[0]= p3[1]=Emi p3[2]=and p4[-2]=play p4[-1]=song p4[0]= p4[1]=Emin p4[2]= s1[-2]=y s1[-1]=g s1[0]=y s1[1]=m s1[2]=d s2[-2]=ay s2[-1]=ng s2[0]=by s2[1]=em s2[2]=nd s3[-2]=lay s3[-1]=ong s3[0]= s3[1]=nem s3[2]=and s4[-2]=play s4[-1]=song s4[0]= s4[1]=inem s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|by w[0]|w[1]=by|Eminem w[1]|w[2]=Eminem|and pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|CC chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=song w[1..4]=Eminem w[1..4]=and w[1..4]=Rihanna +artist w[-2]=song w[-1]=by w[0]=Eminem w[1]=and w[2]=Rihanna wl[-2]=song wl[-1]=by wl[0]=eminem wl[1]=and wl[2]=rihanna pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=CC pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=LLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=b p1[0]=E p1[1]=a p1[2]=R p2[-2]=so p2[-1]=by p2[0]=Em p2[1]=an p2[2]=Ri p3[-2]=son p3[-1]= p3[0]=Emi p3[1]=and p3[2]=Rih p4[-2]=song p4[-1]= p4[0]=Emin p4[1]= p4[2]=Riha s1[-2]=g s1[-1]=y s1[0]=m s1[1]=d s1[2]=a s2[-2]=ng s2[-1]=by s2[0]=em s2[1]=nd s2[2]=na s3[-2]=ong s3[-1]= s3[0]=nem s3[1]=and s3[2]=nna s4[-2]=song s4[-1]= s4[0]=inem s4[1]= s4[2]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|by w[-1]|w[0]=by|Eminem w[0]|w[1]=Eminem|and w[1]|w[2]=and|Rihanna pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|CC pos[1]|pos[2]=CC|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by w[1..4]=and w[1..4]=Rihanna +O w[-2]=by w[-1]=Eminem w[0]=and w[1]=Rihanna wl[-2]=by wl[-1]=eminem wl[0]=and wl[1]=rihanna pos[-2]=IN pos[-1]=NNP pos[0]=CC pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=LLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=b p1[-1]=E p1[0]=a p1[1]=R p2[-2]=by p2[-1]=Em p2[0]=an p2[1]=Ri p3[-2]= p3[-1]=Emi p3[0]=and p3[1]=Rih p4[-2]= p4[-1]=Emin p4[0]= p4[1]=Riha s1[-2]=y s1[-1]=m s1[0]=d s1[1]=a s2[-2]=by s2[-1]=em s2[0]=nd s2[1]=na s3[-2]= s3[-1]=nem s3[0]=and s3[1]=nna s4[-2]= s4[-1]=inem s4[0]= s4[1]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=by|Eminem w[-1]|w[0]=Eminem|and w[0]|w[1]=and|Rihanna pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|CC pos[0]|pos[1]=CC|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by w[-4..-1]=Eminem w[1..4]=Rihanna +artist w[-2]=Eminem w[-1]=and w[0]=Rihanna wl[-2]=eminem wl[-1]=and wl[0]=rihanna pos[-2]=NNP pos[-1]=CC pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLL shape[-1]=LLL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=E p1[-1]=a p1[0]=R p2[-2]=Em p2[-1]=an p2[0]=Ri p3[-2]=Emi p3[-1]=and p3[0]=Rih p4[-2]=Emin p4[-1]= p4[0]=Riha s1[-2]=m s1[-1]=d s1[0]=a s2[-2]=em s2[-1]=nd s2[0]=na s3[-2]=nem s3[-1]=and s3[0]=nna s4[-2]=inem s4[-1]= s4[0]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Eminem|and w[-1]|w[0]=and|Rihanna pos[-2]|pos[-1]=NNP|CC pos[-1]|pos[0]=CC|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=song w[-4..-1]=by w[-4..-1]=Eminem w[-4..-1]=and __EOS__ + +O w[0]=play w[1]=Miracles w[2]=from wl[0]=play wl[1]=miracles wl[2]=from pos[0]=VB pos[1]=NNS pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=LLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=M p1[2]=f p2[0]=pl p2[1]=Mi p2[2]=fr p3[0]=pla p3[1]=Mir p3[2]=fro p4[0]=play p4[1]=Mira p4[2]=from s1[0]=y s1[1]=s s1[2]=m s2[0]=ay s2[1]=es s2[2]=om s3[0]=lay s3[1]=les s3[2]=rom s4[0]=play s4[1]=cles s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Miracles w[1]|w[2]=Miracles|from pos[0]|pos[1]=VB|NNS pos[1]|pos[2]=NNS|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Miracles w[1..4]=from w[1..4]=phone __BOS__ +song w[-1]=play w[0]=Miracles w[1]=from w[2]=phone wl[-1]=play wl[0]=miracles wl[1]=from wl[2]=phone pos[-1]=VB pos[0]=NNS pos[1]=IN pos[2]=NN chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=LLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=M p1[1]=f p1[2]=p p2[-1]=pl p2[0]=Mi p2[1]=fr p2[2]=ph p3[-1]=pla p3[0]=Mir p3[1]=fro p3[2]=pho p4[-1]=play p4[0]=Mira p4[1]=from p4[2]=phon s1[-1]=y s1[0]=s s1[1]=m s1[2]=e s2[-1]=ay s2[0]=es s2[1]=om s2[2]=ne s3[-1]=lay s3[0]=les s3[1]=rom s3[2]=one s4[-1]=play s4[0]=cles s4[1]=from s4[2]=hone 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Miracles w[0]|w[1]=Miracles|from w[1]|w[2]=from|phone pos[-1]|pos[0]=VB|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=from w[1..4]=phone +O w[-2]=play w[-1]=Miracles w[0]=from w[1]=phone wl[-2]=play wl[-1]=miracles wl[0]=from wl[1]=phone pos[-2]=VB pos[-1]=NNS pos[0]=IN pos[1]=NN chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=M p1[0]=f p1[1]=p p2[-2]=pl p2[-1]=Mi p2[0]=fr p2[1]=ph p3[-2]=pla p3[-1]=Mir p3[0]=fro p3[1]=pho p4[-2]=play p4[-1]=Mira p4[0]=from p4[1]=phon s1[-2]=y s1[-1]=s s1[0]=m s1[1]=e s2[-2]=ay s2[-1]=es s2[0]=om s2[1]=ne s3[-2]=lay s3[-1]=les s3[0]=rom s3[1]=one s4[-2]=play s4[-1]=cles s4[0]=from s4[1]=hone 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Miracles w[-1]|w[0]=Miracles|from w[0]|w[1]=from|phone pos[-2]|pos[-1]=VB|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Miracles w[1..4]=phone +O w[-2]=Miracles w[-1]=from w[0]=phone wl[-2]=miracles wl[-1]=from wl[0]=phone pos[-2]=NNS pos[-1]=IN pos[0]=NN chk[-2]=I chk[-1]=O chk[0]=O shape[-2]=ULLLLLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter p1[-2]=M p1[-1]=f p1[0]=p p2[-2]=Mi p2[-1]=fr p2[0]=ph p3[-2]=Mir p3[-1]=fro p3[0]=pho p4[-2]=Mira p4[-1]=from p4[0]=phon s1[-2]=s s1[-1]=m s1[0]=e s2[-2]=es s2[-1]=om s2[0]=ne s3[-2]=les s3[-1]=rom s3[0]=one s4[-2]=cles s4[-1]=from s4[0]=hone 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Miracles|from w[-1]|w[0]=from|phone pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Miracles w[-4..-1]=from __EOS__ + +O w[0]=switch w[1]=to w[2]=workout wl[0]=switch wl[1]=to wl[2]=workout pos[0]=VB pos[1]=TO pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLLLL shape[1]=LL shape[2]=LLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=w p2[0]=sw p2[1]=to p2[2]=wo p3[0]=swi p3[1]= p3[2]=wor p4[0]=swit p4[1]= p4[2]=work s1[0]=h s1[1]=o s1[2]=t s2[0]=ch s2[1]=to s2[2]=ut s3[0]=tch s3[1]= s3[2]=out s4[0]=itch s4[1]= s4[2]=kout 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=switch|to w[1]|w[2]=to|workout pos[0]|pos[1]=VB|TO pos[1]|pos[2]=TO|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=workout w[1..4]=music __BOS__ +O w[-1]=switch w[0]=to w[1]=workout w[2]=music wl[-1]=switch wl[0]=to wl[1]=workout wl[2]=music pos[-1]=VB pos[0]=TO pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLLLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=s p1[0]=t p1[1]=w p1[2]=m p2[-1]=sw p2[0]=to p2[1]=wo p2[2]=mu p3[-1]=swi p3[0]= p3[1]=wor p3[2]=mus p4[-1]=swit p4[0]= p4[1]=work p4[2]=musi s1[-1]=h s1[0]=o s1[1]=t s1[2]=c s2[-1]=ch s2[0]=to s2[1]=ut s2[2]=ic s3[-1]=tch s3[0]= s3[1]=out s3[2]=sic s4[-1]=itch s4[0]= s4[1]=kout s4[2]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=switch|to w[0]|w[1]=to|workout w[1]|w[2]=workout|music pos[-1]|pos[0]=VB|TO pos[0]|pos[1]=TO|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=switch w[1..4]=workout w[1..4]=music +playlist w[-2]=switch w[-1]=to w[0]=workout w[1]=music wl[-2]=switch wl[-1]=to wl[0]=workout wl[1]=music pos[-2]=VB pos[-1]=TO pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=s p1[-1]=t p1[0]=w p1[1]=m p2[-2]=sw p2[-1]=to p2[0]=wo p2[1]=mu p3[-2]=swi p3[-1]= p3[0]=wor p3[1]=mus p4[-2]=swit p4[-1]= p4[0]=work p4[1]=musi s1[-2]=h s1[-1]=o s1[0]=t s1[1]=c s2[-2]=ch s2[-1]=to s2[0]=ut s2[1]=ic s3[-2]=tch s3[-1]= s3[0]=out s3[1]=sic s4[-2]=itch s4[-1]= s4[0]=kout s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=switch|to w[-1]|w[0]=to|workout w[0]|w[1]=workout|music pos[-2]|pos[-1]=VB|TO pos[-1]|pos[0]=TO|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=switch w[-4..-1]=to w[1..4]=music +O w[-2]=to w[-1]=workout w[0]=music wl[-2]=to wl[-1]=workout wl[0]=music pos[-2]=TO pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LL shape[-1]=LLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=w p1[0]=m p2[-2]=to p2[-1]=wo p2[0]=mu p3[-2]= p3[-1]=wor p3[0]=mus p4[-2]= p4[-1]=work p4[0]=musi s1[-2]=o s1[-1]=t s1[0]=c s2[-2]=to s2[-1]=ut s2[0]=ic s3[-2]= s3[-1]=out s3[0]=sic s4[-2]= s4[-1]=kout s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|workout w[-1]|w[0]=workout|music pos[-2]|pos[-1]=TO|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=switch w[-4..-1]=to w[-4..-1]=workout __EOS__ + +O w[0]=play w[1]=song w[2]=from wl[0]=play wl[1]=song wl[2]=from pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=f p2[0]=pl p2[1]=so p2[2]=fr p3[0]=pla p3[1]=son p3[2]=fro p4[0]=play p4[1]=song p4[2]=from s1[0]=y s1[1]=g s1[2]=m s2[0]=ay s2[1]=ng s2[2]=om s3[0]=lay s3[1]=ong s3[2]=rom s4[0]=play s4[1]=song s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|from pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=song w[1..4]=from w[1..4]=the w[1..4]=album __BOS__ +O w[-1]=play w[0]=song w[1]=from w[2]=the wl[-1]=play wl[0]=song wl[1]=from wl[2]=the pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=f p1[2]=t p2[-1]=pl p2[0]=so p2[1]=fr p2[2]=th p3[-1]=pla p3[0]=son p3[1]=fro p3[2]=the p4[-1]=play p4[0]=song p4[1]=from p4[2]= s1[-1]=y s1[0]=g s1[1]=m s1[2]=e s2[-1]=ay s2[0]=ng s2[1]=om s2[2]=he s3[-1]=lay s3[0]=ong s3[1]=rom s3[2]=the s4[-1]=play s4[0]=song s4[1]=from s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|from w[1]|w[2]=from|the pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=from w[1..4]=the w[1..4]=album w[1..4]=Address +O w[-2]=play w[-1]=song w[0]=from w[1]=the w[2]=album wl[-2]=play wl[-1]=song wl[0]=from wl[1]=the wl[2]=album pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=s p1[0]=f p1[1]=t p1[2]=a p2[-2]=pl p2[-1]=so p2[0]=fr p2[1]=th p2[2]=al p3[-2]=pla p3[-1]=son p3[0]=fro p3[1]=the p3[2]=alb p4[-2]=play p4[-1]=song p4[0]=from p4[1]= p4[2]=albu s1[-2]=y s1[-1]=g s1[0]=m s1[1]=e s1[2]=m s2[-2]=ay s2[-1]=ng s2[0]=om s2[1]=he s2[2]=um s3[-2]=lay s3[-1]=ong s3[0]=rom s3[1]=the s3[2]=bum s4[-2]=play s4[-1]=song s4[0]=from s4[1]= s4[2]=lbum 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|from w[0]|w[1]=from|the w[1]|w[2]=the|album pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=song w[1..4]=the w[1..4]=album w[1..4]=Address +O w[-2]=song w[-1]=from w[0]=the w[1]=album w[2]=Address wl[-2]=song wl[-1]=from wl[0]=the wl[1]=album wl[2]=address pos[-2]=NN pos[-1]=IN pos[0]=DT pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=f p1[0]=t p1[1]=a p1[2]=A p2[-2]=so p2[-1]=fr p2[0]=th p2[1]=al p2[2]=Ad p3[-2]=son p3[-1]=fro p3[0]=the p3[1]=alb p3[2]=Add p4[-2]=song p4[-1]=from p4[0]= p4[1]=albu p4[2]=Addr s1[-2]=g s1[-1]=m s1[0]=e s1[1]=m s1[2]=s s2[-2]=ng s2[-1]=om s2[0]=he s2[1]=um s2[2]=ss s3[-2]=ong s3[-1]=rom s3[0]=the s3[1]=bum s3[2]=ess s4[-2]=song s4[-1]=from s4[0]= s4[1]=lbum s4[2]=ress 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|from w[-1]|w[0]=from|the w[0]|w[1]=the|album w[1]|w[2]=album|Address pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=from w[1..4]=album w[1..4]=Address +O w[-2]=from w[-1]=the w[0]=album w[1]=Address wl[-2]=from wl[-1]=the wl[0]=album wl[1]=address pos[-2]=IN pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=f p1[-1]=t p1[0]=a p1[1]=A p2[-2]=fr p2[-1]=th p2[0]=al p2[1]=Ad p3[-2]=fro p3[-1]=the p3[0]=alb p3[1]=Add p4[-2]=from p4[-1]= p4[0]=albu p4[1]=Addr s1[-2]=m s1[-1]=e s1[0]=m s1[1]=s s2[-2]=om s2[-1]=he s2[0]=um s2[1]=ss s3[-2]=rom s3[-1]=the s3[0]=bum s3[1]=ess s4[-2]=from s4[-1]= s4[0]=lbum s4[1]=ress 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=from|the w[-1]|w[0]=the|album w[0]|w[1]=album|Address pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=from w[-4..-1]=the w[1..4]=Address +album w[-2]=the w[-1]=album w[0]=Address wl[-2]=the wl[-1]=album wl[0]=address pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL shape[-1]=LLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=a p1[0]=A p2[-2]=th p2[-1]=al p2[0]=Ad p3[-2]=the p3[-1]=alb p3[0]=Add p4[-2]= p4[-1]=albu p4[0]=Addr s1[-2]=e s1[-1]=m s1[0]=s s2[-2]=he s2[-1]=um s2[0]=ss s3[-2]=the s3[-1]=bum s3[0]=ess s4[-2]= s4[-1]=lbum s4[0]=ress 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|album w[-1]|w[0]=album|Address pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=song w[-4..-1]=from w[-4..-1]=the w[-4..-1]=album __EOS__ + +O w[0]=play w[1]=some w[2]=good wl[0]=play wl[1]=some wl[2]=good pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=g p2[0]=pl p2[1]=so p2[2]=go p3[0]=pla p3[1]=som p3[2]=goo p4[0]=play p4[1]=some p4[2]=good s1[0]=y s1[1]=e s1[2]=d s2[0]=ay s2[1]=me s2[2]=od s3[0]=lay s3[1]=ome s3[2]=ood s4[0]=play s4[1]=some s4[2]=good 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|some w[1]|w[2]=some|good pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=some w[1..4]=good w[1..4]=music __BOS__ +O w[-1]=play w[0]=some w[1]=good w[2]=music wl[-1]=play wl[0]=some wl[1]=good wl[2]=music pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=g p1[2]=m p2[-1]=pl p2[0]=so p2[1]=go p2[2]=mu p3[-1]=pla p3[0]=som p3[1]=goo p3[2]=mus p4[-1]=play p4[0]=some p4[1]=good p4[2]=musi s1[-1]=y s1[0]=e s1[1]=d s1[2]=c s2[-1]=ay s2[0]=me s2[1]=od s2[2]=ic s3[-1]=lay s3[0]=ome s3[1]=ood s3[2]=sic s4[-1]=play s4[0]=some s4[1]=good s4[2]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|some w[0]|w[1]=some|good w[1]|w[2]=good|music pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=good w[1..4]=music +O w[-2]=play w[-1]=some w[0]=good w[1]=music wl[-2]=play wl[-1]=some wl[0]=good wl[1]=music pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=s p1[0]=g p1[1]=m p2[-2]=pl p2[-1]=so p2[0]=go p2[1]=mu p3[-2]=pla p3[-1]=som p3[0]=goo p3[1]=mus p4[-2]=play p4[-1]=some p4[0]=good p4[1]=musi s1[-2]=y s1[-1]=e s1[0]=d s1[1]=c s2[-2]=ay s2[-1]=me s2[0]=od s2[1]=ic s3[-2]=lay s3[-1]=ome s3[0]=ood s3[1]=sic s4[-2]=play s4[-1]=some s4[0]=good s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|some w[-1]|w[0]=some|good w[0]|w[1]=good|music pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[1..4]=music +O w[-2]=some w[-1]=good w[0]=music wl[-2]=some wl[-1]=good wl[0]=music pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=g p1[0]=m p2[-2]=so p2[-1]=go p2[0]=mu p3[-2]=som p3[-1]=goo p3[0]=mus p4[-2]=some p4[-1]=good p4[0]=musi s1[-2]=e s1[-1]=d s1[0]=c s2[-2]=me s2[-1]=od s2[0]=ic s3[-2]=ome s3[-1]=ood s3[0]=sic s4[-2]=some s4[-1]=good s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|good w[-1]|w[0]=good|music pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=good __EOS__ + +O w[0]=play w[1]=Black w[2]=Widow wl[0]=play wl[1]=black wl[2]=widow pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLL shape[2]=ULLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=B p1[2]=W p2[0]=pl p2[1]=Bl p2[2]=Wi p3[0]=pla p3[1]=Bla p3[2]=Wid p4[0]=play p4[1]=Blac p4[2]=Wido s1[0]=y s1[1]=k s1[2]=w s2[0]=ay s2[1]=ck s2[2]=ow s3[0]=lay s3[1]=ack s3[2]=dow s4[0]=play s4[1]=lack s4[2]=idow 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Black w[1]|w[2]=Black|Widow pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Black w[1..4]=Widow w[1..4]=by w[1..4]=Iggy __BOS__ +song w[-1]=play w[0]=Black w[1]=Widow w[2]=by wl[-1]=play wl[0]=black wl[1]=widow wl[2]=by pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULLLL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=B p1[1]=W p1[2]=b p2[-1]=pl p2[0]=Bl p2[1]=Wi p2[2]=by p3[-1]=pla p3[0]=Bla p3[1]=Wid p3[2]= p4[-1]=play p4[0]=Blac p4[1]=Wido p4[2]= s1[-1]=y s1[0]=k s1[1]=w s1[2]=y s2[-1]=ay s2[0]=ck s2[1]=ow s2[2]=by s3[-1]=lay s3[0]=ack s3[1]=dow s3[2]= s4[-1]=play s4[0]=lack s4[1]=idow s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Black w[0]|w[1]=Black|Widow w[1]|w[2]=Widow|by pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Widow w[1..4]=by w[1..4]=Iggy w[1..4]=Azalea +song w[-2]=play w[-1]=Black w[0]=Widow w[1]=by w[2]=Iggy wl[-2]=play wl[-1]=black wl[0]=widow wl[1]=by wl[2]=iggy pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULLLL shape[1]=LL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=B p1[0]=W p1[1]=b p1[2]=I p2[-2]=pl p2[-1]=Bl p2[0]=Wi p2[1]=by p2[2]=Ig p3[-2]=pla p3[-1]=Bla p3[0]=Wid p3[1]= p3[2]=Igg p4[-2]=play p4[-1]=Blac p4[0]=Wido p4[1]= p4[2]=Iggy s1[-2]=y s1[-1]=k s1[0]=w s1[1]=y s1[2]=y s2[-2]=ay s2[-1]=ck s2[0]=ow s2[1]=by s2[2]=gy s3[-2]=lay s3[-1]=ack s3[0]=dow s3[1]= s3[2]=ggy s4[-2]=play s4[-1]=lack s4[0]=idow s4[1]= s4[2]=Iggy 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Black w[-1]|w[0]=Black|Widow w[0]|w[1]=Widow|by w[1]|w[2]=by|Iggy pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Black w[1..4]=by w[1..4]=Iggy w[1..4]=Azalea w[1..4]=song +O w[-2]=Black w[-1]=Widow w[0]=by w[1]=Iggy w[2]=Azalea wl[-2]=black wl[-1]=widow wl[0]=by wl[1]=iggy wl[2]=azalea pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=B p1[-1]=W p1[0]=b p1[1]=I p1[2]=A p2[-2]=Bl p2[-1]=Wi p2[0]=by p2[1]=Ig p2[2]=Az p3[-2]=Bla p3[-1]=Wid p3[0]= p3[1]=Igg p3[2]=Aza p4[-2]=Blac p4[-1]=Wido p4[0]= p4[1]=Iggy p4[2]=Azal s1[-2]=k s1[-1]=w s1[0]=y s1[1]=y s1[2]=a s2[-2]=ck s2[-1]=ow s2[0]=by s2[1]=gy s2[2]=ea s3[-2]=ack s3[-1]=dow s3[0]= s3[1]=ggy s3[2]=lea s4[-2]=lack s4[-1]=idow s4[0]= s4[1]=Iggy s4[2]=alea 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Black|Widow w[-1]|w[0]=Widow|by w[0]|w[1]=by|Iggy w[1]|w[2]=Iggy|Azalea pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Black w[-4..-1]=Widow w[1..4]=Iggy w[1..4]=Azalea w[1..4]=song w[1..4]=on +artist w[-2]=Widow w[-1]=by w[0]=Iggy w[1]=Azalea w[2]=song wl[-2]=widow wl[-1]=by wl[0]=iggy wl[1]=azalea wl[2]=song pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NNP pos[2]=NN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLL shape[1]=ULLLLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=W p1[-1]=b p1[0]=I p1[1]=A p1[2]=s p2[-2]=Wi p2[-1]=by p2[0]=Ig p2[1]=Az p2[2]=so p3[-2]=Wid p3[-1]= p3[0]=Igg p3[1]=Aza p3[2]=son p4[-2]=Wido p4[-1]= p4[0]=Iggy p4[1]=Azal p4[2]=song s1[-2]=w s1[-1]=y s1[0]=y s1[1]=a s1[2]=g s2[-2]=ow s2[-1]=by s2[0]=gy s2[1]=ea s2[2]=ng s3[-2]=dow s3[-1]= s3[0]=ggy s3[1]=lea s3[2]=ong s4[-2]=idow s4[-1]= s4[0]=Iggy s4[1]=alea s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Widow|by w[-1]|w[0]=by|Iggy w[0]|w[1]=Iggy|Azalea w[1]|w[2]=Azalea|song pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Black w[-4..-1]=Widow w[-4..-1]=by w[1..4]=Azalea w[1..4]=song w[1..4]=on w[1..4]=Spotify +artist w[-2]=by w[-1]=Iggy w[0]=Azalea w[1]=song w[2]=on wl[-2]=by wl[-1]=iggy wl[0]=azalea wl[1]=song wl[2]=on pos[-2]=IN pos[-1]=NNP pos[0]=NNP pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=ULLL shape[0]=ULLLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=b p1[-1]=I p1[0]=A p1[1]=s p1[2]=o p2[-2]=by p2[-1]=Ig p2[0]=Az p2[1]=so p2[2]=on p3[-2]= p3[-1]=Igg p3[0]=Aza p3[1]=son p3[2]= p4[-2]= p4[-1]=Iggy p4[0]=Azal p4[1]=song p4[2]= s1[-2]=y s1[-1]=y s1[0]=a s1[1]=g s1[2]=n s2[-2]=by s2[-1]=gy s2[0]=ea s2[1]=ng s2[2]=on s3[-2]= s3[-1]=ggy s3[0]=lea s3[1]=ong s3[2]= s4[-2]= s4[-1]=Iggy s4[0]=alea s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Iggy w[-1]|w[0]=Iggy|Azalea w[0]|w[1]=Azalea|song w[1]|w[2]=song|on pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=Black w[-4..-1]=Widow w[-4..-1]=by w[-4..-1]=Iggy w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=Iggy w[-1]=Azalea w[0]=song w[1]=on w[2]=Spotify wl[-2]=iggy wl[-1]=azalea wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=NNP pos[-1]=NNP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=ULLL shape[-1]=ULLLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=I p1[-1]=A p1[0]=s p1[1]=o p1[2]=S p2[-2]=Ig p2[-1]=Az p2[0]=so p2[1]=on p2[2]=Sp p3[-2]=Igg p3[-1]=Aza p3[0]=son p3[1]= p3[2]=Spo p4[-2]=Iggy p4[-1]=Azal p4[0]=song p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=a s1[0]=g s1[1]=n s1[2]=y s2[-2]=gy s2[-1]=ea s2[0]=ng s2[1]=on s2[2]=fy s3[-2]=ggy s3[-1]=lea s3[0]=ong s3[1]= s3[2]=ify s4[-2]=Iggy s4[-1]=alea s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Iggy|Azalea w[-1]|w[0]=Azalea|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Widow w[-4..-1]=by w[-4..-1]=Iggy w[-4..-1]=Azalea w[1..4]=on w[1..4]=Spotify +O w[-2]=Azalea w[-1]=song w[0]=on w[1]=Spotify wl[-2]=azalea wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=A p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Az p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=Aza p3[-1]=son p3[0]= p3[1]=Spo p4[-2]=Azal p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=a s1[-1]=g s1[0]=n s1[1]=y s2[-2]=ea s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]=lea s3[-1]=ong s3[0]= s3[1]=ify s4[-2]=alea s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Azalea|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Iggy w[-4..-1]=Azalea w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Iggy w[-4..-1]=Azalea w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=the w[2]=song wl[0]=play wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=the p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=he s2[2]=ng s3[0]=lay s3[1]=the s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song w[1..4]=Love w[1..4]=Me __BOS__ +O w[-1]=play w[0]=the w[1]=song w[2]=Love wl[-1]=play wl[0]=the wl[1]=song wl[2]=love pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=s p1[2]=L p2[-1]=pl p2[0]=th p2[1]=so p2[2]=Lo p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Lov p4[-1]=play p4[0]= p4[1]=song p4[2]=Love s1[-1]=y s1[0]=e s1[1]=g s1[2]=e s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=ve s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ove s4[-1]=play s4[0]= s4[1]=song s4[2]=Love 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Love pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Love w[1..4]=Me w[1..4]=Like +O w[-2]=play w[-1]=the w[0]=song w[1]=Love w[2]=Me wl[-2]=play wl[-1]=the wl[0]=song wl[1]=love wl[2]=me pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=VB pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLL shape[2]=UL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=t p1[0]=s p1[1]=L p1[2]=M p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=Lo p2[2]=Me p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Lov p3[2]= p4[-2]=play p4[-1]= p4[0]=song p4[1]=Love p4[2]= s1[-2]=y s1[-1]=e s1[0]=g s1[1]=e s1[2]=e s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=ve s2[2]=Me s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ove s3[2]= s4[-2]=play s4[-1]= s4[0]=song s4[1]=Love s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Love w[1]|w[2]=Love|Me pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|VB pos[1]|pos[2]=VB|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[1..4]=Love w[1..4]=Me w[1..4]=Like w[1..4]=You +song w[-2]=the w[-1]=song w[0]=Love w[1]=Me w[2]=Like wl[-2]=the wl[-1]=song wl[0]=love wl[1]=me wl[2]=like pos[-2]=DT pos[-1]=NN pos[0]=VB pos[1]=VB pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLL shape[1]=UL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=t p1[-1]=s p1[0]=L p1[1]=M p1[2]=L p2[-2]=th p2[-1]=so p2[0]=Lo p2[1]=Me p2[2]=Li p3[-2]=the p3[-1]=son p3[0]=Lov p3[1]= p3[2]=Lik p4[-2]= p4[-1]=song p4[0]=Love p4[1]= p4[2]=Like s1[-2]=e s1[-1]=g s1[0]=e s1[1]=e s1[2]=e s2[-2]=he s2[-1]=ng s2[0]=ve s2[1]=Me s2[2]=ke s3[-2]=the s3[-1]=ong s3[0]=ove s3[1]= s3[2]=ike s4[-2]= s4[-1]=song s4[0]=Love s4[1]= s4[2]=Like 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Love w[0]|w[1]=Love|Me w[1]|w[2]=Me|Like pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[1..4]=Me w[1..4]=Like w[1..4]=You w[1..4]=Do +song w[-2]=song w[-1]=Love w[0]=Me w[1]=Like w[2]=You wl[-2]=song wl[-1]=love wl[0]=me wl[1]=like wl[2]=you pos[-2]=NN pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=VB chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=UL shape[1]=ULLL shape[2]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=s p1[-1]=L p1[0]=M p1[1]=L p1[2]=Y p2[-2]=so p2[-1]=Lo p2[0]=Me p2[1]=Li p2[2]=Yo p3[-2]=son p3[-1]=Lov p3[0]= p3[1]=Lik p3[2]=You p4[-2]=song p4[-1]=Love p4[0]= p4[1]=Like p4[2]= s1[-2]=g s1[-1]=e s1[0]=e s1[1]=e s1[2]=u s2[-2]=ng s2[-1]=ve s2[0]=Me s2[1]=ke s2[2]=ou s3[-2]=ong s3[-1]=ove s3[0]= s3[1]=ike s3[2]=You s4[-2]=song s4[-1]=Love s4[0]= s4[1]=Like s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Love w[-1]|w[0]=Love|Me w[0]|w[1]=Me|Like w[1]|w[2]=Like|You pos[-2]|pos[-1]=NN|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Love w[1..4]=Like w[1..4]=You w[1..4]=Do +song w[-2]=Love w[-1]=Me w[0]=Like w[1]=You w[2]=Do wl[-2]=love wl[-1]=me wl[0]=like wl[1]=you wl[2]=do pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=VB chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=UL shape[0]=ULLL shape[1]=ULL shape[2]=UL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=L p1[-1]=M p1[0]=L p1[1]=Y p1[2]=D p2[-2]=Lo p2[-1]=Me p2[0]=Li p2[1]=Yo p2[2]=Do p3[-2]=Lov p3[-1]= p3[0]=Lik p3[1]=You p3[2]= p4[-2]=Love p4[-1]= p4[0]=Like p4[1]= p4[2]= s1[-2]=e s1[-1]=e s1[0]=e s1[1]=u s1[2]=o s2[-2]=ve s2[-1]=Me s2[0]=ke s2[1]=ou s2[2]=Do s3[-2]=ove s3[-1]= s3[0]=ike s3[1]=You s3[2]= s4[-2]=Love s4[-1]= s4[0]=Like s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Love|Me w[-1]|w[0]=Me|Like w[0]|w[1]=Like|You w[1]|w[2]=You|Do pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Love w[-4..-1]=Me w[1..4]=You w[1..4]=Do +song w[-2]=Me w[-1]=Like w[0]=You w[1]=Do wl[-2]=me wl[-1]=like wl[0]=you wl[1]=do pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=VB chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=UL shape[-1]=ULLL shape[0]=ULL shape[1]=UL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=M p1[-1]=L p1[0]=Y p1[1]=D p2[-2]=Me p2[-1]=Li p2[0]=Yo p2[1]=Do p3[-2]= p3[-1]=Lik p3[0]=You p3[1]= p4[-2]= p4[-1]=Like p4[0]= p4[1]= s1[-2]=e s1[-1]=e s1[0]=u s1[1]=o s2[-2]=Me s2[-1]=ke s2[0]=ou s2[1]=Do s3[-2]= s3[-1]=ike s3[0]=You s3[1]= s4[-2]= s4[-1]=Like s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Me|Like w[-1]|w[0]=Like|You w[0]|w[1]=You|Do pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=song w[-4..-1]=Love w[-4..-1]=Me w[-4..-1]=Like w[1..4]=Do +song w[-2]=Like w[-1]=You w[0]=Do wl[-2]=like wl[-1]=you wl[0]=do pos[-2]=VB pos[-1]=VB pos[0]=VB chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=ULL shape[0]=UL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=L p1[-1]=Y p1[0]=D p2[-2]=Li p2[-1]=Yo p2[0]=Do p3[-2]=Lik p3[-1]=You p3[0]= p4[-2]=Like p4[-1]= p4[0]= s1[-2]=e s1[-1]=u s1[0]=o s2[-2]=ke s2[-1]=ou s2[0]=Do s3[-2]=ike s3[-1]=You s3[0]= s4[-2]=Like s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Like|You w[-1]|w[0]=You|Do pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Love w[-4..-1]=Me w[-4..-1]=Like w[-4..-1]=You __EOS__ + +O w[0]=play w[1]=some w[2]=rock wl[0]=play wl[1]=some wl[2]=rock pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=r p2[0]=pl p2[1]=so p2[2]=ro p3[0]=pla p3[1]=som p3[2]=roc p4[0]=play p4[1]=some p4[2]=rock s1[0]=y s1[1]=e s1[2]=k s2[0]=ay s2[1]=me s2[2]=ck s3[0]=lay s3[1]=ome s3[2]=ock s4[0]=play s4[1]=some s4[2]=rock 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|some w[1]|w[2]=some|rock pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=some w[1..4]=rock w[1..4]=n w[1..4]=roll __BOS__ +O w[-1]=play w[0]=some w[1]=rock w[2]=n wl[-1]=play wl[0]=some wl[1]=rock wl[2]=n pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=r p1[2]=n p2[-1]=pl p2[0]=so p2[1]=ro p2[2]= p3[-1]=pla p3[0]=som p3[1]=roc p3[2]= p4[-1]=play p4[0]=some p4[1]=rock p4[2]= s1[-1]=y s1[0]=e s1[1]=k s1[2]=n s2[-1]=ay s2[0]=me s2[1]=ck s2[2]= s3[-1]=lay s3[0]=ome s3[1]=ock s3[2]= s4[-1]=play s4[0]=some s4[1]=rock s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|some w[0]|w[1]=some|rock w[1]|w[2]=rock|n pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=rock w[1..4]=n w[1..4]=roll w[1..4]=music +genre w[-2]=play w[-1]=some w[0]=rock w[1]=n w[2]=roll wl[-2]=play wl[-1]=some wl[0]=rock wl[1]=n wl[2]=roll pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=s p1[0]=r p1[1]=n p1[2]=r p2[-2]=pl p2[-1]=so p2[0]=ro p2[1]= p2[2]=ro p3[-2]=pla p3[-1]=som p3[0]=roc p3[1]= p3[2]=rol p4[-2]=play p4[-1]=some p4[0]=rock p4[1]= p4[2]=roll s1[-2]=y s1[-1]=e s1[0]=k s1[1]=n s1[2]=l s2[-2]=ay s2[-1]=me s2[0]=ck s2[1]= s2[2]=ll s3[-2]=lay s3[-1]=ome s3[0]=ock s3[1]= s3[2]=oll s4[-2]=play s4[-1]=some s4[0]=rock s4[1]= s4[2]=roll 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|some w[-1]|w[0]=some|rock w[0]|w[1]=rock|n w[1]|w[2]=n|roll pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[1..4]=n w[1..4]=roll w[1..4]=music +genre w[-2]=some w[-1]=rock w[0]=n w[1]=roll w[2]=music wl[-2]=some wl[-1]=rock wl[0]=n wl[1]=roll wl[2]=music pos[-2]=DT pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=L shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=r p1[0]=n p1[1]=r p1[2]=m p2[-2]=so p2[-1]=ro p2[0]= p2[1]=ro p2[2]=mu p3[-2]=som p3[-1]=roc p3[0]= p3[1]=rol p3[2]=mus p4[-2]=some p4[-1]=rock p4[0]= p4[1]=roll p4[2]=musi s1[-2]=e s1[-1]=k s1[0]=n s1[1]=l s1[2]=c s2[-2]=me s2[-1]=ck s2[0]= s2[1]=ll s2[2]=ic s3[-2]=ome s3[-1]=ock s3[0]= s3[1]=oll s3[2]=sic s4[-2]=some s4[-1]=rock s4[0]= s4[1]=roll s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=some|rock w[-1]|w[0]=rock|n w[0]|w[1]=n|roll w[1]|w[2]=roll|music pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=rock w[1..4]=roll w[1..4]=music +genre w[-2]=rock w[-1]=n w[0]=roll w[1]=music wl[-2]=rock wl[-1]=n wl[0]=roll wl[1]=music pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=r p1[-1]=n p1[0]=r p1[1]=m p2[-2]=ro p2[-1]= p2[0]=ro p2[1]=mu p3[-2]=roc p3[-1]= p3[0]=rol p3[1]=mus p4[-2]=rock p4[-1]= p4[0]=roll p4[1]=musi s1[-2]=k s1[-1]=n s1[0]=l s1[1]=c s2[-2]=ck s2[-1]= s2[0]=ll s2[1]=ic s3[-2]=ock s3[-1]= s3[0]=oll s3[1]=sic s4[-2]=rock s4[-1]= s4[0]=roll s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=rock|n w[-1]|w[0]=n|roll w[0]|w[1]=roll|music pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=rock w[-4..-1]=n w[1..4]=music +O w[-2]=n w[-1]=roll w[0]=music wl[-2]=n wl[-1]=roll wl[0]=music pos[-2]=NN pos[-1]=NN pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=L shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=n p1[-1]=r p1[0]=m p2[-2]= p2[-1]=ro p2[0]=mu p3[-2]= p3[-1]=rol p3[0]=mus p4[-2]= p4[-1]=roll p4[0]=musi s1[-2]=n s1[-1]=l s1[0]=c s2[-2]= s2[-1]=ll s2[0]=ic s3[-2]= s3[-1]=oll s3[0]=sic s4[-2]= s4[-1]=roll s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=n|roll w[-1]|w[0]=roll|music pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=some w[-4..-1]=rock w[-4..-1]=n w[-4..-1]=roll __EOS__ + +O w[0]=play w[1]=Drake wl[0]=play wl[1]=drake pos[0]=VB pos[1]=NNP chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=ULLLL shaped[0]=L shaped[1]=UL type[0]=AllLetter type[1]=InitUpper p1[0]=p p1[1]=D p2[0]=pl p2[1]=Dr p3[0]=pla p3[1]=Dra p4[0]=play p4[1]=Drak s1[0]=y s1[1]=e s2[0]=ay s2[1]=ke s3[0]=lay s3[1]=ake s4[0]=play s4[1]=rake 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=yes cs[0]=no cs[1]=no w[0]|w[1]=play|Drake pos[0]|pos[1]=VB|NNP chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|UL type[0]|type[1]=AllLetter|InitUpper w[1..4]=Drake __BOS__ +artist w[-1]=play w[0]=Drake wl[-1]=play wl[0]=drake pos[-1]=VB pos[0]=NNP chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=ULLLL shaped[-1]=L shaped[0]=UL type[-1]=AllLetter type[0]=InitUpper p1[-1]=p p1[0]=D p2[-1]=pl p2[0]=Dr p3[-1]=pla p3[0]=Dra p4[-1]=play p4[0]=Drak s1[-1]=y s1[0]=e s2[-1]=ay s2[0]=ke s3[-1]=lay s3[0]=ake s4[-1]=play s4[0]=rake 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=yes cs[-1]=no cs[0]=no w[-1]|w[0]=play|Drake pos[-1]|pos[0]=VB|NNP chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|UL type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play __EOS__ + +O w[0]=start w[1]=playing w[2]=The wl[0]=start wl[1]=playing wl[2]=the pos[0]=VB pos[1]=VBG pos[2]=DT chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLLL shape[1]=LLLLLLL shape[2]=ULL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=s p1[1]=p p1[2]=T p2[0]=st p2[1]=pl p2[2]=Th p3[0]=sta p3[1]=pla p3[2]=The p4[0]=star p4[1]=play p4[2]= s1[0]=t s1[1]=g s1[2]=e s2[0]=rt s2[1]=ng s2[2]=he s3[0]=art s3[1]=ing s3[2]=The s4[0]=tart s4[1]=ying s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=start|playing w[1]|w[2]=playing|The pos[0]|pos[1]=VB|VBG pos[1]|pos[2]=VBG|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=playing w[1..4]=The w[1..4]=Lost w[1..4]=song __BOS__ +O w[-1]=start w[0]=playing w[1]=The w[2]=Lost wl[-1]=start wl[0]=playing wl[1]=the wl[2]=lost pos[-1]=VB pos[0]=VBG pos[1]=DT pos[2]=DT chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLLL shape[0]=LLLLLLL shape[1]=ULL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=s p1[0]=p p1[1]=T p1[2]=L p2[-1]=st p2[0]=pl p2[1]=Th p2[2]=Lo p3[-1]=sta p3[0]=pla p3[1]=The p3[2]=Los p4[-1]=star p4[0]=play p4[1]= p4[2]=Lost s1[-1]=t s1[0]=g s1[1]=e s1[2]=t s2[-1]=rt s2[0]=ng s2[1]=he s2[2]=st s3[-1]=art s3[0]=ing s3[1]=The s3[2]=ost s4[-1]=tart s4[0]=ying s4[1]= s4[2]=Lost 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=start|playing w[0]|w[1]=playing|The w[1]|w[2]=The|Lost pos[-1]|pos[0]=VB|VBG pos[0]|pos[1]=VBG|DT pos[1]|pos[2]=DT|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=start w[1..4]=The w[1..4]=Lost w[1..4]=song +song w[-2]=start w[-1]=playing w[0]=The w[1]=Lost w[2]=song wl[-2]=start wl[-1]=playing wl[0]=the wl[1]=lost wl[2]=song pos[-2]=VB pos[-1]=VBG pos[0]=DT pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLL shape[-1]=LLLLLLL shape[0]=ULL shape[1]=ULLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=s p1[-1]=p p1[0]=T p1[1]=L p1[2]=s p2[-2]=st p2[-1]=pl p2[0]=Th p2[1]=Lo p2[2]=so p3[-2]=sta p3[-1]=pla p3[0]=The p3[1]=Los p3[2]=son p4[-2]=star p4[-1]=play p4[0]= p4[1]=Lost p4[2]=song s1[-2]=t s1[-1]=g s1[0]=e s1[1]=t s1[2]=g s2[-2]=rt s2[-1]=ng s2[0]=he s2[1]=st s2[2]=ng s3[-2]=art s3[-1]=ing s3[0]=The s3[1]=ost s3[2]=ong s4[-2]=tart s4[-1]=ying s4[0]= s4[1]=Lost s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=start|playing w[-1]|w[0]=playing|The w[0]|w[1]=The|Lost w[1]|w[2]=Lost|song pos[-2]|pos[-1]=VB|VBG pos[-1]|pos[0]=VBG|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=start w[-4..-1]=playing w[1..4]=Lost w[1..4]=song +song w[-2]=playing w[-1]=The w[0]=Lost w[1]=song wl[-2]=playing wl[-1]=the wl[0]=lost wl[1]=song pos[-2]=VBG pos[-1]=DT pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O shape[-2]=LLLLLLL shape[-1]=ULL shape[0]=ULLL shape[1]=LLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-2]=p p1[-1]=T p1[0]=L p1[1]=s p2[-2]=pl p2[-1]=Th p2[0]=Lo p2[1]=so p3[-2]=pla p3[-1]=The p3[0]=Los p3[1]=son p4[-2]=play p4[-1]= p4[0]=Lost p4[1]=song s1[-2]=g s1[-1]=e s1[0]=t s1[1]=g s2[-2]=ng s2[-1]=he s2[0]=st s2[1]=ng s3[-2]=ing s3[-1]=The s3[0]=ost s3[1]=ong s4[-2]=ying s4[-1]= s4[0]=Lost s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=playing|The w[-1]|w[0]=The|Lost w[0]|w[1]=Lost|song pos[-2]|pos[-1]=VBG|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=start w[-4..-1]=playing w[-4..-1]=The w[1..4]=song +O w[-2]=The w[-1]=Lost w[0]=song wl[-2]=the wl[-1]=lost wl[0]=song pos[-2]=DT pos[-1]=DT pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULL shape[-1]=ULLL shape[0]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=T p1[-1]=L p1[0]=s p2[-2]=Th p2[-1]=Lo p2[0]=so p3[-2]=The p3[-1]=Los p3[0]=son p4[-2]= p4[-1]=Lost p4[0]=song s1[-2]=e s1[-1]=t s1[0]=g s2[-2]=he s2[-1]=st s2[0]=ng s3[-2]=The s3[-1]=ost s3[0]=ong s4[-2]= s4[-1]=Lost s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=The|Lost w[-1]|w[0]=Lost|song pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=start w[-4..-1]=playing w[-4..-1]=The w[-4..-1]=Lost __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=a +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=a w[1..4]=song +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=a wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=a pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=L shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=a p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]= p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]= p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]= s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=a s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]= s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]= s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|a pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=a w[1..4]=song +O w[-2]=to w[-1]=listen w[0]=to w[1]=a w[2]=song wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=a wl[2]=song pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=L shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=a p1[2]=s p2[-2]=to p2[-1]=li p2[0]=to p2[1]= p2[2]=so p3[-2]= p3[-1]=lis p3[0]= p3[1]= p3[2]=son p4[-2]= p4[-1]=list p4[0]= p4[1]= p4[2]=song s1[-2]=o s1[-1]=n s1[0]=o s1[1]=a s1[2]=g s2[-2]=to s2[-1]=en s2[0]=to s2[1]= s2[2]=ng s3[-2]= s3[-1]=ten s3[0]= s3[1]= s3[2]=ong s4[-2]= s4[-1]=sten s4[0]= s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|a w[1]|w[2]=a|song pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=a w[1..4]=song +O w[-2]=listen w[-1]=to w[0]=a w[1]=song wl[-2]=listen wl[-1]=to wl[0]=a wl[1]=song pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=L shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=l p1[-1]=t p1[0]=a p1[1]=s p2[-2]=li p2[-1]=to p2[0]= p2[1]=so p3[-2]=lis p3[-1]= p3[0]= p3[1]=son p4[-2]=list p4[-1]= p4[0]= p4[1]=song s1[-2]=n s1[-1]=o s1[0]=a s1[1]=g s2[-2]=en s2[-1]=to s2[0]= s2[1]=ng s3[-2]=ten s3[-1]= s3[0]= s3[1]=ong s4[-2]=sten s4[-1]= s4[0]= s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|a w[0]|w[1]=a|song pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=song +O w[-2]=to w[-1]=a w[0]=song wl[-2]=to wl[-1]=a wl[0]=song pos[-2]=IN pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=L shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=a p1[0]=s p2[-2]=to p2[-1]= p2[0]=so p3[-2]= p3[-1]= p3[0]=son p4[-2]= p4[-1]= p4[0]=song s1[-2]=o s1[-1]=a s1[0]=g s2[-2]=to s2[-1]= s2[0]=ng s3[-2]= s3[-1]= s3[0]=ong s4[-2]= s4[-1]= s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|a w[-1]|w[0]=a|song pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=a __EOS__ + +O w[0]=play w[1]=album w[2]=Songs wl[0]=play wl[1]=album wl[2]=songs pos[0]=VBP pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=S p2[0]=pl p2[1]=al p2[2]=So p3[0]=pla p3[1]=alb p3[2]=Son p4[0]=play p4[1]=albu p4[2]=Song s1[0]=y s1[1]=m s1[2]=s s2[0]=ay s2[1]=um s2[2]=gs s3[0]=lay s3[1]=bum s3[2]=ngs s4[0]=play s4[1]=lbum s4[2]=ongs 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Songs pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Songs w[1..4]=for w[1..4]=the __BOS__ +O w[-1]=play w[0]=album w[1]=Songs w[2]=for wl[-1]=play wl[0]=album wl[1]=songs wl[2]=for pos[-1]=VBP pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=S p1[2]=f p2[-1]=pl p2[0]=al p2[1]=So p2[2]=fo p3[-1]=pla p3[0]=alb p3[1]=Son p3[2]=for p4[-1]=play p4[0]=albu p4[1]=Song p4[2]= s1[-1]=y s1[0]=m s1[1]=s s1[2]=r s2[-1]=ay s2[0]=um s2[1]=gs s2[2]=or s3[-1]=lay s3[0]=bum s3[1]=ngs s3[2]=for s4[-1]=play s4[0]=lbum s4[1]=ongs s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Songs w[1]|w[2]=Songs|for pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Songs w[1..4]=for w[1..4]=the w[1..4]=Deaf +album w[-2]=play w[-1]=album w[0]=Songs w[1]=for w[2]=the wl[-2]=play wl[-1]=album wl[0]=songs wl[1]=for wl[2]=the pos[-2]=VBP pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLL shape[1]=LLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=S p1[1]=f p1[2]=t p2[-2]=pl p2[-1]=al p2[0]=So p2[1]=fo p2[2]=th p3[-2]=pla p3[-1]=alb p3[0]=Son p3[1]=for p3[2]=the p4[-2]=play p4[-1]=albu p4[0]=Song p4[1]= p4[2]= s1[-2]=y s1[-1]=m s1[0]=s s1[1]=r s1[2]=e s2[-2]=ay s2[-1]=um s2[0]=gs s2[1]=or s2[2]=he s3[-2]=lay s3[-1]=bum s3[0]=ngs s3[1]=for s3[2]=the s4[-2]=play s4[-1]=lbum s4[0]=ongs s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Songs w[0]|w[1]=Songs|for w[1]|w[2]=for|the pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[1..4]=for w[1..4]=the w[1..4]=Deaf w[1..4]=by +album w[-2]=album w[-1]=Songs w[0]=for w[1]=the w[2]=Deaf wl[-2]=album wl[-1]=songs wl[0]=for wl[1]=the wl[2]=deaf pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLLL shape[-1]=ULLLL shape[0]=LLL shape[1]=LLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=a p1[-1]=S p1[0]=f p1[1]=t p1[2]=D p2[-2]=al p2[-1]=So p2[0]=fo p2[1]=th p2[2]=De p3[-2]=alb p3[-1]=Son p3[0]=for p3[1]=the p3[2]=Dea p4[-2]=albu p4[-1]=Song p4[0]= p4[1]= p4[2]=Deaf s1[-2]=m s1[-1]=s s1[0]=r s1[1]=e s1[2]=f s2[-2]=um s2[-1]=gs s2[0]=or s2[1]=he s2[2]=af s3[-2]=bum s3[-1]=ngs s3[0]=for s3[1]=the s3[2]=eaf s4[-2]=lbum s4[-1]=ongs s4[0]= s4[1]= s4[2]=Deaf 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Songs w[-1]|w[0]=Songs|for w[0]|w[1]=for|the w[1]|w[2]=the|Deaf pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Songs w[1..4]=the w[1..4]=Deaf w[1..4]=by w[1..4]=Queens +album w[-2]=Songs w[-1]=for w[0]=the w[1]=Deaf w[2]=by wl[-2]=songs wl[-1]=for wl[0]=the wl[1]=deaf wl[2]=by pos[-2]=NNP pos[-1]=NNP pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLLL shape[-1]=LLL shape[0]=LLL shape[1]=ULLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=S p1[-1]=f p1[0]=t p1[1]=D p1[2]=b p2[-2]=So p2[-1]=fo p2[0]=th p2[1]=De p2[2]=by p3[-2]=Son p3[-1]=for p3[0]=the p3[1]=Dea p3[2]= p4[-2]=Song p4[-1]= p4[0]= p4[1]=Deaf p4[2]= s1[-2]=s s1[-1]=r s1[0]=e s1[1]=f s1[2]=y s2[-2]=gs s2[-1]=or s2[0]=he s2[1]=af s2[2]=by s3[-2]=ngs s3[-1]=for s3[0]=the s3[1]=eaf s3[2]= s4[-2]=ongs s4[-1]= s4[0]= s4[1]=Deaf s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Songs|for w[-1]|w[0]=for|the w[0]|w[1]=the|Deaf w[1]|w[2]=Deaf|by pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Songs w[-4..-1]=for w[1..4]=Deaf w[1..4]=by w[1..4]=Queens w[1..4]=of +album w[-2]=for w[-1]=the w[0]=Deaf w[1]=by w[2]=Queens wl[-2]=for wl[-1]=the wl[0]=deaf wl[1]=by wl[2]=queens pos[-2]=NNP pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNPS chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=f p1[-1]=t p1[0]=D p1[1]=b p1[2]=Q p2[-2]=fo p2[-1]=th p2[0]=De p2[1]=by p2[2]=Qu p3[-2]=for p3[-1]=the p3[0]=Dea p3[1]= p3[2]=Que p4[-2]= p4[-1]= p4[0]=Deaf p4[1]= p4[2]=Quee s1[-2]=r s1[-1]=e s1[0]=f s1[1]=y s1[2]=s s2[-2]=or s2[-1]=he s2[0]=af s2[1]=by s2[2]=ns s3[-2]=for s3[-1]=the s3[0]=eaf s3[1]= s3[2]=ens s4[-2]= s4[-1]= s4[0]=Deaf s4[1]= s4[2]=eens 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=for|the w[-1]|w[0]=the|Deaf w[0]|w[1]=Deaf|by w[1]|w[2]=by|Queens pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=album w[-4..-1]=Songs w[-4..-1]=for w[-4..-1]=the w[1..4]=by w[1..4]=Queens w[1..4]=of w[1..4]=the +O w[-2]=the w[-1]=Deaf w[0]=by w[1]=Queens w[2]=of wl[-2]=the wl[-1]=deaf wl[0]=by wl[1]=queens wl[2]=of pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNPS pos[2]=NNPS chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=t p1[-1]=D p1[0]=b p1[1]=Q p1[2]=o p2[-2]=th p2[-1]=De p2[0]=by p2[1]=Qu p2[2]=of p3[-2]=the p3[-1]=Dea p3[0]= p3[1]=Que p3[2]= p4[-2]= p4[-1]=Deaf p4[0]= p4[1]=Quee p4[2]= s1[-2]=e s1[-1]=f s1[0]=y s1[1]=s s1[2]=f s2[-2]=he s2[-1]=af s2[0]=by s2[1]=ns s2[2]=of s3[-2]=the s3[-1]=eaf s3[0]= s3[1]=ens s3[2]= s4[-2]= s4[-1]=Deaf s4[0]= s4[1]=eens s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|Deaf w[-1]|w[0]=Deaf|by w[0]|w[1]=by|Queens w[1]|w[2]=Queens|of pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Songs w[-4..-1]=for w[-4..-1]=the w[-4..-1]=Deaf w[1..4]=Queens w[1..4]=of w[1..4]=the w[1..4]=stone +artist w[-2]=Deaf w[-1]=by w[0]=Queens w[1]=of w[2]=the wl[-2]=deaf wl[-1]=by wl[0]=queens wl[1]=of wl[2]=the pos[-2]=NNP pos[-1]=IN pos[0]=NNPS pos[1]=NNPS pos[2]=NNPS chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLL shape[1]=LL shape[2]=LLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=D p1[-1]=b p1[0]=Q p1[1]=o p1[2]=t p2[-2]=De p2[-1]=by p2[0]=Qu p2[1]=of p2[2]=th p3[-2]=Dea p3[-1]= p3[0]=Que p3[1]= p3[2]=the p4[-2]=Deaf p4[-1]= p4[0]=Quee p4[1]= p4[2]= s1[-2]=f s1[-1]=y s1[0]=s s1[1]=f s1[2]=e s2[-2]=af s2[-1]=by s2[0]=ns s2[1]=of s2[2]=he s3[-2]=eaf s3[-1]= s3[0]=ens s3[1]= s3[2]=the s4[-2]=Deaf s4[-1]= s4[0]=eens s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Deaf|by w[-1]|w[0]=by|Queens w[0]|w[1]=Queens|of w[1]|w[2]=of|the pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNPS pos[0]|pos[1]=NNPS|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=for w[-4..-1]=the w[-4..-1]=Deaf w[-4..-1]=by w[1..4]=of w[1..4]=the w[1..4]=stone w[1..4]=age +artist w[-2]=by w[-1]=Queens w[0]=of w[1]=the w[2]=stone wl[-2]=by wl[-1]=queens wl[0]=of wl[1]=the wl[2]=stone pos[-2]=IN pos[-1]=NNPS pos[0]=NNPS pos[1]=NNPS pos[2]=NNPS chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=LL shape[1]=LLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=b p1[-1]=Q p1[0]=o p1[1]=t p1[2]=s p2[-2]=by p2[-1]=Qu p2[0]=of p2[1]=th p2[2]=st p3[-2]= p3[-1]=Que p3[0]= p3[1]=the p3[2]=sto p4[-2]= p4[-1]=Quee p4[0]= p4[1]= p4[2]=ston s1[-2]=y s1[-1]=s s1[0]=f s1[1]=e s1[2]=e s2[-2]=by s2[-1]=ns s2[0]=of s2[1]=he s2[2]=ne s3[-2]= s3[-1]=ens s3[0]= s3[1]=the s3[2]=one s4[-2]= s4[-1]=eens s4[0]= s4[1]= s4[2]=tone 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Queens w[-1]|w[0]=Queens|of w[0]|w[1]=of|the w[1]|w[2]=the|stone pos[-2]|pos[-1]=IN|NNPS pos[-1]|pos[0]=NNPS|NNPS pos[0]|pos[1]=NNPS|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=the w[-4..-1]=Deaf w[-4..-1]=by w[-4..-1]=Queens w[1..4]=the w[1..4]=stone w[1..4]=age +artist w[-2]=Queens w[-1]=of w[0]=the w[1]=stone w[2]=age wl[-2]=queens wl[-1]=of wl[0]=the wl[1]=stone wl[2]=age pos[-2]=NNPS pos[-1]=NNPS pos[0]=NNPS pos[1]=NNPS pos[2]=NNPS chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLLL shape[2]=LLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=Q p1[-1]=o p1[0]=t p1[1]=s p1[2]=a p2[-2]=Qu p2[-1]=of p2[0]=th p2[1]=st p2[2]=ag p3[-2]=Que p3[-1]= p3[0]=the p3[1]=sto p3[2]=age p4[-2]=Quee p4[-1]= p4[0]= p4[1]=ston p4[2]= s1[-2]=s s1[-1]=f s1[0]=e s1[1]=e s1[2]=e s2[-2]=ns s2[-1]=of s2[0]=he s2[1]=ne s2[2]=ge s3[-2]=ens s3[-1]= s3[0]=the s3[1]=one s3[2]=age s4[-2]=eens s4[-1]= s4[0]= s4[1]=tone s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Queens|of w[-1]|w[0]=of|the w[0]|w[1]=the|stone w[1]|w[2]=stone|age pos[-2]|pos[-1]=NNPS|NNPS pos[-1]|pos[0]=NNPS|NNPS pos[0]|pos[1]=NNPS|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=Deaf w[-4..-1]=by w[-4..-1]=Queens w[-4..-1]=of w[1..4]=stone w[1..4]=age +artist w[-2]=of w[-1]=the w[0]=stone w[1]=age wl[-2]=of wl[-1]=the wl[0]=stone wl[1]=age pos[-2]=NNPS pos[-1]=NNPS pos[0]=NNPS pos[1]=NNPS chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LL shape[-1]=LLL shape[0]=LLLLL shape[1]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=o p1[-1]=t p1[0]=s p1[1]=a p2[-2]=of p2[-1]=th p2[0]=st p2[1]=ag p3[-2]= p3[-1]=the p3[0]=sto p3[1]=age p4[-2]= p4[-1]= p4[0]=ston p4[1]= s1[-2]=f s1[-1]=e s1[0]=e s1[1]=e s2[-2]=of s2[-1]=he s2[0]=ne s2[1]=ge s3[-2]= s3[-1]=the s3[0]=one s3[1]=age s4[-2]= s4[-1]= s4[0]=tone s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=of|the w[-1]|w[0]=the|stone w[0]|w[1]=stone|age pos[-2]|pos[-1]=NNPS|NNPS pos[-1]|pos[0]=NNPS|NNPS pos[0]|pos[1]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=by w[-4..-1]=Queens w[-4..-1]=of w[-4..-1]=the w[1..4]=age +artist w[-2]=the w[-1]=stone w[0]=age wl[-2]=the wl[-1]=stone wl[0]=age pos[-2]=NNPS pos[-1]=NNPS pos[0]=NNPS chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLL shape[-1]=LLLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=s p1[0]=a p2[-2]=th p2[-1]=st p2[0]=ag p3[-2]=the p3[-1]=sto p3[0]=age p4[-2]= p4[-1]=ston p4[0]= s1[-2]=e s1[-1]=e s1[0]=e s2[-2]=he s2[-1]=ne s2[0]=ge s3[-2]=the s3[-1]=one s3[0]=age s4[-2]= s4[-1]=tone s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|stone w[-1]|w[0]=stone|age pos[-2]|pos[-1]=NNPS|NNPS pos[-1]|pos[0]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=Queens w[-4..-1]=of w[-4..-1]=the w[-4..-1]=stone __EOS__ + +artist w[0]=Tom w[1]=Waits w[2]=songs wl[0]=tom wl[1]=waits wl[2]=songs pos[0]=NNP pos[1]=NNP pos[2]=NNS chk[0]=I chk[1]=I chk[2]=O shape[0]=ULL shape[1]=ULLLL shape[2]=LLLLL shaped[0]=UL shaped[1]=UL shaped[2]=L type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[0]=T p1[1]=W p1[2]=s p2[0]=To p2[1]=Wa p2[2]=so p3[0]=Tom p3[1]=Wai p3[2]=son p4[0]= p4[1]=Wait p4[2]=song s1[0]=m s1[1]=s s1[2]=s s2[0]=om s2[1]=ts s2[2]=gs s3[0]=Tom s3[1]=its s3[2]=ngs s4[0]= s4[1]=aits s4[2]=ongs 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=Tom|Waits w[1]|w[2]=Waits|songs pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNS chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Waits w[1..4]=songs __BOS__ +artist w[-1]=Tom w[0]=Waits w[1]=songs wl[-1]=tom wl[0]=waits wl[1]=songs pos[-1]=NNP pos[0]=NNP pos[1]=NNS chk[-1]=I chk[0]=I chk[1]=O shape[-1]=ULL shape[0]=ULLLL shape[1]=LLLLL shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-1]=T p1[0]=W p1[1]=s p2[-1]=To p2[0]=Wa p2[1]=so p3[-1]=Tom p3[0]=Wai p3[1]=son p4[-1]= p4[0]=Wait p4[1]=song s1[-1]=m s1[0]=s s1[1]=s s2[-1]=om s2[0]=ts s2[1]=gs s3[-1]=Tom s3[0]=its s3[1]=ngs s4[-1]= s4[0]=aits s4[1]=ongs 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=no al[0]=no al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=yes cd[0]=yes cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=Tom|Waits w[0]|w[1]=Waits|songs pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNS chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=Tom w[1..4]=songs +O w[-2]=Tom w[-1]=Waits w[0]=songs wl[-2]=tom wl[-1]=waits wl[0]=songs pos[-2]=NNP pos[-1]=NNP pos[0]=NNS chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULL shape[-1]=ULLLL shape[0]=LLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=T p1[-1]=W p1[0]=s p2[-2]=To p2[-1]=Wa p2[0]=so p3[-2]=Tom p3[-1]=Wai p3[0]=son p4[-2]= p4[-1]=Wait p4[0]=song s1[-2]=m s1[-1]=s s1[0]=s s2[-2]=om s2[-1]=ts s2[0]=gs s3[-2]=Tom s3[-1]=its s3[0]=ngs s4[-2]= s4[-1]=aits s4[0]=ongs 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Tom|Waits w[-1]|w[0]=Waits|songs pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=Tom w[-4..-1]=Waits __EOS__ + +O w[0]=play w[1]=a w[2]=country wl[0]=play wl[1]=a wl[2]=country pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=L shape[2]=LLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=c p2[0]=pl p2[1]= p2[2]=co p3[0]=pla p3[1]= p3[2]=cou p4[0]=play p4[1]= p4[2]=coun s1[0]=y s1[1]=a s1[2]=y s2[0]=ay s2[1]= s2[2]=ry s3[0]=lay s3[1]= s3[2]=try s4[0]=play s4[1]= s4[2]=ntry 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|country pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=country w[1..4]=song __BOS__ +O w[-1]=play w[0]=a w[1]=country w[2]=song wl[-1]=play wl[0]=a wl[1]=country wl[2]=song pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=L shape[1]=LLLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=c p1[2]=s p2[-1]=pl p2[0]= p2[1]=co p2[2]=so p3[-1]=pla p3[0]= p3[1]=cou p3[2]=son p4[-1]=play p4[0]= p4[1]=coun p4[2]=song s1[-1]=y s1[0]=a s1[1]=y s1[2]=g s2[-1]=ay s2[0]= s2[1]=ry s2[2]=ng s3[-1]=lay s3[0]= s3[1]=try s3[2]=ong s4[-1]=play s4[0]= s4[1]=ntry s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|country w[1]|w[2]=country|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=country w[1..4]=song +genre w[-2]=play w[-1]=a w[0]=country w[1]=song wl[-2]=play wl[-1]=a wl[0]=country wl[1]=song pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=a p1[0]=c p1[1]=s p2[-2]=pl p2[-1]= p2[0]=co p2[1]=so p3[-2]=pla p3[-1]= p3[0]=cou p3[1]=son p4[-2]=play p4[-1]= p4[0]=coun p4[1]=song s1[-2]=y s1[-1]=a s1[0]=y s1[1]=g s2[-2]=ay s2[-1]= s2[0]=ry s2[1]=ng s3[-2]=lay s3[-1]= s3[0]=try s3[1]=ong s4[-2]=play s4[-1]= s4[0]=ntry s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|country w[0]|w[1]=country|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[1..4]=song +O w[-2]=a w[-1]=country w[0]=song wl[-2]=a wl[-1]=country wl[0]=song pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=L shape[-1]=LLLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=a p1[-1]=c p1[0]=s p2[-2]= p2[-1]=co p2[0]=so p3[-2]= p3[-1]=cou p3[0]=son p4[-2]= p4[-1]=coun p4[0]=song s1[-2]=a s1[-1]=y s1[0]=g s2[-2]= s2[-1]=ry s2[0]=ng s3[-2]= s3[-1]=try s3[0]=ong s4[-2]= s4[-1]=ntry s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=a|country w[-1]|w[0]=country|song pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=country __EOS__ + +O w[0]=play w[1]=the w[2]=album wl[0]=play wl[1]=the wl[2]=album pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=a p2[0]=pl p2[1]=th p2[2]=al p3[0]=pla p3[1]=the p3[2]=alb p4[0]=play p4[1]= p4[2]=albu s1[0]=y s1[1]=e s1[2]=m s2[0]=ay s2[1]=he s2[2]=um s3[0]=lay s3[1]=the s3[2]=bum s4[0]=play s4[1]= s4[2]=lbum 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|album pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=album w[1..4]=Un w[1..4]=monde __BOS__ +O w[-1]=play w[0]=the w[1]=album w[2]=Un wl[-1]=play wl[0]=the wl[1]=album wl[2]=un pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLL shape[2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=a p1[2]=U p2[-1]=pl p2[0]=th p2[1]=al p2[2]=Un p3[-1]=pla p3[0]=the p3[1]=alb p3[2]= p4[-1]=play p4[0]= p4[1]=albu p4[2]= s1[-1]=y s1[0]=e s1[1]=m s1[2]=n s2[-1]=ay s2[0]=he s2[1]=um s2[2]=Un s3[-1]=lay s3[0]=the s3[1]=bum s3[2]= s4[-1]=play s4[0]= s4[1]=lbum s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|album w[1]|w[2]=album|Un pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=album w[1..4]=Un w[1..4]=monde w[1..4]=meilleur +O w[-2]=play w[-1]=the w[0]=album w[1]=Un w[2]=monde wl[-2]=play wl[-1]=the wl[0]=album wl[1]=un wl[2]=monde pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLL shape[1]=UL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=a p1[1]=U p1[2]=m p2[-2]=pl p2[-1]=th p2[0]=al p2[1]=Un p2[2]=mo p3[-2]=pla p3[-1]=the p3[0]=alb p3[1]= p3[2]=mon p4[-2]=play p4[-1]= p4[0]=albu p4[1]= p4[2]=mond s1[-2]=y s1[-1]=e s1[0]=m s1[1]=n s1[2]=e s2[-2]=ay s2[-1]=he s2[0]=um s2[1]=Un s2[2]=de s3[-2]=lay s3[-1]=the s3[0]=bum s3[1]= s3[2]=nde s4[-2]=play s4[-1]= s4[0]=lbum s4[1]= s4[2]=onde 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|album w[0]|w[1]=album|Un w[1]|w[2]=Un|monde pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=Un w[1..4]=monde w[1..4]=meilleur w[1..4]=by +album w[-2]=the w[-1]=album w[0]=Un w[1]=monde w[2]=meilleur wl[-2]=the wl[-1]=album wl[0]=un wl[1]=monde wl[2]=meilleur pos[-2]=DT pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLLL shape[0]=UL shape[1]=LLLLL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=a p1[0]=U p1[1]=m p1[2]=m p2[-2]=th p2[-1]=al p2[0]=Un p2[1]=mo p2[2]=me p3[-2]=the p3[-1]=alb p3[0]= p3[1]=mon p3[2]=mei p4[-2]= p4[-1]=albu p4[0]= p4[1]=mond p4[2]=meil s1[-2]=e s1[-1]=m s1[0]=n s1[1]=e s1[2]=r s2[-2]=he s2[-1]=um s2[0]=Un s2[1]=de s2[2]=ur s3[-2]=the s3[-1]=bum s3[0]= s3[1]=nde s3[2]=eur s4[-2]= s4[-1]=lbum s4[0]= s4[1]=onde s4[2]=leur 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|album w[-1]|w[0]=album|Un w[0]|w[1]=Un|monde w[1]|w[2]=monde|meilleur pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=album w[1..4]=monde w[1..4]=meilleur w[1..4]=by w[1..4]=Kids +album w[-2]=album w[-1]=Un w[0]=monde w[1]=meilleur w[2]=by wl[-2]=album wl[-1]=un wl[0]=monde wl[1]=meilleur wl[2]=by pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLL shape[-1]=UL shape[0]=LLLLL shape[1]=LLLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=U p1[0]=m p1[1]=m p1[2]=b p2[-2]=al p2[-1]=Un p2[0]=mo p2[1]=me p2[2]=by p3[-2]=alb p3[-1]= p3[0]=mon p3[1]=mei p3[2]= p4[-2]=albu p4[-1]= p4[0]=mond p4[1]=meil p4[2]= s1[-2]=m s1[-1]=n s1[0]=e s1[1]=r s1[2]=y s2[-2]=um s2[-1]=Un s2[0]=de s2[1]=ur s2[2]=by s3[-2]=bum s3[-1]= s3[0]=nde s3[1]=eur s3[2]= s4[-2]=lbum s4[-1]= s4[0]=onde s4[1]=leur s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Un w[-1]|w[0]=Un|monde w[0]|w[1]=monde|meilleur w[1]|w[2]=meilleur|by pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=album w[-4..-1]=Un w[1..4]=meilleur w[1..4]=by w[1..4]=Kids w[1..4]=United +album w[-2]=Un w[-1]=monde w[0]=meilleur w[1]=by w[2]=Kids wl[-2]=un wl[-1]=monde wl[0]=meilleur wl[1]=by wl[2]=kids pos[-2]=NNP pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNPS chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=UL shape[-1]=LLLLL shape[0]=LLLLLLLL shape[1]=LL shape[2]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=U p1[-1]=m p1[0]=m p1[1]=b p1[2]=K p2[-2]=Un p2[-1]=mo p2[0]=me p2[1]=by p2[2]=Ki p3[-2]= p3[-1]=mon p3[0]=mei p3[1]= p3[2]=Kid p4[-2]= p4[-1]=mond p4[0]=meil p4[1]= p4[2]=Kids s1[-2]=n s1[-1]=e s1[0]=r s1[1]=y s1[2]=s s2[-2]=Un s2[-1]=de s2[0]=ur s2[1]=by s2[2]=ds s3[-2]= s3[-1]=nde s3[0]=eur s3[1]= s3[2]=ids s4[-2]= s4[-1]=onde s4[0]=leur s4[1]= s4[2]=Kids 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Un|monde w[-1]|w[0]=monde|meilleur w[0]|w[1]=meilleur|by w[1]|w[2]=by|Kids pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=album w[-4..-1]=Un w[-4..-1]=monde w[1..4]=by w[1..4]=Kids w[1..4]=United +O w[-2]=monde w[-1]=meilleur w[0]=by w[1]=Kids w[2]=United wl[-2]=monde wl[-1]=meilleur wl[0]=by wl[1]=kids wl[2]=united pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNPS pos[2]=NNPS chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLLL shape[-1]=LLLLLLLL shape[0]=LL shape[1]=ULLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=m p1[-1]=m p1[0]=b p1[1]=K p1[2]=U p2[-2]=mo p2[-1]=me p2[0]=by p2[1]=Ki p2[2]=Un p3[-2]=mon p3[-1]=mei p3[0]= p3[1]=Kid p3[2]=Uni p4[-2]=mond p4[-1]=meil p4[0]= p4[1]=Kids p4[2]=Unit s1[-2]=e s1[-1]=r s1[0]=y s1[1]=s s1[2]=d s2[-2]=de s2[-1]=ur s2[0]=by s2[1]=ds s2[2]=ed s3[-2]=nde s3[-1]=eur s3[0]= s3[1]=ids s3[2]=ted s4[-2]=onde s4[-1]=leur s4[0]= s4[1]=Kids s4[2]=ited 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=monde|meilleur w[-1]|w[0]=meilleur|by w[0]|w[1]=by|Kids w[1]|w[2]=Kids|United pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=album w[-4..-1]=Un w[-4..-1]=monde w[-4..-1]=meilleur w[1..4]=Kids w[1..4]=United +artist w[-2]=meilleur w[-1]=by w[0]=Kids w[1]=United wl[-2]=meilleur wl[-1]=by wl[0]=kids wl[1]=united pos[-2]=NNP pos[-1]=IN pos[0]=NNPS pos[1]=NNPS chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLLLL shape[-1]=LL shape[0]=ULLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=m p1[-1]=b p1[0]=K p1[1]=U p2[-2]=me p2[-1]=by p2[0]=Ki p2[1]=Un p3[-2]=mei p3[-1]= p3[0]=Kid p3[1]=Uni p4[-2]=meil p4[-1]= p4[0]=Kids p4[1]=Unit s1[-2]=r s1[-1]=y s1[0]=s s1[1]=d s2[-2]=ur s2[-1]=by s2[0]=ds s2[1]=ed s3[-2]=eur s3[-1]= s3[0]=ids s3[1]=ted s4[-2]=leur s4[-1]= s4[0]=Kids s4[1]=ited 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=meilleur|by w[-1]|w[0]=by|Kids w[0]|w[1]=Kids|United pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNPS pos[0]|pos[1]=NNPS|NNPS chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Un w[-4..-1]=monde w[-4..-1]=meilleur w[-4..-1]=by w[1..4]=United +artist w[-2]=by w[-1]=Kids w[0]=United wl[-2]=by wl[-1]=kids wl[0]=united pos[-2]=IN pos[-1]=NNPS pos[0]=NNPS chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=K p1[0]=U p2[-2]=by p2[-1]=Ki p2[0]=Un p3[-2]= p3[-1]=Kid p3[0]=Uni p4[-2]= p4[-1]=Kids p4[0]=Unit s1[-2]=y s1[-1]=s s1[0]=d s2[-2]=by s2[-1]=ds s2[0]=ed s3[-2]= s3[-1]=ids s3[0]=ted s4[-2]= s4[-1]=Kids s4[0]=ited 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Kids w[-1]|w[0]=Kids|United pos[-2]|pos[-1]=IN|NNPS pos[-1]|pos[0]=NNPS|NNPS chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=monde w[-4..-1]=meilleur w[-4..-1]=by w[-4..-1]=Kids __EOS__ + +O w[0]=play w[1]=Red w[2]=Hot wl[0]=play wl[1]=red wl[2]=hot pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=ULL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=R p1[2]=H p2[0]=pl p2[1]=Re p2[2]=Ho p3[0]=pla p3[1]=Red p3[2]=Hot p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=d s1[2]=t s2[0]=ay s2[1]=ed s2[2]=ot s3[0]=lay s3[1]=Red s3[2]=Hot s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Red w[1]|w[2]=Red|Hot pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Red w[1..4]=Hot w[1..4]=Chili w[1..4]=Peppers __BOS__ +artist w[-1]=play w[0]=Red w[1]=Hot w[2]=Chili wl[-1]=play wl[0]=red wl[1]=hot wl[2]=chili pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULL shape[1]=ULL shape[2]=ULLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=R p1[1]=H p1[2]=C p2[-1]=pl p2[0]=Re p2[1]=Ho p2[2]=Ch p3[-1]=pla p3[0]=Red p3[1]=Hot p3[2]=Chi p4[-1]=play p4[0]= p4[1]= p4[2]=Chil s1[-1]=y s1[0]=d s1[1]=t s1[2]=i s2[-1]=ay s2[0]=ed s2[1]=ot s2[2]=li s3[-1]=lay s3[0]=Red s3[1]=Hot s3[2]=ili s4[-1]=play s4[0]= s4[1]= s4[2]=hili 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Red w[0]|w[1]=Red|Hot w[1]|w[2]=Hot|Chili pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Hot w[1..4]=Chili w[1..4]=Peppers +artist w[-2]=play w[-1]=Red w[0]=Hot w[1]=Chili w[2]=Peppers wl[-2]=play wl[-1]=red wl[0]=hot wl[1]=chili wl[2]=peppers pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULL shape[1]=ULLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=R p1[0]=H p1[1]=C p1[2]=P p2[-2]=pl p2[-1]=Re p2[0]=Ho p2[1]=Ch p2[2]=Pe p3[-2]=pla p3[-1]=Red p3[0]=Hot p3[1]=Chi p3[2]=Pep p4[-2]=play p4[-1]= p4[0]= p4[1]=Chil p4[2]=Pepp s1[-2]=y s1[-1]=d s1[0]=t s1[1]=i s1[2]=s s2[-2]=ay s2[-1]=ed s2[0]=ot s2[1]=li s2[2]=rs s3[-2]=lay s3[-1]=Red s3[0]=Hot s3[1]=ili s3[2]=ers s4[-2]=play s4[-1]= s4[0]= s4[1]=hili s4[2]=pers 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Red w[-1]|w[0]=Red|Hot w[0]|w[1]=Hot|Chili w[1]|w[2]=Chili|Peppers pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Red w[1..4]=Chili w[1..4]=Peppers +artist w[-2]=Red w[-1]=Hot w[0]=Chili w[1]=Peppers wl[-2]=red wl[-1]=hot wl[0]=chili wl[1]=peppers pos[-2]=NNP pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=ULL shape[0]=ULLLL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=R p1[-1]=H p1[0]=C p1[1]=P p2[-2]=Re p2[-1]=Ho p2[0]=Ch p2[1]=Pe p3[-2]=Red p3[-1]=Hot p3[0]=Chi p3[1]=Pep p4[-2]= p4[-1]= p4[0]=Chil p4[1]=Pepp s1[-2]=d s1[-1]=t s1[0]=i s1[1]=s s2[-2]=ed s2[-1]=ot s2[0]=li s2[1]=rs s3[-2]=Red s3[-1]=Hot s3[0]=ili s3[1]=ers s4[-2]= s4[-1]= s4[0]=hili s4[1]=pers 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Red|Hot w[-1]|w[0]=Hot|Chili w[0]|w[1]=Chili|Peppers pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Red w[-4..-1]=Hot w[1..4]=Peppers +artist w[-2]=Hot w[-1]=Chili w[0]=Peppers wl[-2]=hot wl[-1]=chili wl[0]=peppers pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=ULLLL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=H p1[-1]=C p1[0]=P p2[-2]=Ho p2[-1]=Ch p2[0]=Pe p3[-2]=Hot p3[-1]=Chi p3[0]=Pep p4[-2]= p4[-1]=Chil p4[0]=Pepp s1[-2]=t s1[-1]=i s1[0]=s s2[-2]=ot s2[-1]=li s2[0]=rs s3[-2]=Hot s3[-1]=ili s3[0]=ers s4[-2]= s4[-1]=hili s4[0]=pers 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Hot|Chili w[-1]|w[0]=Chili|Peppers pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Red w[-4..-1]=Hot w[-4..-1]=Chili __EOS__ + +O w[0]=play w[1]=song w[2]=by wl[0]=play wl[1]=song wl[2]=by pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=son p3[2]= p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=y s2[0]=ay s2[1]=ng s2[2]=by s3[0]=lay s3[1]=ong s3[2]= s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|by pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=song w[1..4]=by w[1..4]=Willie w[1..4]=Nelson __BOS__ +O w[-1]=play w[0]=song w[1]=by w[2]=Willie wl[-1]=play wl[0]=song wl[1]=by wl[2]=willie pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=W p2[-1]=pl p2[0]=so p2[1]=by p2[2]=Wi p3[-1]=pla p3[0]=son p3[1]= p3[2]=Wil p4[-1]=play p4[0]=song p4[1]= p4[2]=Will s1[-1]=y s1[0]=g s1[1]=y s1[2]=e s2[-1]=ay s2[0]=ng s2[1]=by s2[2]=ie s3[-1]=lay s3[0]=ong s3[1]= s3[2]=lie s4[-1]=play s4[0]=song s4[1]= s4[2]=llie 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|by w[1]|w[2]=by|Willie pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Willie w[1..4]=Nelson +O w[-2]=play w[-1]=song w[0]=by w[1]=Willie w[2]=Nelson wl[-2]=play wl[-1]=song wl[0]=by wl[1]=willie wl[2]=nelson pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=b p1[1]=W p1[2]=N p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=Wi p2[2]=Ne p3[-2]=pla p3[-1]=son p3[0]= p3[1]=Wil p3[2]=Nel p4[-2]=play p4[-1]=song p4[0]= p4[1]=Will p4[2]=Nels s1[-2]=y s1[-1]=g s1[0]=y s1[1]=e s1[2]=n s2[-2]=ay s2[-1]=ng s2[0]=by s2[1]=ie s2[2]=on s3[-2]=lay s3[-1]=ong s3[0]= s3[1]=lie s3[2]=son s4[-2]=play s4[-1]=song s4[0]= s4[1]=llie s4[2]=lson 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|by w[0]|w[1]=by|Willie w[1]|w[2]=Willie|Nelson pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=Willie w[1..4]=Nelson +artist w[-2]=song w[-1]=by w[0]=Willie w[1]=Nelson wl[-2]=song wl[-1]=by wl[0]=willie wl[1]=nelson pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=b p1[0]=W p1[1]=N p2[-2]=so p2[-1]=by p2[0]=Wi p2[1]=Ne p3[-2]=son p3[-1]= p3[0]=Wil p3[1]=Nel p4[-2]=song p4[-1]= p4[0]=Will p4[1]=Nels s1[-2]=g s1[-1]=y s1[0]=e s1[1]=n s2[-2]=ng s2[-1]=by s2[0]=ie s2[1]=on s3[-2]=ong s3[-1]= s3[0]=lie s3[1]=son s4[-2]=song s4[-1]= s4[0]=llie s4[1]=lson 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|by w[-1]|w[0]=by|Willie w[0]|w[1]=Willie|Nelson pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by w[1..4]=Nelson +artist w[-2]=by w[-1]=Willie w[0]=Nelson wl[-2]=by wl[-1]=willie wl[0]=nelson pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=W p1[0]=N p2[-2]=by p2[-1]=Wi p2[0]=Ne p3[-2]= p3[-1]=Wil p3[0]=Nel p4[-2]= p4[-1]=Will p4[0]=Nels s1[-2]=y s1[-1]=e s1[0]=n s2[-2]=by s2[-1]=ie s2[0]=on s3[-2]= s3[-1]=lie s3[0]=son s4[-2]= s4[-1]=llie s4[0]=lson 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Willie w[-1]|w[0]=Willie|Nelson pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by w[-4..-1]=Willie __EOS__ + +O w[0]=play w[1]=something w[2]=by wl[0]=play wl[1]=something wl[2]=by pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLLLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=som p3[2]= p4[0]=play p4[1]=some p4[2]= s1[0]=y s1[1]=g s1[2]=y s2[0]=ay s2[1]=ng s2[2]=by s3[0]=lay s3[1]=ing s3[2]= s4[0]=play s4[1]=hing s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|something w[1]|w[2]=something|by pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=something w[1..4]=by w[1..4]=Rihanna __BOS__ +O w[-1]=play w[0]=something w[1]=by w[2]=Rihanna wl[-1]=play wl[0]=something wl[1]=by wl[2]=rihanna pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLLLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=R p2[-1]=pl p2[0]=so p2[1]=by p2[2]=Ri p3[-1]=pla p3[0]=som p3[1]= p3[2]=Rih p4[-1]=play p4[0]=some p4[1]= p4[2]=Riha s1[-1]=y s1[0]=g s1[1]=y s1[2]=a s2[-1]=ay s2[0]=ng s2[1]=by s2[2]=na s3[-1]=lay s3[0]=ing s3[1]= s3[2]=nna s4[-1]=play s4[0]=hing s4[1]= s4[2]=anna 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|something w[0]|w[1]=something|by w[1]|w[2]=by|Rihanna pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Rihanna +O w[-2]=play w[-1]=something w[0]=by w[1]=Rihanna wl[-2]=play wl[-1]=something wl[0]=by wl[1]=rihanna pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLLLLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=s p1[0]=b p1[1]=R p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=Ri p3[-2]=pla p3[-1]=som p3[0]= p3[1]=Rih p4[-2]=play p4[-1]=some p4[0]= p4[1]=Riha s1[-2]=y s1[-1]=g s1[0]=y s1[1]=a s2[-2]=ay s2[-1]=ng s2[0]=by s2[1]=na s3[-2]=lay s3[-1]=ing s3[0]= s3[1]=nna s4[-2]=play s4[-1]=hing s4[0]= s4[1]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|something w[-1]|w[0]=something|by w[0]|w[1]=by|Rihanna pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=something w[1..4]=Rihanna +artist w[-2]=something w[-1]=by w[0]=Rihanna wl[-2]=something wl[-1]=by wl[0]=rihanna pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=b p1[0]=R p2[-2]=so p2[-1]=by p2[0]=Ri p3[-2]=som p3[-1]= p3[0]=Rih p4[-2]=some p4[-1]= p4[0]=Riha s1[-2]=g s1[-1]=y s1[0]=a s2[-2]=ng s2[-1]=by s2[0]=na s3[-2]=ing s3[-1]= s3[0]=nna s4[-2]=hing s4[-1]= s4[0]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=something|by w[-1]|w[0]=by|Rihanna pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=something w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=some w[2]=rock wl[0]=play wl[1]=some wl[2]=rock pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=r p2[0]=pl p2[1]=so p2[2]=ro p3[0]=pla p3[1]=som p3[2]=roc p4[0]=play p4[1]=some p4[2]=rock s1[0]=y s1[1]=e s1[2]=k s2[0]=ay s2[1]=me s2[2]=ck s3[0]=lay s3[1]=ome s3[2]=ock s4[0]=play s4[1]=some s4[2]=rock 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|some w[1]|w[2]=some|rock pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=some w[1..4]=rock w[1..4]=and w[1..4]=roll __BOS__ +O w[-1]=play w[0]=some w[1]=rock w[2]=and wl[-1]=play wl[0]=some wl[1]=rock wl[2]=and pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=r p1[2]=a p2[-1]=pl p2[0]=so p2[1]=ro p2[2]=an p3[-1]=pla p3[0]=som p3[1]=roc p3[2]=and p4[-1]=play p4[0]=some p4[1]=rock p4[2]= s1[-1]=y s1[0]=e s1[1]=k s1[2]=d s2[-1]=ay s2[0]=me s2[1]=ck s2[2]=nd s3[-1]=lay s3[0]=ome s3[1]=ock s3[2]=and s4[-1]=play s4[0]=some s4[1]=rock s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|some w[0]|w[1]=some|rock w[1]|w[2]=rock|and pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=rock w[1..4]=and w[1..4]=roll +genre w[-2]=play w[-1]=some w[0]=rock w[1]=and w[2]=roll wl[-2]=play wl[-1]=some wl[0]=rock wl[1]=and wl[2]=roll pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=s p1[0]=r p1[1]=a p1[2]=r p2[-2]=pl p2[-1]=so p2[0]=ro p2[1]=an p2[2]=ro p3[-2]=pla p3[-1]=som p3[0]=roc p3[1]=and p3[2]=rol p4[-2]=play p4[-1]=some p4[0]=rock p4[1]= p4[2]=roll s1[-2]=y s1[-1]=e s1[0]=k s1[1]=d s1[2]=l s2[-2]=ay s2[-1]=me s2[0]=ck s2[1]=nd s2[2]=ll s3[-2]=lay s3[-1]=ome s3[0]=ock s3[1]=and s3[2]=oll s4[-2]=play s4[-1]=some s4[0]=rock s4[1]= s4[2]=roll 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|some w[-1]|w[0]=some|rock w[0]|w[1]=rock|and w[1]|w[2]=and|roll pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[1..4]=and w[1..4]=roll +genre w[-2]=some w[-1]=rock w[0]=and w[1]=roll wl[-2]=some wl[-1]=rock wl[0]=and wl[1]=roll pos[-2]=DT pos[-1]=NN pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=s p1[-1]=r p1[0]=a p1[1]=r p2[-2]=so p2[-1]=ro p2[0]=an p2[1]=ro p3[-2]=som p3[-1]=roc p3[0]=and p3[1]=rol p4[-2]=some p4[-1]=rock p4[0]= p4[1]=roll s1[-2]=e s1[-1]=k s1[0]=d s1[1]=l s2[-2]=me s2[-1]=ck s2[0]=nd s2[1]=ll s3[-2]=ome s3[-1]=ock s3[0]=and s3[1]=oll s4[-2]=some s4[-1]=rock s4[0]= s4[1]=roll 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=some|rock w[-1]|w[0]=rock|and w[0]|w[1]=and|roll pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=rock w[1..4]=roll +genre w[-2]=rock w[-1]=and w[0]=roll wl[-2]=rock wl[-1]=and wl[0]=roll pos[-2]=NN pos[-1]=NN pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=r p1[-1]=a p1[0]=r p2[-2]=ro p2[-1]=an p2[0]=ro p3[-2]=roc p3[-1]=and p3[0]=rol p4[-2]=rock p4[-1]= p4[0]=roll s1[-2]=k s1[-1]=d s1[0]=l s2[-2]=ck s2[-1]=nd s2[0]=ll s3[-2]=ock s3[-1]=and s3[0]=oll s4[-2]=rock s4[-1]= s4[0]=roll 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=rock|and w[-1]|w[0]=and|roll pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=rock w[-4..-1]=and __EOS__ + +O w[0]=play w[1]=song w[2]=Roxanne wl[0]=play wl[1]=song wl[2]=roxanne pos[0]=VBP pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=R p2[0]=pl p2[1]=so p2[2]=Ro p3[0]=pla p3[1]=son p3[2]=Rox p4[0]=play p4[1]=song p4[2]=Roxa s1[0]=y s1[1]=g s1[2]=e s2[0]=ay s2[1]=ng s2[2]=ne s3[0]=lay s3[1]=ong s3[2]=nne s4[0]=play s4[1]=song s4[2]=anne 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|Roxanne pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=Roxanne __BOS__ +O w[-1]=play w[0]=song w[1]=Roxanne wl[-1]=play wl[0]=song wl[1]=roxanne pos[-1]=VBP pos[0]=NN pos[1]=NNP chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-1]=p p1[0]=s p1[1]=R p2[-1]=pl p2[0]=so p2[1]=Ro p3[-1]=pla p3[0]=son p3[1]=Rox p4[-1]=play p4[0]=song p4[1]=Roxa s1[-1]=y s1[0]=g s1[1]=e s2[-1]=ay s2[0]=ng s2[1]=ne s3[-1]=lay s3[0]=ong s3[1]=nne s4[-1]=play s4[0]=song s4[1]=anne 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|song w[0]|w[1]=song|Roxanne pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=Roxanne +song w[-2]=play w[-1]=song w[0]=Roxanne wl[-2]=play wl[-1]=song wl[0]=roxanne pos[-2]=VBP pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=s p1[0]=R p2[-2]=pl p2[-1]=so p2[0]=Ro p3[-2]=pla p3[-1]=son p3[0]=Rox p4[-2]=play p4[-1]=song p4[0]=Roxa s1[-2]=y s1[-1]=g s1[0]=e s2[-2]=ay s2[-1]=ng s2[0]=ne s3[-2]=lay s3[-1]=ong s3[0]=nne s4[-2]=play s4[-1]=song s4[0]=anne 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Roxanne pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song __EOS__ + +O w[0]=play w[1]=Madonna's w[2]=Like wl[0]=play wl[1]=madonna's wl[2]=like pos[0]=VB pos[1]=NNP pos[2]=POS chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=ULLLLLL'L shape[2]=ULLL shaped[0]=L shaped[1]=UL'L shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=M p1[2]=L p2[0]=pl p2[1]=Ma p2[2]=Li p3[0]=pla p3[1]=Mad p3[2]=Lik p4[0]=play p4[1]=Mado p4[2]=Like s1[0]=y s1[1]=s s1[2]=e s2[0]=ay s2[1]='s s2[2]=ke s3[0]=lay s3[1]=a's s3[2]=ike s4[0]=play s4[1]=na's s4[2]=Like 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=yes cs[2]=no w[0]|w[1]=play|Madonna's w[1]|w[2]=Madonna's|Like pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|POS chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|UL'L shaped[1]|shaped[2]=UL'L|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Madonna's w[1..4]=Like w[1..4]=a w[1..4]=Virgin __BOS__ +O w[-1]=play w[0]=Madonna's w[1]=Like w[2]=a wl[-1]=play wl[0]=madonna's wl[1]=like wl[2]=a pos[-1]=VB pos[0]=NNP pos[1]=POS pos[2]=POS chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLL'L shape[1]=ULLL shape[2]=L shaped[-1]=L shaped[0]=UL'L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=M p1[1]=L p1[2]=a p2[-1]=pl p2[0]=Ma p2[1]=Li p2[2]= p3[-1]=pla p3[0]=Mad p3[1]=Lik p3[2]= p4[-1]=play p4[0]=Mado p4[1]=Like p4[2]= s1[-1]=y s1[0]=s s1[1]=e s1[2]=a s2[-1]=ay s2[0]='s s2[1]=ke s2[2]= s3[-1]=lay s3[0]=a's s3[1]=ike s3[2]= s4[-1]=play s4[0]=na's s4[1]=Like s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-1]=no cs[0]=yes cs[1]=no cs[2]=no w[-1]|w[0]=play|Madonna's w[0]|w[1]=Madonna's|Like w[1]|w[2]=Like|a pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|POS pos[1]|pos[2]=POS|POS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL'L shaped[0]|shaped[1]=UL'L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Like w[1..4]=a w[1..4]=Virgin +song w[-2]=play w[-1]=Madonna's w[0]=Like w[1]=a w[2]=Virgin wl[-2]=play wl[-1]=madonna's wl[0]=like wl[1]=a wl[2]=virgin pos[-2]=VB pos[-1]=NNP pos[0]=POS pos[1]=POS pos[2]=POS chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLL'L shape[0]=ULLL shape[1]=L shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL'L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=M p1[0]=L p1[1]=a p1[2]=V p2[-2]=pl p2[-1]=Ma p2[0]=Li p2[1]= p2[2]=Vi p3[-2]=pla p3[-1]=Mad p3[0]=Lik p3[1]= p3[2]=Vir p4[-2]=play p4[-1]=Mado p4[0]=Like p4[1]= p4[2]=Virg s1[-2]=y s1[-1]=s s1[0]=e s1[1]=a s1[2]=n s2[-2]=ay s2[-1]='s s2[0]=ke s2[1]= s2[2]=in s3[-2]=lay s3[-1]=a's s3[0]=ike s3[1]= s3[2]=gin s4[-2]=play s4[-1]=na's s4[0]=Like s4[1]= s4[2]=rgin 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Madonna's w[-1]|w[0]=Madonna's|Like w[0]|w[1]=Like|a w[1]|w[2]=a|Virgin pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|POS pos[0]|pos[1]=POS|POS pos[1]|pos[2]=POS|POS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL'L shaped[-1]|shaped[0]=UL'L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Madonna's w[1..4]=a w[1..4]=Virgin +song w[-2]=Madonna's w[-1]=Like w[0]=a w[1]=Virgin wl[-2]=madonna's wl[-1]=like wl[0]=a wl[1]=virgin pos[-2]=NNP pos[-1]=POS pos[0]=POS pos[1]=POS chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLLLLL'L shape[-1]=ULLL shape[0]=L shape[1]=ULLLLL shaped[-2]=UL'L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=M p1[-1]=L p1[0]=a p1[1]=V p2[-2]=Ma p2[-1]=Li p2[0]= p2[1]=Vi p3[-2]=Mad p3[-1]=Lik p3[0]= p3[1]=Vir p4[-2]=Mado p4[-1]=Like p4[0]= p4[1]=Virg s1[-2]=s s1[-1]=e s1[0]=a s1[1]=n s2[-2]='s s2[-1]=ke s2[0]= s2[1]=in s3[-2]=a's s3[-1]=ike s3[0]= s3[1]=gin s4[-2]=na's s4[-1]=Like s4[0]= s4[1]=rgin 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Madonna's|Like w[-1]|w[0]=Like|a w[0]|w[1]=a|Virgin pos[-2]|pos[-1]=NNP|POS pos[-1]|pos[0]=POS|POS pos[0]|pos[1]=POS|POS chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL'L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Madonna's w[-4..-1]=Like w[1..4]=Virgin +song w[-2]=Like w[-1]=a w[0]=Virgin wl[-2]=like wl[-1]=a wl[0]=virgin pos[-2]=POS pos[-1]=POS pos[0]=POS chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=L shape[0]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=L p1[-1]=a p1[0]=V p2[-2]=Li p2[-1]= p2[0]=Vi p3[-2]=Lik p3[-1]= p3[0]=Vir p4[-2]=Like p4[-1]= p4[0]=Virg s1[-2]=e s1[-1]=a s1[0]=n s2[-2]=ke s2[-1]= s2[0]=in s3[-2]=ike s3[-1]= s3[0]=gin s4[-2]=Like s4[-1]= s4[0]=rgin 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Like|a w[-1]|w[0]=a|Virgin pos[-2]|pos[-1]=POS|POS pos[-1]|pos[0]=POS|POS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Madonna's w[-4..-1]=Like w[-4..-1]=a __EOS__ + +O w[0]=play w[1]=song w[2]=How wl[0]=play wl[1]=song wl[2]=how pos[0]=VBP pos[1]=NN pos[2]=WRB chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=H p2[0]=pl p2[1]=so p2[2]=Ho p3[0]=pla p3[1]=son p3[2]=How p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=w s2[0]=ay s2[1]=ng s2[2]=ow s3[0]=lay s3[1]=ong s3[2]=How s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|How pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|WRB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=How w[1..4]=do w[1..4]=I __BOS__ +O w[-1]=play w[0]=song w[1]=How w[2]=do wl[-1]=play wl[0]=song wl[1]=how wl[2]=do pos[-1]=VBP pos[0]=NN pos[1]=WRB pos[2]=WRB chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=H p1[2]=d p2[-1]=pl p2[0]=so p2[1]=Ho p2[2]=do p3[-1]=pla p3[0]=son p3[1]=How p3[2]= p4[-1]=play p4[0]=song p4[1]= p4[2]= s1[-1]=y s1[0]=g s1[1]=w s1[2]=o s2[-1]=ay s2[0]=ng s2[1]=ow s2[2]=do s3[-1]=lay s3[0]=ong s3[1]=How s3[2]= s4[-1]=play s4[0]=song s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|How w[1]|w[2]=How|do pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|WRB pos[1]|pos[2]=WRB|WRB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=How w[1..4]=do w[1..4]=I w[1..4]=Live +song w[-2]=play w[-1]=song w[0]=How w[1]=do w[2]=I wl[-2]=play wl[-1]=song wl[0]=how wl[1]=do wl[2]=i pos[-2]=VBP pos[-1]=NN pos[0]=WRB pos[1]=WRB pos[2]=WRB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULL shape[1]=LL shape[2]=U shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=U type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllUpper p1[-2]=p p1[-1]=s p1[0]=H p1[1]=d p1[2]=I p2[-2]=pl p2[-1]=so p2[0]=Ho p2[1]=do p2[2]= p3[-2]=pla p3[-1]=son p3[0]=How p3[1]= p3[2]= p4[-2]=play p4[-1]=song p4[0]= p4[1]= p4[2]= s1[-2]=y s1[-1]=g s1[0]=w s1[1]=o s1[2]=I s2[-2]=ay s2[-1]=ng s2[0]=ow s2[1]=do s2[2]= s3[-2]=lay s3[-1]=ong s3[0]=How s3[1]= s3[2]= s4[-2]=play s4[-1]=song s4[0]= s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=yes al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|How w[0]|w[1]=How|do w[1]|w[2]=do|I pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|WRB pos[0]|pos[1]=WRB|WRB pos[1]|pos[2]=WRB|WRB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|U type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=do w[1..4]=I w[1..4]=Live +song w[-2]=song w[-1]=How w[0]=do w[1]=I w[2]=Live wl[-2]=song wl[-1]=how wl[0]=do wl[1]=i wl[2]=live pos[-2]=NN pos[-1]=WRB pos[0]=WRB pos[1]=WRB pos[2]=WRB chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=LL shape[1]=U shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=U shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllUpper type[2]=InitUpper p1[-2]=s p1[-1]=H p1[0]=d p1[1]=I p1[2]=L p2[-2]=so p2[-1]=Ho p2[0]=do p2[1]= p2[2]=Li p3[-2]=son p3[-1]=How p3[0]= p3[1]= p3[2]=Liv p4[-2]=song p4[-1]= p4[0]= p4[1]= p4[2]=Live s1[-2]=g s1[-1]=w s1[0]=o s1[1]=I s1[2]=e s2[-2]=ng s2[-1]=ow s2[0]=do s2[1]= s2[2]=ve s3[-2]=ong s3[-1]=How s3[0]= s3[1]= s3[2]=ive s4[-2]=song s4[-1]= s4[0]= s4[1]= s4[2]=Live 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=yes au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|How w[-1]|w[0]=How|do w[0]|w[1]=do|I w[1]|w[2]=I|Live pos[-2]|pos[-1]=NN|WRB pos[-1]|pos[0]=WRB|WRB pos[0]|pos[1]=WRB|WRB pos[1]|pos[2]=WRB|WRB chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=How w[1..4]=I w[1..4]=Live +song w[-2]=How w[-1]=do w[0]=I w[1]=Live wl[-2]=how wl[-1]=do wl[0]=i wl[1]=live pos[-2]=WRB pos[-1]=WRB pos[0]=WRB pos[1]=WRB chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=LL shape[0]=U shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=U shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllUpper type[1]=InitUpper p1[-2]=H p1[-1]=d p1[0]=I p1[1]=L p2[-2]=Ho p2[-1]=do p2[0]= p2[1]=Li p3[-2]=How p3[-1]= p3[0]= p3[1]=Liv p4[-2]= p4[-1]= p4[0]= p4[1]=Live s1[-2]=w s1[-1]=o s1[0]=I s1[1]=e s2[-2]=ow s2[-1]=do s2[0]= s2[1]=ve s3[-2]=How s3[-1]= s3[0]= s3[1]=ive s4[-2]= s4[-1]= s4[0]= s4[1]=Live 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=yes au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=How|do w[-1]|w[0]=do|I w[0]|w[1]=I|Live pos[-2]|pos[-1]=WRB|WRB pos[-1]|pos[0]=WRB|WRB pos[0]|pos[1]=WRB|WRB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=How w[-4..-1]=do w[1..4]=Live +song w[-2]=do w[-1]=I w[0]=Live wl[-2]=do wl[-1]=i wl[0]=live pos[-2]=WRB pos[-1]=WRB pos[0]=WRB chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=U shape[0]=ULLL shaped[-2]=L shaped[-1]=U shaped[0]=UL type[-2]=AllLetter type[-1]=AllUpper type[0]=InitUpper p1[-2]=d p1[-1]=I p1[0]=L p2[-2]=do p2[-1]= p2[0]=Li p3[-2]= p3[-1]= p3[0]=Liv p4[-2]= p4[-1]= p4[0]=Live s1[-2]=o s1[-1]=I s1[0]=e s2[-2]=do s2[-1]= s2[0]=ve s3[-2]= s3[-1]= s3[0]=ive s4[-2]= s4[-1]= s4[0]=Live 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=yes au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=no cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=do|I w[-1]|w[0]=I|Live pos[-2]|pos[-1]=WRB|WRB pos[-1]|pos[0]=WRB|WRB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|UL type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|InitUpper w[-4..-1]=song w[-4..-1]=How w[-4..-1]=do w[-4..-1]=I __EOS__ + +O w[0]=play w[1]=album w[2]=Madonna wl[0]=play wl[1]=album wl[2]=madonna pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=M p2[0]=pl p2[1]=al p2[2]=Ma p3[0]=pla p3[1]=alb p3[2]=Mad p4[0]=play p4[1]=albu p4[2]=Mado s1[0]=y s1[1]=m s1[2]=a s2[0]=ay s2[1]=um s2[2]=na s3[0]=lay s3[1]=bum s3[2]=nna s4[0]=play s4[1]=lbum s4[2]=onna 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Madonna pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Madonna __BOS__ +O w[-1]=play w[0]=album w[1]=Madonna wl[-1]=play wl[0]=album wl[1]=madonna pos[-1]=VB pos[0]=NN pos[1]=NNP chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-1]=p p1[0]=a p1[1]=M p2[-1]=pl p2[0]=al p2[1]=Ma p3[-1]=pla p3[0]=alb p3[1]=Mad p4[-1]=play p4[0]=albu p4[1]=Mado s1[-1]=y s1[0]=m s1[1]=a s2[-1]=ay s2[0]=um s2[1]=na s3[-1]=lay s3[0]=bum s3[1]=nna s4[-1]=play s4[0]=lbum s4[1]=onna 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Madonna pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=Madonna +album w[-2]=play w[-1]=album w[0]=Madonna wl[-2]=play wl[-1]=album wl[0]=madonna pos[-2]=VB pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=a p1[0]=M p2[-2]=pl p2[-1]=al p2[0]=Ma p3[-2]=pla p3[-1]=alb p3[0]=Mad p4[-2]=play p4[-1]=albu p4[0]=Mado s1[-2]=y s1[-1]=m s1[0]=a s2[-2]=ay s2[-1]=um s2[0]=na s3[-2]=lay s3[-1]=bum s3[0]=nna s4[-2]=play s4[-1]=lbum s4[0]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Madonna pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album __EOS__ + +O w[0]=play w[1]=country w[2]=blues wl[0]=play wl[1]=country wl[2]=blues pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=LLLLLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=c p1[2]=b p2[0]=pl p2[1]=co p2[2]=bl p3[0]=pla p3[1]=cou p3[2]=blu p4[0]=play p4[1]=coun p4[2]=blue s1[0]=y s1[1]=y s1[2]=s s2[0]=ay s2[1]=ry s2[2]=es s3[0]=lay s3[1]=try s3[2]=ues s4[0]=play s4[1]=ntry s4[2]=lues 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|country w[1]|w[2]=country|blues pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=country w[1..4]=blues __BOS__ +genre w[-1]=play w[0]=country w[1]=blues wl[-1]=play wl[0]=country wl[1]=blues pos[-1]=VB pos[0]=NN pos[1]=NN chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=LLLLLLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=c p1[1]=b p2[-1]=pl p2[0]=co p2[1]=bl p3[-1]=pla p3[0]=cou p3[1]=blu p4[-1]=play p4[0]=coun p4[1]=blue s1[-1]=y s1[0]=y s1[1]=s s2[-1]=ay s2[0]=ry s2[1]=es s3[-1]=lay s3[0]=try s3[1]=ues s4[-1]=play s4[0]=ntry s4[1]=lues 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|country w[0]|w[1]=country|blues pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=blues +genre w[-2]=play w[-1]=country w[0]=blues wl[-2]=play wl[-1]=country wl[0]=blues pos[-2]=VB pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=LLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=c p1[0]=b p2[-2]=pl p2[-1]=co p2[0]=bl p3[-2]=pla p3[-1]=cou p3[0]=blu p4[-2]=play p4[-1]=coun p4[0]=blue s1[-2]=y s1[-1]=y s1[0]=s s2[-2]=ay s2[-1]=ry s2[0]=es s3[-2]=lay s3[-1]=try s3[0]=ues s4[-2]=play s4[-1]=ntry s4[0]=lues 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|country w[-1]|w[0]=country|blues pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=country __EOS__ + +O w[0]=music w[1]=play w[2]=Addicted wl[0]=music wl[1]=play wl[2]=addicted pos[0]=NN pos[1]=NN pos[2]=VBN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLLL shape[1]=LLLL shape[2]=ULLLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=m p1[1]=p p1[2]=A p2[0]=mu p2[1]=pl p2[2]=Ad p3[0]=mus p3[1]=pla p3[2]=Add p4[0]=musi p4[1]=play p4[2]=Addi s1[0]=c s1[1]=y s1[2]=d s2[0]=ic s2[1]=ay s2[2]=ed s3[0]=sic s3[1]=lay s3[2]=ted s4[0]=usic s4[1]=play s4[2]=cted 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=music|play w[1]|w[2]=play|Addicted pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|VBN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=play w[1..4]=Addicted w[1..4]=to w[1..4]=Love __BOS__ +O w[-1]=music w[0]=play w[1]=Addicted w[2]=to wl[-1]=music wl[0]=play wl[1]=addicted wl[2]=to pos[-1]=NN pos[0]=NN pos[1]=VBN pos[2]=VBN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLLL shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=m p1[0]=p p1[1]=A p1[2]=t p2[-1]=mu p2[0]=pl p2[1]=Ad p2[2]=to p3[-1]=mus p3[0]=pla p3[1]=Add p3[2]= p4[-1]=musi p4[0]=play p4[1]=Addi p4[2]= s1[-1]=c s1[0]=y s1[1]=d s1[2]=o s2[-1]=ic s2[0]=ay s2[1]=ed s2[2]=to s3[-1]=sic s3[0]=lay s3[1]=ted s3[2]= s4[-1]=usic s4[0]=play s4[1]=cted s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=music|play w[0]|w[1]=play|Addicted w[1]|w[2]=Addicted|to pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|VBN pos[1]|pos[2]=VBN|VBN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=music w[1..4]=Addicted w[1..4]=to w[1..4]=Love +song w[-2]=music w[-1]=play w[0]=Addicted w[1]=to w[2]=Love wl[-2]=music wl[-1]=play wl[0]=addicted wl[1]=to wl[2]=love pos[-2]=NN pos[-1]=NN pos[0]=VBN pos[1]=VBN pos[2]=VBN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLLL shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=LL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=m p1[-1]=p p1[0]=A p1[1]=t p1[2]=L p2[-2]=mu p2[-1]=pl p2[0]=Ad p2[1]=to p2[2]=Lo p3[-2]=mus p3[-1]=pla p3[0]=Add p3[1]= p3[2]=Lov p4[-2]=musi p4[-1]=play p4[0]=Addi p4[1]= p4[2]=Love s1[-2]=c s1[-1]=y s1[0]=d s1[1]=o s1[2]=e s2[-2]=ic s2[-1]=ay s2[0]=ed s2[1]=to s2[2]=ve s3[-2]=sic s3[-1]=lay s3[0]=ted s3[1]= s3[2]=ove s4[-2]=usic s4[-1]=play s4[0]=cted s4[1]= s4[2]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=music|play w[-1]|w[0]=play|Addicted w[0]|w[1]=Addicted|to w[1]|w[2]=to|Love pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|VBN pos[0]|pos[1]=VBN|VBN pos[1]|pos[2]=VBN|VBN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=music w[-4..-1]=play w[1..4]=to w[1..4]=Love +song w[-2]=play w[-1]=Addicted w[0]=to w[1]=Love wl[-2]=play wl[-1]=addicted wl[0]=to wl[1]=love pos[-2]=NN pos[-1]=VBN pos[0]=VBN pos[1]=VBN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=LL shape[1]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=A p1[0]=t p1[1]=L p2[-2]=pl p2[-1]=Ad p2[0]=to p2[1]=Lo p3[-2]=pla p3[-1]=Add p3[0]= p3[1]=Lov p4[-2]=play p4[-1]=Addi p4[0]= p4[1]=Love s1[-2]=y s1[-1]=d s1[0]=o s1[1]=e s2[-2]=ay s2[-1]=ed s2[0]=to s2[1]=ve s3[-2]=lay s3[-1]=ted s3[0]= s3[1]=ove s4[-2]=play s4[-1]=cted s4[0]= s4[1]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Addicted w[-1]|w[0]=Addicted|to w[0]|w[1]=to|Love pos[-2]|pos[-1]=NN|VBN pos[-1]|pos[0]=VBN|VBN pos[0]|pos[1]=VBN|VBN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=music w[-4..-1]=play w[-4..-1]=Addicted w[1..4]=Love +song w[-2]=Addicted w[-1]=to w[0]=Love wl[-2]=addicted wl[-1]=to wl[0]=love pos[-2]=VBN pos[-1]=VBN pos[0]=VBN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLLLL shape[-1]=LL shape[0]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=A p1[-1]=t p1[0]=L p2[-2]=Ad p2[-1]=to p2[0]=Lo p3[-2]=Add p3[-1]= p3[0]=Lov p4[-2]=Addi p4[-1]= p4[0]=Love s1[-2]=d s1[-1]=o s1[0]=e s2[-2]=ed s2[-1]=to s2[0]=ve s3[-2]=ted s3[-1]= s3[0]=ove s4[-2]=cted s4[-1]= s4[0]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Addicted|to w[-1]|w[0]=to|Love pos[-2]|pos[-1]=VBN|VBN pos[-1]|pos[0]=VBN|VBN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=music w[-4..-1]=play w[-4..-1]=Addicted w[-4..-1]=to __EOS__ + +O w[0]=play w[1]=hip w[2]=hop wl[0]=play wl[1]=hip wl[2]=hop pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=LLL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=h p1[2]=h p2[0]=pl p2[1]=hi p2[2]=ho p3[0]=pla p3[1]=hip p3[2]=hop p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=p s1[2]=p s2[0]=ay s2[1]=ip s2[2]=op s3[0]=lay s3[1]=hip s3[2]=hop s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|hip w[1]|w[2]=hip|hop pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=hip w[1..4]=hop __BOS__ +genre w[-1]=play w[0]=hip w[1]=hop wl[-1]=play wl[0]=hip wl[1]=hop pos[-1]=VB pos[0]=NN pos[1]=NN chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=h p1[1]=h p2[-1]=pl p2[0]=hi p2[1]=ho p3[-1]=pla p3[0]=hip p3[1]=hop p4[-1]=play p4[0]= p4[1]= s1[-1]=y s1[0]=p s1[1]=p s2[-1]=ay s2[0]=ip s2[1]=op s3[-1]=lay s3[0]=hip s3[1]=hop s4[-1]=play s4[0]= s4[1]= 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|hip w[0]|w[1]=hip|hop pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=hop +genre w[-2]=play w[-1]=hip w[0]=hop wl[-2]=play wl[-1]=hip wl[0]=hop pos[-2]=VB pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=h p1[0]=h p2[-2]=pl p2[-1]=hi p2[0]=ho p3[-2]=pla p3[-1]=hip p3[0]=hop p4[-2]=play p4[-1]= p4[0]= s1[-2]=y s1[-1]=p s1[0]=p s2[-2]=ay s2[-1]=ip s2[0]=op s3[-2]=lay s3[-1]=hip s3[0]=hop s4[-2]=play s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|hip w[-1]|w[0]=hip|hop pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=hip __EOS__ + +O w[0]=put w[1]=on w[2]=my wl[0]=put wl[1]=on wl[2]=my pos[0]=VB pos[1]=RP pos[2]=PRP$ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=o p1[2]=m p2[0]=pu p2[1]=on p2[2]=my p3[0]=put p3[1]= p3[2]= p4[0]= p4[1]= p4[2]= s1[0]=t s1[1]=n s1[2]=y s2[0]=ut s2[1]=on s2[2]=my s3[0]=put s3[1]= s3[2]= s4[0]= s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|on w[1]|w[2]=on|my pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|PRP$ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=my w[1..4]=late w[1..4]=night __BOS__ +O w[-1]=put w[0]=on w[1]=my w[2]=late wl[-1]=put wl[0]=on wl[1]=my wl[2]=late pos[-1]=VB pos[0]=RP pos[1]=PRP$ pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LL shape[1]=LL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=o p1[1]=m p1[2]=l p2[-1]=pu p2[0]=on p2[1]=my p2[2]=la p3[-1]=put p3[0]= p3[1]= p3[2]=lat p4[-1]= p4[0]= p4[1]= p4[2]=late s1[-1]=t s1[0]=n s1[1]=y s1[2]=e s2[-1]=ut s2[0]=on s2[1]=my s2[2]=te s3[-1]=put s3[0]= s3[1]= s3[2]=ate s4[-1]= s4[0]= s4[1]= s4[2]=late 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|on w[0]|w[1]=on|my w[1]|w[2]=my|late pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|PRP$ pos[1]|pos[2]=PRP$|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=my w[1..4]=late w[1..4]=night w[1..4]=playlist +O w[-2]=put w[-1]=on w[0]=my w[1]=late w[2]=night wl[-2]=put wl[-1]=on wl[0]=my wl[1]=late wl[2]=night pos[-2]=VB pos[-1]=RP pos[0]=PRP$ pos[1]=JJ pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LL shape[0]=LL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=o p1[0]=m p1[1]=l p1[2]=n p2[-2]=pu p2[-1]=on p2[0]=my p2[1]=la p2[2]=ni p3[-2]=put p3[-1]= p3[0]= p3[1]=lat p3[2]=nig p4[-2]= p4[-1]= p4[0]= p4[1]=late p4[2]=nigh s1[-2]=t s1[-1]=n s1[0]=y s1[1]=e s1[2]=t s2[-2]=ut s2[-1]=on s2[0]=my s2[1]=te s2[2]=ht s3[-2]=put s3[-1]= s3[0]= s3[1]=ate s3[2]=ght s4[-2]= s4[-1]= s4[0]= s4[1]=late s4[2]=ight 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=put|on w[-1]|w[0]=on|my w[0]|w[1]=my|late w[1]|w[2]=late|night pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|PRP$ pos[0]|pos[1]=PRP$|JJ pos[1]|pos[2]=JJ|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=on w[1..4]=late w[1..4]=night w[1..4]=playlist +playlist w[-2]=on w[-1]=my w[0]=late w[1]=night w[2]=playlist wl[-2]=on wl[-1]=my wl[0]=late wl[1]=night wl[2]=playlist pos[-2]=RP pos[-1]=PRP$ pos[0]=JJ pos[1]=JJ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=o p1[-1]=m p1[0]=l p1[1]=n p1[2]=p p2[-2]=on p2[-1]=my p2[0]=la p2[1]=ni p2[2]=pl p3[-2]= p3[-1]= p3[0]=lat p3[1]=nig p3[2]=pla p4[-2]= p4[-1]= p4[0]=late p4[1]=nigh p4[2]=play s1[-2]=n s1[-1]=y s1[0]=e s1[1]=t s1[2]=t s2[-2]=on s2[-1]=my s2[0]=te s2[1]=ht s2[2]=st s3[-2]= s3[-1]= s3[0]=ate s3[1]=ght s3[2]=ist s4[-2]= s4[-1]= s4[0]=late s4[1]=ight s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=on|my w[-1]|w[0]=my|late w[0]|w[1]=late|night w[1]|w[2]=night|playlist pos[-2]|pos[-1]=RP|PRP$ pos[-1]|pos[0]=PRP$|JJ pos[0]|pos[1]=JJ|JJ pos[1]|pos[2]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=on w[-4..-1]=my w[1..4]=night w[1..4]=playlist +playlist w[-2]=my w[-1]=late w[0]=night w[1]=playlist wl[-2]=my wl[-1]=late wl[0]=night wl[1]=playlist pos[-2]=PRP$ pos[-1]=JJ pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=m p1[-1]=l p1[0]=n p1[1]=p p2[-2]=my p2[-1]=la p2[0]=ni p2[1]=pl p3[-2]= p3[-1]=lat p3[0]=nig p3[1]=pla p4[-2]= p4[-1]=late p4[0]=nigh p4[1]=play s1[-2]=y s1[-1]=e s1[0]=t s1[1]=t s2[-2]=my s2[-1]=te s2[0]=ht s2[1]=st s3[-2]= s3[-1]=ate s3[0]=ght s3[1]=ist s4[-2]= s4[-1]=late s4[0]=ight s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=my|late w[-1]|w[0]=late|night w[0]|w[1]=night|playlist pos[-2]|pos[-1]=PRP$|JJ pos[-1]|pos[0]=JJ|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=on w[-4..-1]=my w[-4..-1]=late w[1..4]=playlist +O w[-2]=late w[-1]=night w[0]=playlist wl[-2]=late wl[-1]=night wl[0]=playlist pos[-2]=JJ pos[-1]=JJ pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=l p1[-1]=n p1[0]=p p2[-2]=la p2[-1]=ni p2[0]=pl p3[-2]=lat p3[-1]=nig p3[0]=pla p4[-2]=late p4[-1]=nigh p4[0]=play s1[-2]=e s1[-1]=t s1[0]=t s2[-2]=te s2[-1]=ht s2[0]=st s3[-2]=ate s3[-1]=ght s3[0]=ist s4[-2]=late s4[-1]=ight s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=late|night w[-1]|w[0]=night|playlist pos[-2]|pos[-1]=JJ|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=on w[-4..-1]=my w[-4..-1]=late w[-4..-1]=night __EOS__ + +O w[0]=play w[1]=genre w[2]=party wl[0]=play wl[1]=genre wl[2]=party pos[0]=VBP pos[1]=NN pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=g p1[2]=p p2[0]=pl p2[1]=ge p2[2]=pa p3[0]=pla p3[1]=gen p3[2]=par p4[0]=play p4[1]=genr p4[2]=part s1[0]=y s1[1]=e s1[2]=y s2[0]=ay s2[1]=re s2[2]=ty s3[0]=lay s3[1]=nre s3[2]=rty s4[0]=play s4[1]=enre s4[2]=arty 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|genre w[1]|w[2]=genre|party pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=genre w[1..4]=party __BOS__ +O w[-1]=play w[0]=genre w[1]=party wl[-1]=play wl[0]=genre wl[1]=party pos[-1]=VBP pos[0]=NN pos[1]=NN chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=g p1[1]=p p2[-1]=pl p2[0]=ge p2[1]=pa p3[-1]=pla p3[0]=gen p3[1]=par p4[-1]=play p4[0]=genr p4[1]=part s1[-1]=y s1[0]=e s1[1]=y s2[-1]=ay s2[0]=re s2[1]=ty s3[-1]=lay s3[0]=nre s3[1]=rty s4[-1]=play s4[0]=enre s4[1]=arty 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|genre w[0]|w[1]=genre|party pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=party +genre w[-2]=play w[-1]=genre w[0]=party wl[-2]=play wl[-1]=genre wl[0]=party pos[-2]=VBP pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=g p1[0]=p p2[-2]=pl p2[-1]=ge p2[0]=pa p3[-2]=pla p3[-1]=gen p3[0]=par p4[-2]=play p4[-1]=genr p4[0]=part s1[-2]=y s1[-1]=e s1[0]=y s2[-2]=ay s2[-1]=re s2[0]=ty s3[-2]=lay s3[-1]=nre s3[0]=rty s4[-2]=play s4[-1]=enre s4[0]=arty 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|genre w[-1]|w[0]=genre|party pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=genre __EOS__ + +O w[0]=play w[1]=genre w[2]=blues wl[0]=play wl[1]=genre wl[2]=blues pos[0]=VBP pos[1]=NN pos[2]=NNS chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=g p1[2]=b p2[0]=pl p2[1]=ge p2[2]=bl p3[0]=pla p3[1]=gen p3[2]=blu p4[0]=play p4[1]=genr p4[2]=blue s1[0]=y s1[1]=e s1[2]=s s2[0]=ay s2[1]=re s2[2]=es s3[0]=lay s3[1]=nre s3[2]=ues s4[0]=play s4[1]=enre s4[2]=lues 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|genre w[1]|w[2]=genre|blues pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNS chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=genre w[1..4]=blues __BOS__ +O w[-1]=play w[0]=genre w[1]=blues wl[-1]=play wl[0]=genre wl[1]=blues pos[-1]=VBP pos[0]=NN pos[1]=NNS chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=g p1[1]=b p2[-1]=pl p2[0]=ge p2[1]=bl p3[-1]=pla p3[0]=gen p3[1]=blu p4[-1]=play p4[0]=genr p4[1]=blue s1[-1]=y s1[0]=e s1[1]=s s2[-1]=ay s2[0]=re s2[1]=es s3[-1]=lay s3[0]=nre s3[1]=ues s4[-1]=play s4[0]=enre s4[1]=lues 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|genre w[0]|w[1]=genre|blues pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=blues +genre w[-2]=play w[-1]=genre w[0]=blues wl[-2]=play wl[-1]=genre wl[0]=blues pos[-2]=VBP pos[-1]=NN pos[0]=NNS chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=g p1[0]=b p2[-2]=pl p2[-1]=ge p2[0]=bl p3[-2]=pla p3[-1]=gen p3[0]=blu p4[-2]=play p4[-1]=genr p4[0]=blue s1[-2]=y s1[-1]=e s1[0]=s s2[-2]=ay s2[-1]=re s2[0]=es s3[-2]=lay s3[-1]=nre s3[0]=ues s4[-2]=play s4[-1]=enre s4[0]=lues 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|genre w[-1]|w[0]=genre|blues pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=genre __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=the w[1..4]=song __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=the wl[-1]=can wl[0]=you wl[1]=play wl[2]=the pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=t p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=th p3[-1]=can p3[0]=you p3[1]=pla p3[2]=the p4[-1]= p4[0]= p4[1]=play p4[2]= s1[-1]=n s1[0]=u s1[1]=y s1[2]=e s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=he s3[-1]=can s3[0]=you s3[1]=lay s3[2]=the s4[-1]= s4[0]= s4[1]=play s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|the pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=play w[1..4]=the w[1..4]=song w[1..4]=Still +O w[-2]=can w[-1]=you w[0]=play w[1]=the w[2]=song wl[-2]=can wl[-1]=you wl[0]=play wl[1]=the wl[2]=song pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=t p1[2]=s p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=th p2[2]=so p3[-2]=can p3[-1]=you p3[0]=pla p3[1]=the p3[2]=son p4[-2]= p4[-1]= p4[0]=play p4[1]= p4[2]=song s1[-2]=n s1[-1]=u s1[0]=y s1[1]=e s1[2]=g s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=he s2[2]=ng s3[-2]=can s3[-1]=you s3[0]=lay s3[1]=the s3[2]=ong s4[-2]= s4[-1]= s4[0]=play s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|the w[1]|w[2]=the|song pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=the w[1..4]=song w[1..4]=Still w[1..4]=into +O w[-2]=you w[-1]=play w[0]=the w[1]=song w[2]=Still wl[-2]=you wl[-1]=play wl[0]=the wl[1]=song wl[2]=still pos[-2]=PRP pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=y p1[-1]=p p1[0]=t p1[1]=s p1[2]=S p2[-2]=yo p2[-1]=pl p2[0]=th p2[1]=so p2[2]=St p3[-2]=you p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Sti p4[-2]= p4[-1]=play p4[0]= p4[1]=song p4[2]=Stil s1[-2]=u s1[-1]=y s1[0]=e s1[1]=g s1[2]=l s2[-2]=ou s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=ll s3[-2]=you s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ill s4[-2]= s4[-1]=play s4[0]= s4[1]=song s4[2]=till 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Still pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[1..4]=song w[1..4]=Still w[1..4]=into w[1..4]=You +O w[-2]=play w[-1]=the w[0]=song w[1]=Still w[2]=into wl[-2]=play wl[-1]=the wl[0]=song wl[1]=still wl[2]=into pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=RB pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p1[1]=S p1[2]=i p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=St p2[2]=in p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Sti p3[2]=int p4[-2]=play p4[-1]= p4[0]=song p4[1]=Stil p4[2]=into s1[-2]=y s1[-1]=e s1[0]=g s1[1]=l s1[2]=o s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=ll s2[2]=to s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ill s3[2]=nto s4[-2]=play s4[-1]= s4[0]=song s4[1]=till s4[2]=into 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Still w[1]|w[2]=Still|into pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|RB pos[1]|pos[2]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[-4..-1]=the w[1..4]=Still w[1..4]=into w[1..4]=You +song w[-2]=the w[-1]=song w[0]=Still w[1]=into w[2]=You wl[-2]=the wl[-1]=song wl[0]=still wl[1]=into wl[2]=you pos[-2]=DT pos[-1]=NN pos[0]=RB pos[1]=RB pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLL shape[1]=LLLL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=s p1[0]=S p1[1]=i p1[2]=Y p2[-2]=th p2[-1]=so p2[0]=St p2[1]=in p2[2]=Yo p3[-2]=the p3[-1]=son p3[0]=Sti p3[1]=int p3[2]=You p4[-2]= p4[-1]=song p4[0]=Stil p4[1]=into p4[2]= s1[-2]=e s1[-1]=g s1[0]=l s1[1]=o s1[2]=u s2[-2]=he s2[-1]=ng s2[0]=ll s2[1]=to s2[2]=ou s3[-2]=the s3[-1]=ong s3[0]=ill s3[1]=nto s3[2]=You s4[-2]= s4[-1]=song s4[0]=till s4[1]=into s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Still w[0]|w[1]=Still|into w[1]|w[2]=into|You pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|RB pos[0]|pos[1]=RB|RB pos[1]|pos[2]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=you w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[1..4]=into w[1..4]=You +song w[-2]=song w[-1]=Still w[0]=into w[1]=You wl[-2]=song wl[-1]=still wl[0]=into wl[1]=you pos[-2]=NN pos[-1]=RB pos[0]=RB pos[1]=RB chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=LLLL shape[1]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=s p1[-1]=S p1[0]=i p1[1]=Y p2[-2]=so p2[-1]=St p2[0]=in p2[1]=Yo p3[-2]=son p3[-1]=Sti p3[0]=int p3[1]=You p4[-2]=song p4[-1]=Stil p4[0]=into p4[1]= s1[-2]=g s1[-1]=l s1[0]=o s1[1]=u s2[-2]=ng s2[-1]=ll s2[0]=to s2[1]=ou s3[-2]=ong s3[-1]=ill s3[0]=nto s3[1]=You s4[-2]=song s4[-1]=till s4[0]=into s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|Still w[-1]|w[0]=Still|into w[0]|w[1]=into|You pos[-2]|pos[-1]=NN|RB pos[-1]|pos[0]=RB|RB pos[0]|pos[1]=RB|RB chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Still w[1..4]=You +song w[-2]=Still w[-1]=into w[0]=You wl[-2]=still wl[-1]=into wl[0]=you pos[-2]=RB pos[-1]=RB pos[0]=RB chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLL shape[-1]=LLLL shape[0]=ULL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=S p1[-1]=i p1[0]=Y p2[-2]=St p2[-1]=in p2[0]=Yo p3[-2]=Sti p3[-1]=int p3[0]=You p4[-2]=Stil p4[-1]=into p4[0]= s1[-2]=l s1[-1]=o s1[0]=u s2[-2]=ll s2[-1]=to s2[0]=ou s3[-2]=ill s3[-1]=nto s3[0]=You s4[-2]=till s4[-1]=into s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Still|into w[-1]|w[0]=into|You pos[-2]|pos[-1]=RB|RB pos[-1]|pos[0]=RB|RB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Still w[-4..-1]=into __EOS__ + +O w[0]=play w[1]=jazz w[2]=on wl[0]=play wl[1]=jazz wl[2]=on pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=j p1[2]=o p2[0]=pl p2[1]=ja p2[2]=on p3[0]=pla p3[1]=jaz p3[2]= p4[0]=play p4[1]=jazz p4[2]= s1[0]=y s1[1]=z s1[2]=n s2[0]=ay s2[1]=zz s2[2]=on s3[0]=lay s3[1]=azz s3[2]= s4[0]=play s4[1]=jazz s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|jazz w[1]|w[2]=jazz|on pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=jazz w[1..4]=on w[1..4]=Spotify __BOS__ +genre w[-1]=play w[0]=jazz w[1]=on w[2]=Spotify wl[-1]=play wl[0]=jazz wl[1]=on wl[2]=spotify pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=j p1[1]=o p1[2]=S p2[-1]=pl p2[0]=ja p2[1]=on p2[2]=Sp p3[-1]=pla p3[0]=jaz p3[1]= p3[2]=Spo p4[-1]=play p4[0]=jazz p4[1]= p4[2]=Spot s1[-1]=y s1[0]=z s1[1]=n s1[2]=y s2[-1]=ay s2[0]=zz s2[1]=on s2[2]=fy s3[-1]=lay s3[0]=azz s3[1]= s3[2]=ify s4[-1]=play s4[0]=jazz s4[1]= s4[2]=tify 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|jazz w[0]|w[1]=jazz|on w[1]|w[2]=on|Spotify pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=on w[1..4]=Spotify +O w[-2]=play w[-1]=jazz w[0]=on w[1]=Spotify wl[-2]=play wl[-1]=jazz wl[0]=on wl[1]=spotify pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=j p1[0]=o p1[1]=S p2[-2]=pl p2[-1]=ja p2[0]=on p2[1]=Sp p3[-2]=pla p3[-1]=jaz p3[0]= p3[1]=Spo p4[-2]=play p4[-1]=jazz p4[0]= p4[1]=Spot s1[-2]=y s1[-1]=z s1[0]=n s1[1]=y s2[-2]=ay s2[-1]=zz s2[0]=on s2[1]=fy s3[-2]=lay s3[-1]=azz s3[0]= s3[1]=ify s4[-2]=play s4[-1]=jazz s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|jazz w[-1]|w[0]=jazz|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=jazz w[1..4]=Spotify +service w[-2]=jazz w[-1]=on w[0]=Spotify wl[-2]=jazz wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=j p1[-1]=o p1[0]=S p2[-2]=ja p2[-1]=on p2[0]=Sp p3[-2]=jaz p3[-1]= p3[0]=Spo p4[-2]=jazz p4[-1]= p4[0]=Spot s1[-2]=z s1[-1]=n s1[0]=y s2[-2]=zz s2[-1]=on s2[0]=fy s3[-2]=azz s3[-1]= s3[0]=ify s4[-2]=jazz s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=jazz|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=jazz w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=Pearl w[2]=Jam wl[0]=play wl[1]=pearl wl[2]=jam pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLL shape[2]=ULL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=P p1[2]=J p2[0]=pl p2[1]=Pe p2[2]=Ja p3[0]=pla p3[1]=Pea p3[2]=Jam p4[0]=play p4[1]=Pear p4[2]= s1[0]=y s1[1]=l s1[2]=m s2[0]=ay s2[1]=rl s2[2]=am s3[0]=lay s3[1]=arl s3[2]=Jam s4[0]=play s4[1]=earl s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Pearl w[1]|w[2]=Pearl|Jam pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Pearl w[1..4]=Jam __BOS__ +artist w[-1]=play w[0]=Pearl w[1]=Jam wl[-1]=play wl[0]=pearl wl[1]=jam pos[-1]=VB pos[0]=NNP pos[1]=NNP chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=P p1[1]=J p2[-1]=pl p2[0]=Pe p2[1]=Ja p3[-1]=pla p3[0]=Pea p3[1]=Jam p4[-1]=play p4[0]=Pear p4[1]= s1[-1]=y s1[0]=l s1[1]=m s2[-1]=ay s2[0]=rl s2[1]=am s3[-1]=lay s3[0]=arl s3[1]=Jam s4[-1]=play s4[0]=earl s4[1]= 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|Pearl w[0]|w[1]=Pearl|Jam pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Jam +artist w[-2]=play w[-1]=Pearl w[0]=Jam wl[-2]=play wl[-1]=pearl wl[0]=jam pos[-2]=VB pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=P p1[0]=J p2[-2]=pl p2[-1]=Pe p2[0]=Ja p3[-2]=pla p3[-1]=Pea p3[0]=Jam p4[-2]=play p4[-1]=Pear p4[0]= s1[-2]=y s1[-1]=l s1[0]=m s2[-2]=ay s2[-1]=rl s2[0]=am s3[-2]=lay s3[-1]=arl s3[0]=Jam s4[-2]=play s4[-1]=earl s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|Pearl w[-1]|w[0]=Pearl|Jam pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Pearl __EOS__ + +O w[0]=play w[1]=Britney w[2]=Spears wl[0]=play wl[1]=britney wl[2]=spears pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=B p1[2]=S p2[0]=pl p2[1]=Br p2[2]=Sp p3[0]=pla p3[1]=Bri p3[2]=Spe p4[0]=play p4[1]=Brit p4[2]=Spea s1[0]=y s1[1]=y s1[2]=s s2[0]=ay s2[1]=ey s2[2]=rs s3[0]=lay s3[1]=ney s3[2]=ars s4[0]=play s4[1]=tney s4[2]=ears 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Britney w[1]|w[2]=Britney|Spears pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Britney w[1..4]=Spears w[1..4]=Me w[1..4]=Against __BOS__ +artist w[-1]=play w[0]=Britney w[1]=Spears w[2]=Me wl[-1]=play wl[0]=britney wl[1]=spears wl[2]=me pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=PRP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLLL shape[2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=B p1[1]=S p1[2]=M p2[-1]=pl p2[0]=Br p2[1]=Sp p2[2]=Me p3[-1]=pla p3[0]=Bri p3[1]=Spe p3[2]= p4[-1]=play p4[0]=Brit p4[1]=Spea p4[2]= s1[-1]=y s1[0]=y s1[1]=s s1[2]=e s2[-1]=ay s2[0]=ey s2[1]=rs s2[2]=Me s3[-1]=lay s3[0]=ney s3[1]=ars s3[2]= s4[-1]=play s4[0]=tney s4[1]=ears s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Britney w[0]|w[1]=Britney|Spears w[1]|w[2]=Spears|Me pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|PRP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Spears w[1..4]=Me w[1..4]=Against w[1..4]=the +artist w[-2]=play w[-1]=Britney w[0]=Spears w[1]=Me w[2]=Against wl[-2]=play wl[-1]=britney wl[0]=spears wl[1]=me wl[2]=against pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLLL shape[1]=UL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=B p1[0]=S p1[1]=M p1[2]=A p2[-2]=pl p2[-1]=Br p2[0]=Sp p2[1]=Me p2[2]=Ag p3[-2]=pla p3[-1]=Bri p3[0]=Spe p3[1]= p3[2]=Aga p4[-2]=play p4[-1]=Brit p4[0]=Spea p4[1]= p4[2]=Agai s1[-2]=y s1[-1]=y s1[0]=s s1[1]=e s1[2]=t s2[-2]=ay s2[-1]=ey s2[0]=rs s2[1]=Me s2[2]=st s3[-2]=lay s3[-1]=ney s3[0]=ars s3[1]= s3[2]=nst s4[-2]=play s4[-1]=tney s4[0]=ears s4[1]= s4[2]=inst 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Britney w[-1]|w[0]=Britney|Spears w[0]|w[1]=Spears|Me w[1]|w[2]=Me|Against pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Britney w[1..4]=Me w[1..4]=Against w[1..4]=the w[1..4]=Music +song w[-2]=Britney w[-1]=Spears w[0]=Me w[1]=Against w[2]=the wl[-2]=britney wl[-1]=spears wl[0]=me wl[1]=against wl[2]=the pos[-2]=NNP pos[-1]=NNP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLLLL shape[-1]=ULLLLL shape[0]=UL shape[1]=ULLLLLL shape[2]=LLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=B p1[-1]=S p1[0]=M p1[1]=A p1[2]=t p2[-2]=Br p2[-1]=Sp p2[0]=Me p2[1]=Ag p2[2]=th p3[-2]=Bri p3[-1]=Spe p3[0]= p3[1]=Aga p3[2]=the p4[-2]=Brit p4[-1]=Spea p4[0]= p4[1]=Agai p4[2]= s1[-2]=y s1[-1]=s s1[0]=e s1[1]=t s1[2]=e s2[-2]=ey s2[-1]=rs s2[0]=Me s2[1]=st s2[2]=he s3[-2]=ney s3[-1]=ars s3[0]= s3[1]=nst s3[2]=the s4[-2]=tney s4[-1]=ears s4[0]= s4[1]=inst s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Britney|Spears w[-1]|w[0]=Spears|Me w[0]|w[1]=Me|Against w[1]|w[2]=Against|the pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Britney w[-4..-1]=Spears w[1..4]=Against w[1..4]=the w[1..4]=Music w[1..4]=feat +song w[-2]=Spears w[-1]=Me w[0]=Against w[1]=the w[2]=Music wl[-2]=spears wl[-1]=me wl[0]=against wl[1]=the wl[2]=music pos[-2]=NNP pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLLL shape[-1]=UL shape[0]=ULLLLLL shape[1]=LLL shape[2]=ULLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=S p1[-1]=M p1[0]=A p1[1]=t p1[2]=M p2[-2]=Sp p2[-1]=Me p2[0]=Ag p2[1]=th p2[2]=Mu p3[-2]=Spe p3[-1]= p3[0]=Aga p3[1]=the p3[2]=Mus p4[-2]=Spea p4[-1]= p4[0]=Agai p4[1]= p4[2]=Musi s1[-2]=s s1[-1]=e s1[0]=t s1[1]=e s1[2]=c s2[-2]=rs s2[-1]=Me s2[0]=st s2[1]=he s2[2]=ic s3[-2]=ars s3[-1]= s3[0]=nst s3[1]=the s3[2]=sic s4[-2]=ears s4[-1]= s4[0]=inst s4[1]= s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Spears|Me w[-1]|w[0]=Me|Against w[0]|w[1]=Against|the w[1]|w[2]=the|Music pos[-2]|pos[-1]=NNP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Britney w[-4..-1]=Spears w[-4..-1]=Me w[1..4]=the w[1..4]=Music w[1..4]=feat w[1..4]=Madonna +song w[-2]=Me w[-1]=Against w[0]=the w[1]=Music w[2]=feat wl[-2]=me wl[-1]=against wl[0]=the wl[1]=music wl[2]=feat pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=UL shape[-1]=ULLLLLL shape[0]=LLL shape[1]=ULLLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=M p1[-1]=A p1[0]=t p1[1]=M p1[2]=f p2[-2]=Me p2[-1]=Ag p2[0]=th p2[1]=Mu p2[2]=fe p3[-2]= p3[-1]=Aga p3[0]=the p3[1]=Mus p3[2]=fea p4[-2]= p4[-1]=Agai p4[0]= p4[1]=Musi p4[2]=feat s1[-2]=e s1[-1]=t s1[0]=e s1[1]=c s1[2]=t s2[-2]=Me s2[-1]=st s2[0]=he s2[1]=ic s2[2]=at s3[-2]= s3[-1]=nst s3[0]=the s3[1]=sic s3[2]=eat s4[-2]= s4[-1]=inst s4[0]= s4[1]=usic s4[2]=feat 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Me|Against w[-1]|w[0]=Against|the w[0]|w[1]=the|Music w[1]|w[2]=Music|feat pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Britney w[-4..-1]=Spears w[-4..-1]=Me w[-4..-1]=Against w[1..4]=Music w[1..4]=feat w[1..4]=Madonna +song w[-2]=Against w[-1]=the w[0]=Music w[1]=feat w[2]=Madonna wl[-2]=against wl[-1]=the wl[0]=music wl[1]=feat wl[2]=madonna pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=NN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLLLLL shape[-1]=LLL shape[0]=ULLLL shape[1]=LLLL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=A p1[-1]=t p1[0]=M p1[1]=f p1[2]=M p2[-2]=Ag p2[-1]=th p2[0]=Mu p2[1]=fe p2[2]=Ma p3[-2]=Aga p3[-1]=the p3[0]=Mus p3[1]=fea p3[2]=Mad p4[-2]=Agai p4[-1]= p4[0]=Musi p4[1]=feat p4[2]=Mado s1[-2]=t s1[-1]=e s1[0]=c s1[1]=t s1[2]=a s2[-2]=st s2[-1]=he s2[0]=ic s2[1]=at s2[2]=na s3[-2]=nst s3[-1]=the s3[0]=sic s3[1]=eat s3[2]=nna s4[-2]=inst s4[-1]= s4[0]=usic s4[1]=feat s4[2]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Against|the w[-1]|w[0]=the|Music w[0]|w[1]=Music|feat w[1]|w[2]=feat|Madonna pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|NN pos[1]|pos[2]=NN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Spears w[-4..-1]=Me w[-4..-1]=Against w[-4..-1]=the w[1..4]=feat w[1..4]=Madonna +O w[-2]=the w[-1]=Music w[0]=feat w[1]=Madonna wl[-2]=the wl[-1]=music wl[0]=feat wl[1]=madonna pos[-2]=PRP pos[-1]=PRP pos[0]=NN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLL shape[-1]=ULLLL shape[0]=LLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=t p1[-1]=M p1[0]=f p1[1]=M p2[-2]=th p2[-1]=Mu p2[0]=fe p2[1]=Ma p3[-2]=the p3[-1]=Mus p3[0]=fea p3[1]=Mad p4[-2]= p4[-1]=Musi p4[0]=feat p4[1]=Mado s1[-2]=e s1[-1]=c s1[0]=t s1[1]=a s2[-2]=he s2[-1]=ic s2[0]=at s2[1]=na s3[-2]=the s3[-1]=sic s3[0]=eat s3[1]=nna s4[-2]= s4[-1]=usic s4[0]=feat s4[1]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=the|Music w[-1]|w[0]=Music|feat w[0]|w[1]=feat|Madonna pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|NN pos[0]|pos[1]=NN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=Me w[-4..-1]=Against w[-4..-1]=the w[-4..-1]=Music w[1..4]=Madonna +artist w[-2]=Music w[-1]=feat w[0]=Madonna wl[-2]=music wl[-1]=feat wl[0]=madonna pos[-2]=PRP pos[-1]=NN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLL shape[-1]=LLLL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=M p1[-1]=f p1[0]=M p2[-2]=Mu p2[-1]=fe p2[0]=Ma p3[-2]=Mus p3[-1]=fea p3[0]=Mad p4[-2]=Musi p4[-1]=feat p4[0]=Mado s1[-2]=c s1[-1]=t s1[0]=a s2[-2]=ic s2[-1]=at s2[0]=na s3[-2]=sic s3[-1]=eat s3[0]=nna s4[-2]=usic s4[-1]=feat s4[0]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Music|feat w[-1]|w[0]=feat|Madonna pos[-2]|pos[-1]=PRP|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Against w[-4..-1]=the w[-4..-1]=Music w[-4..-1]=feat __EOS__ + +O w[0]=play w[1]=me w[2]=some wl[0]=play wl[1]=me wl[2]=some pos[0]=VB pos[1]=PRP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=s p2[0]=pl p2[1]=me p2[2]=so p3[0]=pla p3[1]= p3[2]=som p4[0]=play p4[1]= p4[2]=some s1[0]=y s1[1]=e s1[2]=e s2[0]=ay s2[1]=me s2[2]=me s3[0]=lay s3[1]= s3[2]=ome s4[0]=play s4[1]= s4[2]=some 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|me w[1]|w[2]=me|some pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=me w[1..4]=some w[1..4]=good w[1..4]=music __BOS__ +O w[-1]=play w[0]=me w[1]=some w[2]=good wl[-1]=play wl[0]=me wl[1]=some wl[2]=good pos[-1]=VB pos[0]=PRP pos[1]=DT pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=m p1[1]=s p1[2]=g p2[-1]=pl p2[0]=me p2[1]=so p2[2]=go p3[-1]=pla p3[0]= p3[1]=som p3[2]=goo p4[-1]=play p4[0]= p4[1]=some p4[2]=good s1[-1]=y s1[0]=e s1[1]=e s1[2]=d s2[-1]=ay s2[0]=me s2[1]=me s2[2]=od s3[-1]=lay s3[0]= s3[1]=ome s3[2]=ood s4[-1]=play s4[0]= s4[1]=some s4[2]=good 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|me w[0]|w[1]=me|some w[1]|w[2]=some|good pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|DT pos[1]|pos[2]=DT|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=some w[1..4]=good w[1..4]=music +O w[-2]=play w[-1]=me w[0]=some w[1]=good w[2]=music wl[-2]=play wl[-1]=me wl[0]=some wl[1]=good wl[2]=music pos[-2]=VB pos[-1]=PRP pos[0]=DT pos[1]=JJ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=m p1[0]=s p1[1]=g p1[2]=m p2[-2]=pl p2[-1]=me p2[0]=so p2[1]=go p2[2]=mu p3[-2]=pla p3[-1]= p3[0]=som p3[1]=goo p3[2]=mus p4[-2]=play p4[-1]= p4[0]=some p4[1]=good p4[2]=musi s1[-2]=y s1[-1]=e s1[0]=e s1[1]=d s1[2]=c s2[-2]=ay s2[-1]=me s2[0]=me s2[1]=od s2[2]=ic s3[-2]=lay s3[-1]= s3[0]=ome s3[1]=ood s3[2]=sic s4[-2]=play s4[-1]= s4[0]=some s4[1]=good s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|me w[-1]|w[0]=me|some w[0]|w[1]=some|good w[1]|w[2]=good|music pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[1..4]=good w[1..4]=music +sort w[-2]=me w[-1]=some w[0]=good w[1]=music wl[-2]=me wl[-1]=some wl[0]=good wl[1]=music pos[-2]=PRP pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=m p1[-1]=s p1[0]=g p1[1]=m p2[-2]=me p2[-1]=so p2[0]=go p2[1]=mu p3[-2]= p3[-1]=som p3[0]=goo p3[1]=mus p4[-2]= p4[-1]=some p4[0]=good p4[1]=musi s1[-2]=e s1[-1]=e s1[0]=d s1[1]=c s2[-2]=me s2[-1]=me s2[0]=od s2[1]=ic s3[-2]= s3[-1]=ome s3[0]=ood s3[1]=sic s4[-2]= s4[-1]=some s4[0]=good s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=me|some w[-1]|w[0]=some|good w[0]|w[1]=good|music pos[-2]|pos[-1]=PRP|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some w[1..4]=music +O w[-2]=some w[-1]=good w[0]=music wl[-2]=some wl[-1]=good wl[0]=music pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=g p1[0]=m p2[-2]=so p2[-1]=go p2[0]=mu p3[-2]=som p3[-1]=goo p3[0]=mus p4[-2]=some p4[-1]=good p4[0]=musi s1[-2]=e s1[-1]=d s1[0]=c s2[-2]=me s2[-1]=od s2[0]=ic s3[-2]=ome s3[-1]=ood s3[0]=sic s4[-2]=some s4[-1]=good s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|good w[-1]|w[0]=good|music pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some w[-4..-1]=good __EOS__ + +O w[0]=I w[1]=would w[2]=like wl[0]=i wl[1]=would wl[2]=like pos[0]=PRP pos[1]=MD pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLLL shape[2]=LLLL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=l p2[0]= p2[1]=wo p2[2]=li p3[0]= p3[1]=wou p3[2]=lik p4[0]= p4[1]=woul p4[2]=like s1[0]=I s1[1]=d s1[2]=e s2[0]= s2[1]=ld s2[2]=ke s3[0]= s3[1]=uld s3[2]=ike s4[0]= s4[1]=ould s4[2]=like 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|would w[1]|w[2]=would|like pos[0]|pos[1]=PRP|MD pos[1]|pos[2]=MD|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=would w[1..4]=like w[1..4]=to w[1..4]=hear __BOS__ +O w[-1]=I w[0]=would w[1]=like w[2]=to wl[-1]=i wl[0]=would wl[1]=like wl[2]=to pos[-1]=PRP pos[0]=MD pos[1]=VB pos[2]=TO chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLLL shape[1]=LLLL shape[2]=LL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=l p1[2]=t p2[-1]= p2[0]=wo p2[1]=li p2[2]=to p3[-1]= p3[0]=wou p3[1]=lik p3[2]= p4[-1]= p4[0]=woul p4[1]=like p4[2]= s1[-1]=I s1[0]=d s1[1]=e s1[2]=o s2[-1]= s2[0]=ld s2[1]=ke s2[2]=to s3[-1]= s3[0]=uld s3[1]=ike s3[2]= s4[-1]= s4[0]=ould s4[1]=like s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|would w[0]|w[1]=would|like w[1]|w[2]=like|to pos[-1]|pos[0]=PRP|MD pos[0]|pos[1]=MD|VB pos[1]|pos[2]=VB|TO chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=like w[1..4]=to w[1..4]=hear w[1..4]=some +O w[-2]=I w[-1]=would w[0]=like w[1]=to w[2]=hear wl[-2]=i wl[-1]=would wl[0]=like wl[1]=to wl[2]=hear pos[-2]=PRP pos[-1]=MD pos[0]=VB pos[1]=TO pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLLL shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=l p1[1]=t p1[2]=h p2[-2]= p2[-1]=wo p2[0]=li p2[1]=to p2[2]=he p3[-2]= p3[-1]=wou p3[0]=lik p3[1]= p3[2]=hea p4[-2]= p4[-1]=woul p4[0]=like p4[1]= p4[2]=hear s1[-2]=I s1[-1]=d s1[0]=e s1[1]=o s1[2]=r s2[-2]= s2[-1]=ld s2[0]=ke s2[1]=to s2[2]=ar s3[-2]= s3[-1]=uld s3[0]=ike s3[1]= s3[2]=ear s4[-2]= s4[-1]=ould s4[0]=like s4[1]= s4[2]=hear 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|would w[-1]|w[0]=would|like w[0]|w[1]=like|to w[1]|w[2]=to|hear pos[-2]|pos[-1]=PRP|MD pos[-1]|pos[0]=MD|VB pos[0]|pos[1]=VB|TO pos[1]|pos[2]=TO|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=would w[1..4]=to w[1..4]=hear w[1..4]=some w[1..4]=music +O w[-2]=would w[-1]=like w[0]=to w[1]=hear w[2]=some wl[-2]=would wl[-1]=like wl[0]=to wl[1]=hear wl[2]=some pos[-2]=MD pos[-1]=VB pos[0]=TO pos[1]=VB pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLL shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=l p1[0]=t p1[1]=h p1[2]=s p2[-2]=wo p2[-1]=li p2[0]=to p2[1]=he p2[2]=so p3[-2]=wou p3[-1]=lik p3[0]= p3[1]=hea p3[2]=som p4[-2]=woul p4[-1]=like p4[0]= p4[1]=hear p4[2]=some s1[-2]=d s1[-1]=e s1[0]=o s1[1]=r s1[2]=e s2[-2]=ld s2[-1]=ke s2[0]=to s2[1]=ar s2[2]=me s3[-2]=uld s3[-1]=ike s3[0]= s3[1]=ear s3[2]=ome s4[-2]=ould s4[-1]=like s4[0]= s4[1]=hear s4[2]=some 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=would|like w[-1]|w[0]=like|to w[0]|w[1]=to|hear w[1]|w[2]=hear|some pos[-2]|pos[-1]=MD|VB pos[-1]|pos[0]=VB|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=would w[-4..-1]=like w[1..4]=hear w[1..4]=some w[1..4]=music +O w[-2]=like w[-1]=to w[0]=hear w[1]=some w[2]=music wl[-2]=like wl[-1]=to wl[0]=hear wl[1]=some wl[2]=music pos[-2]=VB pos[-1]=TO pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=h p1[1]=s p1[2]=m p2[-2]=li p2[-1]=to p2[0]=he p2[1]=so p2[2]=mu p3[-2]=lik p3[-1]= p3[0]=hea p3[1]=som p3[2]=mus p4[-2]=like p4[-1]= p4[0]=hear p4[1]=some p4[2]=musi s1[-2]=e s1[-1]=o s1[0]=r s1[1]=e s1[2]=c s2[-2]=ke s2[-1]=to s2[0]=ar s2[1]=me s2[2]=ic s3[-2]=ike s3[-1]= s3[0]=ear s3[1]=ome s3[2]=sic s4[-2]=like s4[-1]= s4[0]=hear s4[1]=some s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=like|to w[-1]|w[0]=to|hear w[0]|w[1]=hear|some w[1]|w[2]=some|music pos[-2]|pos[-1]=VB|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=would w[-4..-1]=like w[-4..-1]=to w[1..4]=some w[1..4]=music +O w[-2]=to w[-1]=hear w[0]=some w[1]=music wl[-2]=to wl[-1]=hear wl[0]=some wl[1]=music pos[-2]=TO pos[-1]=VB pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=h p1[0]=s p1[1]=m p2[-2]=to p2[-1]=he p2[0]=so p2[1]=mu p3[-2]= p3[-1]=hea p3[0]=som p3[1]=mus p4[-2]= p4[-1]=hear p4[0]=some p4[1]=musi s1[-2]=o s1[-1]=r s1[0]=e s1[1]=c s2[-2]=to s2[-1]=ar s2[0]=me s2[1]=ic s3[-2]= s3[-1]=ear s3[0]=ome s3[1]=sic s4[-2]= s4[-1]=hear s4[0]=some s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|hear w[-1]|w[0]=hear|some w[0]|w[1]=some|music pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=would w[-4..-1]=like w[-4..-1]=to w[-4..-1]=hear w[1..4]=music +O w[-2]=hear w[-1]=some w[0]=music wl[-2]=hear wl[-1]=some wl[0]=music pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=h p1[-1]=s p1[0]=m p2[-2]=he p2[-1]=so p2[0]=mu p3[-2]=hea p3[-1]=som p3[0]=mus p4[-2]=hear p4[-1]=some p4[0]=musi s1[-2]=r s1[-1]=e s1[0]=c s2[-2]=ar s2[-1]=me s2[0]=ic s3[-2]=ear s3[-1]=ome s3[0]=sic s4[-2]=hear s4[-1]=some s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=hear|some w[-1]|w[0]=some|music pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=like w[-4..-1]=to w[-4..-1]=hear w[-4..-1]=some __EOS__ + +O w[0]=play w[1]=best w[2]=Metallica wl[0]=play wl[1]=best wl[2]=metallica pos[0]=VB pos[1]=JJS pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=b p1[2]=M p2[0]=pl p2[1]=be p2[2]=Me p3[0]=pla p3[1]=bes p3[2]=Met p4[0]=play p4[1]=best p4[2]=Meta s1[0]=y s1[1]=t s1[2]=a s2[0]=ay s2[1]=st s2[2]=ca s3[0]=lay s3[1]=est s3[2]=ica s4[0]=play s4[1]=best s4[2]=lica 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|best w[1]|w[2]=best|Metallica pos[0]|pos[1]=VB|JJS pos[1]|pos[2]=JJS|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=best w[1..4]=Metallica __BOS__ +sort w[-1]=play w[0]=best w[1]=Metallica wl[-1]=play wl[0]=best wl[1]=metallica pos[-1]=VB pos[0]=JJS pos[1]=NNP chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-1]=p p1[0]=b p1[1]=M p2[-1]=pl p2[0]=be p2[1]=Me p3[-1]=pla p3[0]=bes p3[1]=Met p4[-1]=play p4[0]=best p4[1]=Meta s1[-1]=y s1[0]=t s1[1]=a s2[-1]=ay s2[0]=st s2[1]=ca s3[-1]=lay s3[0]=est s3[1]=ica s4[-1]=play s4[0]=best s4[1]=lica 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|best w[0]|w[1]=best|Metallica pos[-1]|pos[0]=VB|JJS pos[0]|pos[1]=JJS|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=Metallica +artist w[-2]=play w[-1]=best w[0]=Metallica wl[-2]=play wl[-1]=best wl[0]=metallica pos[-2]=VB pos[-1]=JJS pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=b p1[0]=M p2[-2]=pl p2[-1]=be p2[0]=Me p3[-2]=pla p3[-1]=bes p3[0]=Met p4[-2]=play p4[-1]=best p4[0]=Meta s1[-2]=y s1[-1]=t s1[0]=a s2[-2]=ay s2[-1]=st s2[0]=ca s3[-2]=lay s3[-1]=est s3[0]=ica s4[-2]=play s4[-1]=best s4[0]=lica 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|best w[-1]|w[0]=best|Metallica pos[-2]|pos[-1]=VB|JJS pos[-1]|pos[0]=JJS|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=best __EOS__ + +O w[0]=play w[1]=song w[2]=Alive wl[0]=play wl[1]=song wl[2]=alive pos[0]=VBP pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=A p2[0]=pl p2[1]=so p2[2]=Al p3[0]=pla p3[1]=son p3[2]=Ali p4[0]=play p4[1]=song p4[2]=Aliv s1[0]=y s1[1]=g s1[2]=e s2[0]=ay s2[1]=ng s2[2]=ve s3[0]=lay s3[1]=ong s3[2]=ive s4[0]=play s4[1]=song s4[2]=live 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|Alive pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=Alive __BOS__ +O w[-1]=play w[0]=song w[1]=Alive wl[-1]=play wl[0]=song wl[1]=alive pos[-1]=VBP pos[0]=NN pos[1]=NNP chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-1]=p p1[0]=s p1[1]=A p2[-1]=pl p2[0]=so p2[1]=Al p3[-1]=pla p3[0]=son p3[1]=Ali p4[-1]=play p4[0]=song p4[1]=Aliv s1[-1]=y s1[0]=g s1[1]=e s2[-1]=ay s2[0]=ng s2[1]=ve s3[-1]=lay s3[0]=ong s3[1]=ive s4[-1]=play s4[0]=song s4[1]=live 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|song w[0]|w[1]=song|Alive pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=Alive +song w[-2]=play w[-1]=song w[0]=Alive wl[-2]=play wl[-1]=song wl[0]=alive pos[-2]=VBP pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=s p1[0]=A p2[-2]=pl p2[-1]=so p2[0]=Al p3[-2]=pla p3[-1]=son p3[0]=Ali p4[-2]=play p4[-1]=song p4[0]=Aliv s1[-2]=y s1[-1]=g s1[0]=e s2[-2]=ay s2[-1]=ng s2[0]=ve s3[-2]=lay s3[-1]=ong s3[0]=ive s4[-2]=play s4[-1]=song s4[0]=live 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Alive pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song __EOS__ + +O w[0]=play w[1]=It’s w[2]=Now wl[0]=play wl[1]=it’s wl[2]=now pos[0]=VB pos[1]=PRP pos[2]=PRP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=UL’L shape[2]=ULL shaped[0]=L shaped[1]=UL’L shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=I p1[2]=N p2[0]=pl p2[1]=It p2[2]=No p3[0]=pla p3[1]=It’ p3[2]=Now p4[0]=play p4[1]=It’s p4[2]= s1[0]=y s1[1]=s s1[2]=w s2[0]=ay s2[1]=’s s2[2]=ow s3[0]=lay s3[1]=t’s s3[2]=Now s4[0]=play s4[1]=It’s s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=yes cs[2]=no w[0]|w[1]=play|It’s w[1]|w[2]=It’s|Now pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|PRP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL’L shaped[1]|shaped[2]=UL’L|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=It’s w[1..4]=Now w[1..4]=or w[1..4]=Never __BOS__ +song w[-1]=play w[0]=It’s w[1]=Now w[2]=or wl[-1]=play wl[0]=it’s wl[1]=now wl[2]=or pos[-1]=VB pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=UL’L shape[1]=ULL shape[2]=LL shaped[-1]=L shaped[0]=UL’L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=I p1[1]=N p1[2]=o p2[-1]=pl p2[0]=It p2[1]=No p2[2]=or p3[-1]=pla p3[0]=It’ p3[1]=Now p3[2]= p4[-1]=play p4[0]=It’s p4[1]= p4[2]= s1[-1]=y s1[0]=s s1[1]=w s1[2]=r s2[-1]=ay s2[0]=’s s2[1]=ow s2[2]=or s3[-1]=lay s3[0]=t’s s3[1]=Now s3[2]= s4[-1]=play s4[0]=It’s s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-1]=no cs[0]=yes cs[1]=no cs[2]=no w[-1]|w[0]=play|It’s w[0]|w[1]=It’s|Now w[1]|w[2]=Now|or pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL’L shaped[0]|shaped[1]=UL’L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Now w[1..4]=or w[1..4]=Never +song w[-2]=play w[-1]=It’s w[0]=Now w[1]=or w[2]=Never wl[-2]=play wl[-1]=it’s wl[0]=now wl[1]=or wl[2]=never pos[-2]=VB pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=UL’L shape[0]=ULL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL’L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=I p1[0]=N p1[1]=o p1[2]=N p2[-2]=pl p2[-1]=It p2[0]=No p2[1]=or p2[2]=Ne p3[-2]=pla p3[-1]=It’ p3[0]=Now p3[1]= p3[2]=Nev p4[-2]=play p4[-1]=It’s p4[0]= p4[1]= p4[2]=Neve s1[-2]=y s1[-1]=s s1[0]=w s1[1]=r s1[2]=r s2[-2]=ay s2[-1]=’s s2[0]=ow s2[1]=or s2[2]=er s3[-2]=lay s3[-1]=t’s s3[0]=Now s3[1]= s3[2]=ver s4[-2]=play s4[-1]=It’s s4[0]= s4[1]= s4[2]=ever 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|It’s w[-1]|w[0]=It’s|Now w[0]|w[1]=Now|or w[1]|w[2]=or|Never pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL’L shaped[-1]|shaped[0]=UL’L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=It’s w[1..4]=or w[1..4]=Never +song w[-2]=It’s w[-1]=Now w[0]=or w[1]=Never wl[-2]=it’s wl[-1]=now wl[0]=or wl[1]=never pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=PRP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=UL’L shape[-1]=ULL shape[0]=LL shape[1]=ULLLL shaped[-2]=UL’L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=I p1[-1]=N p1[0]=o p1[1]=N p2[-2]=It p2[-1]=No p2[0]=or p2[1]=Ne p3[-2]=It’ p3[-1]=Now p3[0]= p3[1]=Nev p4[-2]=It’s p4[-1]= p4[0]= p4[1]=Neve s1[-2]=s s1[-1]=w s1[0]=r s1[1]=r s2[-2]=’s s2[-1]=ow s2[0]=or s2[1]=er s3[-2]=t’s s3[-1]=Now s3[0]= s3[1]=ver s4[-2]=It’s s4[-1]= s4[0]= s4[1]=ever 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=It’s|Now w[-1]|w[0]=Now|or w[0]|w[1]=or|Never pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL’L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=It’s w[-4..-1]=Now w[1..4]=Never +song w[-2]=Now w[-1]=or w[0]=Never wl[-2]=now wl[-1]=or wl[0]=never pos[-2]=PRP pos[-1]=PRP pos[0]=PRP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=LL shape[0]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=N p1[-1]=o p1[0]=N p2[-2]=No p2[-1]=or p2[0]=Ne p3[-2]=Now p3[-1]= p3[0]=Nev p4[-2]= p4[-1]= p4[0]=Neve s1[-2]=w s1[-1]=r s1[0]=r s2[-2]=ow s2[-1]=or s2[0]=er s3[-2]=Now s3[-1]= s3[0]=ver s4[-2]= s4[-1]= s4[0]=ever 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Now|or w[-1]|w[0]=or|Never pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=It’s w[-4..-1]=Now w[-4..-1]=or __EOS__ + +O w[0]=play w[1]=Faded w[2]=by wl[0]=play wl[1]=faded wl[2]=by pos[0]=VB pos[1]=VBN pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=F p1[2]=b p2[0]=pl p2[1]=Fa p2[2]=by p3[0]=pla p3[1]=Fad p3[2]= p4[0]=play p4[1]=Fade p4[2]= s1[0]=y s1[1]=d s1[2]=y s2[0]=ay s2[1]=ed s2[2]=by s3[0]=lay s3[1]=ded s3[2]= s4[0]=play s4[1]=aded s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Faded w[1]|w[2]=Faded|by pos[0]|pos[1]=VB|VBN pos[1]|pos[2]=VBN|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Faded w[1..4]=by w[1..4]=ZHU w[1..4]=song __BOS__ +song w[-1]=play w[0]=Faded w[1]=by w[2]=ZHU wl[-1]=play wl[0]=faded wl[1]=by wl[2]=zhu pos[-1]=VB pos[0]=VBN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLL shape[1]=LL shape[2]=UUU shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=U type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllUpper p1[-1]=p p1[0]=F p1[1]=b p1[2]=Z p2[-1]=pl p2[0]=Fa p2[1]=by p2[2]=ZH p3[-1]=pla p3[0]=Fad p3[1]= p3[2]=ZHU p4[-1]=play p4[0]=Fade p4[1]= p4[2]= s1[-1]=y s1[0]=d s1[1]=y s1[2]=U s2[-1]=ay s2[0]=ed s2[1]=by s2[2]=HU s3[-1]=lay s3[0]=ded s3[1]= s3[2]=ZHU s4[-1]=play s4[0]=aded s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Faded w[0]|w[1]=Faded|by w[1]|w[2]=by|ZHU pos[-1]|pos[0]=VB|VBN pos[0]|pos[1]=VBN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|U type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllUpper w[-4..-1]=play w[1..4]=by w[1..4]=ZHU w[1..4]=song w[1..4]=on +O w[-2]=play w[-1]=Faded w[0]=by w[1]=ZHU w[2]=song wl[-2]=play wl[-1]=faded wl[0]=by wl[1]=zhu wl[2]=song pos[-2]=VB pos[-1]=VBN pos[0]=IN pos[1]=NNP pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULLLL shape[0]=LL shape[1]=UUU shape[2]=LLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=U shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllUpper type[2]=AllLetter p1[-2]=p p1[-1]=F p1[0]=b p1[1]=Z p1[2]=s p2[-2]=pl p2[-1]=Fa p2[0]=by p2[1]=ZH p2[2]=so p3[-2]=pla p3[-1]=Fad p3[0]= p3[1]=ZHU p3[2]=son p4[-2]=play p4[-1]=Fade p4[0]= p4[1]= p4[2]=song s1[-2]=y s1[-1]=d s1[0]=y s1[1]=U s1[2]=g s2[-2]=ay s2[-1]=ed s2[0]=by s2[1]=HU s2[2]=ng s3[-2]=lay s3[-1]=ded s3[0]= s3[1]=ZHU s3[2]=ong s4[-2]=play s4[-1]=aded s4[0]= s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=yes au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Faded w[-1]|w[0]=Faded|by w[0]|w[1]=by|ZHU w[1]|w[2]=ZHU|song pos[-2]|pos[-1]=VB|VBN pos[-1]|pos[0]=VBN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|AllLetter w[-4..-1]=play w[-4..-1]=Faded w[1..4]=ZHU w[1..4]=song w[1..4]=on w[1..4]=Spotify +artist w[-2]=Faded w[-1]=by w[0]=ZHU w[1]=song w[2]=on wl[-2]=faded wl[-1]=by wl[0]=zhu wl[1]=song wl[2]=on pos[-2]=VBN pos[-1]=IN pos[0]=NNP pos[1]=NN pos[2]=IN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-2]=ULLLL shape[-1]=LL shape[0]=UUU shape[1]=LLLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=U shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=F p1[-1]=b p1[0]=Z p1[1]=s p1[2]=o p2[-2]=Fa p2[-1]=by p2[0]=ZH p2[1]=so p2[2]=on p3[-2]=Fad p3[-1]= p3[0]=ZHU p3[1]=son p3[2]= p4[-2]=Fade p4[-1]= p4[0]= p4[1]=song p4[2]= s1[-2]=d s1[-1]=y s1[0]=U s1[1]=g s1[2]=n s2[-2]=ed s2[-1]=by s2[0]=HU s2[1]=ng s2[2]=on s3[-2]=ded s3[-1]= s3[0]=ZHU s3[1]=ong s3[2]= s4[-2]=aded s4[-1]= s4[0]= s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=yes au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Faded|by w[-1]|w[0]=by|ZHU w[0]|w[1]=ZHU|song w[1]|w[2]=song|on pos[-2]|pos[-1]=VBN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Faded w[-4..-1]=by w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=by w[-1]=ZHU w[0]=song w[1]=on w[2]=Spotify wl[-2]=by wl[-1]=zhu wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=IN pos[-1]=NNP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=UUU shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=b p1[-1]=Z p1[0]=s p1[1]=o p1[2]=S p2[-2]=by p2[-1]=ZH p2[0]=so p2[1]=on p2[2]=Sp p3[-2]= p3[-1]=ZHU p3[0]=son p3[1]= p3[2]=Spo p4[-2]= p4[-1]= p4[0]=song p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=U s1[0]=g s1[1]=n s1[2]=y s2[-2]=by s2[-1]=HU s2[0]=ng s2[1]=on s2[2]=fy s3[-2]= s3[-1]=ZHU s3[0]=ong s3[1]= s3[2]=ify s4[-2]= s4[-1]= s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|ZHU w[-1]|w[0]=ZHU|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Faded w[-4..-1]=by w[-4..-1]=ZHU w[1..4]=on w[1..4]=Spotify +O w[-2]=ZHU w[-1]=song w[0]=on w[1]=Spotify wl[-2]=zhu wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=UUU shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=Z p1[-1]=s p1[0]=o p1[1]=S p2[-2]=ZH p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=ZHU p3[-1]=son p3[0]= p3[1]=Spo p4[-2]= p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=U s1[-1]=g s1[0]=n s1[1]=y s2[-2]=HU s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]=ZHU s3[-1]=ong s3[0]= s3[1]=ify s4[-2]= s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=yes au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=ZHU|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=Faded w[-4..-1]=by w[-4..-1]=ZHU w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=ZHU w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=the w[2]=song wl[0]=play wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=the p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=he s2[2]=ng s3[0]=lay s3[1]=the s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song w[1..4]=Chasing w[1..4]=the __BOS__ +O w[-1]=play w[0]=the w[1]=song w[2]=Chasing wl[-1]=play wl[0]=the wl[1]=song wl[2]=chasing pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=VBG chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=s p1[2]=C p2[-1]=pl p2[0]=th p2[1]=so p2[2]=Ch p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Cha p4[-1]=play p4[0]= p4[1]=song p4[2]=Chas s1[-1]=y s1[0]=e s1[1]=g s1[2]=g s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=ng s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ing s4[-1]=play s4[0]= s4[1]=song s4[2]=sing 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Chasing pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|VBG chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Chasing w[1..4]=the w[1..4]=Dragon +O w[-2]=play w[-1]=the w[0]=song w[1]=Chasing w[2]=the wl[-2]=play wl[-1]=the wl[0]=song wl[1]=chasing wl[2]=the pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=VBG pos[2]=VBG chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p1[1]=C p1[2]=t p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=Ch p2[2]=th p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Cha p3[2]=the p4[-2]=play p4[-1]= p4[0]=song p4[1]=Chas p4[2]= s1[-2]=y s1[-1]=e s1[0]=g s1[1]=g s1[2]=e s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=ng s2[2]=he s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ing s3[2]=the s4[-2]=play s4[-1]= s4[0]=song s4[1]=sing s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Chasing w[1]|w[2]=Chasing|the pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|VBG pos[1]|pos[2]=VBG|VBG chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=Chasing w[1..4]=the w[1..4]=Dragon +song w[-2]=the w[-1]=song w[0]=Chasing w[1]=the w[2]=Dragon wl[-2]=the wl[-1]=song wl[0]=chasing wl[1]=the wl[2]=dragon pos[-2]=DT pos[-1]=NN pos[0]=VBG pos[1]=VBG pos[2]=VBG chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=LLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=s p1[0]=C p1[1]=t p1[2]=D p2[-2]=th p2[-1]=so p2[0]=Ch p2[1]=th p2[2]=Dr p3[-2]=the p3[-1]=son p3[0]=Cha p3[1]=the p3[2]=Dra p4[-2]= p4[-1]=song p4[0]=Chas p4[1]= p4[2]=Drag s1[-2]=e s1[-1]=g s1[0]=g s1[1]=e s1[2]=n s2[-2]=he s2[-1]=ng s2[0]=ng s2[1]=he s2[2]=on s3[-2]=the s3[-1]=ong s3[0]=ing s3[1]=the s3[2]=gon s4[-2]= s4[-1]=song s4[0]=sing s4[1]= s4[2]=agon 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Chasing w[0]|w[1]=Chasing|the w[1]|w[2]=the|Dragon pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|VBG pos[0]|pos[1]=VBG|VBG pos[1]|pos[2]=VBG|VBG chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[1..4]=the w[1..4]=Dragon +song w[-2]=song w[-1]=Chasing w[0]=the w[1]=Dragon wl[-2]=song wl[-1]=chasing wl[0]=the wl[1]=dragon pos[-2]=NN pos[-1]=VBG pos[0]=VBG pos[1]=VBG chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=LLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=s p1[-1]=C p1[0]=t p1[1]=D p2[-2]=so p2[-1]=Ch p2[0]=th p2[1]=Dr p3[-2]=son p3[-1]=Cha p3[0]=the p3[1]=Dra p4[-2]=song p4[-1]=Chas p4[0]= p4[1]=Drag s1[-2]=g s1[-1]=g s1[0]=e s1[1]=n s2[-2]=ng s2[-1]=ng s2[0]=he s2[1]=on s3[-2]=ong s3[-1]=ing s3[0]=the s3[1]=gon s4[-2]=song s4[-1]=sing s4[0]= s4[1]=agon 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|Chasing w[-1]|w[0]=Chasing|the w[0]|w[1]=the|Dragon pos[-2]|pos[-1]=NN|VBG pos[-1]|pos[0]=VBG|VBG pos[0]|pos[1]=VBG|VBG chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Chasing w[1..4]=Dragon +song w[-2]=Chasing w[-1]=the w[0]=Dragon wl[-2]=chasing wl[-1]=the wl[0]=dragon pos[-2]=VBG pos[-1]=VBG pos[0]=VBG chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLLL shape[-1]=LLL shape[0]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=C p1[-1]=t p1[0]=D p2[-2]=Ch p2[-1]=th p2[0]=Dr p3[-2]=Cha p3[-1]=the p3[0]=Dra p4[-2]=Chas p4[-1]= p4[0]=Drag s1[-2]=g s1[-1]=e s1[0]=n s2[-2]=ng s2[-1]=he s2[0]=on s3[-2]=ing s3[-1]=the s3[0]=gon s4[-2]=sing s4[-1]= s4[0]=agon 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Chasing|the w[-1]|w[0]=the|Dragon pos[-2]|pos[-1]=VBG|VBG pos[-1]|pos[0]=VBG|VBG chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Chasing w[-4..-1]=the __EOS__ + +O w[0]=play w[1]=album w[2]=Graceland wl[0]=play wl[1]=album wl[2]=graceland pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=G p2[0]=pl p2[1]=al p2[2]=Gr p3[0]=pla p3[1]=alb p3[2]=Gra p4[0]=play p4[1]=albu p4[2]=Grac s1[0]=y s1[1]=m s1[2]=d s2[0]=ay s2[1]=um s2[2]=nd s3[0]=lay s3[1]=bum s3[2]=and s4[0]=play s4[1]=lbum s4[2]=land 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Graceland pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Graceland w[1..4]=by w[1..4]=Paul __BOS__ +O w[-1]=play w[0]=album w[1]=Graceland w[2]=by wl[-1]=play wl[0]=album wl[1]=graceland wl[2]=by pos[-1]=VB pos[0]=NN pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=G p1[2]=b p2[-1]=pl p2[0]=al p2[1]=Gr p2[2]=by p3[-1]=pla p3[0]=alb p3[1]=Gra p3[2]= p4[-1]=play p4[0]=albu p4[1]=Grac p4[2]= s1[-1]=y s1[0]=m s1[1]=d s1[2]=y s2[-1]=ay s2[0]=um s2[1]=nd s2[2]=by s3[-1]=lay s3[0]=bum s3[1]=and s3[2]= s4[-1]=play s4[0]=lbum s4[1]=land s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Graceland w[1]|w[2]=Graceland|by pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Graceland w[1..4]=by w[1..4]=Paul w[1..4]=Simon +album w[-2]=play w[-1]=album w[0]=Graceland w[1]=by w[2]=Paul wl[-2]=play wl[-1]=album wl[0]=graceland wl[1]=by wl[2]=paul pos[-2]=VB pos[-1]=NN pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLLLLL shape[1]=LL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=G p1[1]=b p1[2]=P p2[-2]=pl p2[-1]=al p2[0]=Gr p2[1]=by p2[2]=Pa p3[-2]=pla p3[-1]=alb p3[0]=Gra p3[1]= p3[2]=Pau p4[-2]=play p4[-1]=albu p4[0]=Grac p4[1]= p4[2]=Paul s1[-2]=y s1[-1]=m s1[0]=d s1[1]=y s1[2]=l s2[-2]=ay s2[-1]=um s2[0]=nd s2[1]=by s2[2]=ul s3[-2]=lay s3[-1]=bum s3[0]=and s3[1]= s3[2]=aul s4[-2]=play s4[-1]=lbum s4[0]=land s4[1]= s4[2]=Paul 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Graceland w[0]|w[1]=Graceland|by w[1]|w[2]=by|Paul pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=by w[1..4]=Paul w[1..4]=Simon +O w[-2]=album w[-1]=Graceland w[0]=by w[1]=Paul w[2]=Simon wl[-2]=album wl[-1]=graceland wl[0]=by wl[1]=paul wl[2]=simon pos[-2]=NN pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLLL shape[-1]=ULLLLLLLL shape[0]=LL shape[1]=ULLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=a p1[-1]=G p1[0]=b p1[1]=P p1[2]=S p2[-2]=al p2[-1]=Gr p2[0]=by p2[1]=Pa p2[2]=Si p3[-2]=alb p3[-1]=Gra p3[0]= p3[1]=Pau p3[2]=Sim p4[-2]=albu p4[-1]=Grac p4[0]= p4[1]=Paul p4[2]=Simo s1[-2]=m s1[-1]=d s1[0]=y s1[1]=l s1[2]=n s2[-2]=um s2[-1]=nd s2[0]=by s2[1]=ul s2[2]=on s3[-2]=bum s3[-1]=and s3[0]= s3[1]=aul s3[2]=mon s4[-2]=lbum s4[-1]=land s4[0]= s4[1]=Paul s4[2]=imon 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Graceland w[-1]|w[0]=Graceland|by w[0]|w[1]=by|Paul w[1]|w[2]=Paul|Simon pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Graceland w[1..4]=Paul w[1..4]=Simon +artist w[-2]=Graceland w[-1]=by w[0]=Paul w[1]=Simon wl[-2]=graceland wl[-1]=by wl[0]=paul wl[1]=simon pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLLLL shape[-1]=LL shape[0]=ULLL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=G p1[-1]=b p1[0]=P p1[1]=S p2[-2]=Gr p2[-1]=by p2[0]=Pa p2[1]=Si p3[-2]=Gra p3[-1]= p3[0]=Pau p3[1]=Sim p4[-2]=Grac p4[-1]= p4[0]=Paul p4[1]=Simo s1[-2]=d s1[-1]=y s1[0]=l s1[1]=n s2[-2]=nd s2[-1]=by s2[0]=ul s2[1]=on s3[-2]=and s3[-1]= s3[0]=aul s3[1]=mon s4[-2]=land s4[-1]= s4[0]=Paul s4[1]=imon 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Graceland|by w[-1]|w[0]=by|Paul w[0]|w[1]=Paul|Simon pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Graceland w[-4..-1]=by w[1..4]=Simon +artist w[-2]=by w[-1]=Paul w[0]=Simon wl[-2]=by wl[-1]=paul wl[0]=simon pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=P p1[0]=S p2[-2]=by p2[-1]=Pa p2[0]=Si p3[-2]= p3[-1]=Pau p3[0]=Sim p4[-2]= p4[-1]=Paul p4[0]=Simo s1[-2]=y s1[-1]=l s1[0]=n s2[-2]=by s2[-1]=ul s2[0]=on s3[-2]= s3[-1]=aul s3[0]=mon s4[-2]= s4[-1]=Paul s4[0]=imon 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Paul w[-1]|w[0]=Paul|Simon pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=album w[-4..-1]=Graceland w[-4..-1]=by w[-4..-1]=Paul __EOS__ + +O w[0]=let w[1]=me w[2]=hear wl[0]=let wl[1]=me wl[2]=hear pos[0]=VB pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=l p1[1]=m p1[2]=h p2[0]=le p2[1]=me p2[2]=he p3[0]=let p3[1]= p3[2]=hea p4[0]= p4[1]= p4[2]=hear s1[0]=t s1[1]=e s1[2]=r s2[0]=et s2[1]=me s2[2]=ar s3[0]=let s3[1]= s3[2]=ear s4[0]= s4[1]= s4[2]=hear 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=let|me w[1]|w[2]=me|hear pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=me w[1..4]=hear w[1..4]=something w[1..4]=from __BOS__ +O w[-1]=let w[0]=me w[1]=hear w[2]=something wl[-1]=let wl[0]=me wl[1]=hear wl[2]=something pos[-1]=VB pos[0]=PRP pos[1]=VB pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LLLL shape[2]=LLLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=l p1[0]=m p1[1]=h p1[2]=s p2[-1]=le p2[0]=me p2[1]=he p2[2]=so p3[-1]=let p3[0]= p3[1]=hea p3[2]=som p4[-1]= p4[0]= p4[1]=hear p4[2]=some s1[-1]=t s1[0]=e s1[1]=r s1[2]=g s2[-1]=et s2[0]=me s2[1]=ar s2[2]=ng s3[-1]=let s3[0]= s3[1]=ear s3[2]=ing s4[-1]= s4[0]= s4[1]=hear s4[2]=hing 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=let|me w[0]|w[1]=me|hear w[1]|w[2]=hear|something pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=let w[1..4]=hear w[1..4]=something w[1..4]=from w[1..4]=George +O w[-2]=let w[-1]=me w[0]=hear w[1]=something w[2]=from wl[-2]=let wl[-1]=me wl[0]=hear wl[1]=something wl[2]=from pos[-2]=VB pos[-1]=PRP pos[0]=VB pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLLLLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=m p1[0]=h p1[1]=s p1[2]=f p2[-2]=le p2[-1]=me p2[0]=he p2[1]=so p2[2]=fr p3[-2]=let p3[-1]= p3[0]=hea p3[1]=som p3[2]=fro p4[-2]= p4[-1]= p4[0]=hear p4[1]=some p4[2]=from s1[-2]=t s1[-1]=e s1[0]=r s1[1]=g s1[2]=m s2[-2]=et s2[-1]=me s2[0]=ar s2[1]=ng s2[2]=om s3[-2]=let s3[-1]= s3[0]=ear s3[1]=ing s3[2]=rom s4[-2]= s4[-1]= s4[0]=hear s4[1]=hing s4[2]=from 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=let|me w[-1]|w[0]=me|hear w[0]|w[1]=hear|something w[1]|w[2]=something|from pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=let w[-4..-1]=me w[1..4]=something w[1..4]=from w[1..4]=George w[1..4]=Strait +O w[-2]=me w[-1]=hear w[0]=something w[1]=from w[2]=George wl[-2]=me wl[-1]=hear wl[0]=something wl[1]=from wl[2]=george pos[-2]=PRP pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLLLLLL shape[1]=LLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=m p1[-1]=h p1[0]=s p1[1]=f p1[2]=G p2[-2]=me p2[-1]=he p2[0]=so p2[1]=fr p2[2]=Ge p3[-2]= p3[-1]=hea p3[0]=som p3[1]=fro p3[2]=Geo p4[-2]= p4[-1]=hear p4[0]=some p4[1]=from p4[2]=Geor s1[-2]=e s1[-1]=r s1[0]=g s1[1]=m s1[2]=e s2[-2]=me s2[-1]=ar s2[0]=ng s2[1]=om s2[2]=ge s3[-2]= s3[-1]=ear s3[0]=ing s3[1]=rom s3[2]=rge s4[-2]= s4[-1]=hear s4[0]=hing s4[1]=from s4[2]=orge 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=me|hear w[-1]|w[0]=hear|something w[0]|w[1]=something|from w[1]|w[2]=from|George pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=let w[-4..-1]=me w[-4..-1]=hear w[1..4]=from w[1..4]=George w[1..4]=Strait +O w[-2]=hear w[-1]=something w[0]=from w[1]=George w[2]=Strait wl[-2]=hear wl[-1]=something wl[0]=from wl[1]=george wl[2]=strait pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLLLLLL shape[0]=LLLL shape[1]=ULLLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=h p1[-1]=s p1[0]=f p1[1]=G p1[2]=S p2[-2]=he p2[-1]=so p2[0]=fr p2[1]=Ge p2[2]=St p3[-2]=hea p3[-1]=som p3[0]=fro p3[1]=Geo p3[2]=Str p4[-2]=hear p4[-1]=some p4[0]=from p4[1]=Geor p4[2]=Stra s1[-2]=r s1[-1]=g s1[0]=m s1[1]=e s1[2]=t s2[-2]=ar s2[-1]=ng s2[0]=om s2[1]=ge s2[2]=it s3[-2]=ear s3[-1]=ing s3[0]=rom s3[1]=rge s3[2]=ait s4[-2]=hear s4[-1]=hing s4[0]=from s4[1]=orge s4[2]=rait 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=hear|something w[-1]|w[0]=something|from w[0]|w[1]=from|George w[1]|w[2]=George|Strait pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=let w[-4..-1]=me w[-4..-1]=hear w[-4..-1]=something w[1..4]=George w[1..4]=Strait +artist w[-2]=something w[-1]=from w[0]=George w[1]=Strait wl[-2]=something wl[-1]=from wl[0]=george wl[1]=strait pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLLLLL shape[-1]=LLLL shape[0]=ULLLLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=f p1[0]=G p1[1]=S p2[-2]=so p2[-1]=fr p2[0]=Ge p2[1]=St p3[-2]=som p3[-1]=fro p3[0]=Geo p3[1]=Str p4[-2]=some p4[-1]=from p4[0]=Geor p4[1]=Stra s1[-2]=g s1[-1]=m s1[0]=e s1[1]=t s2[-2]=ng s2[-1]=om s2[0]=ge s2[1]=it s3[-2]=ing s3[-1]=rom s3[0]=rge s3[1]=ait s4[-2]=hing s4[-1]=from s4[0]=orge s4[1]=rait 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=something|from w[-1]|w[0]=from|George w[0]|w[1]=George|Strait pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=me w[-4..-1]=hear w[-4..-1]=something w[-4..-1]=from w[1..4]=Strait +artist w[-2]=from w[-1]=George w[0]=Strait wl[-2]=from wl[-1]=george wl[0]=strait pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=f p1[-1]=G p1[0]=S p2[-2]=fr p2[-1]=Ge p2[0]=St p3[-2]=fro p3[-1]=Geo p3[0]=Str p4[-2]=from p4[-1]=Geor p4[0]=Stra s1[-2]=m s1[-1]=e s1[0]=t s2[-2]=om s2[-1]=ge s2[0]=it s3[-2]=rom s3[-1]=rge s3[0]=ait s4[-2]=from s4[-1]=orge s4[0]=rait 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=from|George w[-1]|w[0]=George|Strait pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=hear w[-4..-1]=something w[-4..-1]=from w[-4..-1]=George __EOS__ + +artist w[0]=Bob w[1]=Marley w[2]=play wl[0]=bob wl[1]=marley wl[2]=play pos[0]=NNP pos[1]=NNP pos[2]=VB chk[0]=I chk[1]=I chk[2]=O shape[0]=ULL shape[1]=ULLLLL shape[2]=LLLL shaped[0]=UL shaped[1]=UL shaped[2]=L type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[0]=B p1[1]=M p1[2]=p p2[0]=Bo p2[1]=Ma p2[2]=pl p3[0]=Bob p3[1]=Mar p3[2]=pla p4[0]= p4[1]=Marl p4[2]=play s1[0]=b s1[1]=y s1[2]=y s2[0]=ob s2[1]=ey s2[2]=ay s3[0]=Bob s3[1]=ley s3[2]=lay s4[0]= s4[1]=rley s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=Bob|Marley w[1]|w[2]=Marley|play pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|VB chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Marley w[1..4]=play w[1..4]=the w[1..4]=song __BOS__ +artist w[-1]=Bob w[0]=Marley w[1]=play w[2]=the wl[-1]=bob wl[0]=marley wl[1]=play wl[2]=the pos[-1]=NNP pos[0]=NNP pos[1]=VB pos[2]=DT chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-1]=ULL shape[0]=ULLLLL shape[1]=LLLL shape[2]=LLL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=B p1[0]=M p1[1]=p p1[2]=t p2[-1]=Bo p2[0]=Ma p2[1]=pl p2[2]=th p3[-1]=Bob p3[0]=Mar p3[1]=pla p3[2]=the p4[-1]= p4[0]=Marl p4[1]=play p4[2]= s1[-1]=b s1[0]=y s1[1]=y s1[2]=e s2[-1]=ob s2[0]=ey s2[1]=ay s2[2]=he s3[-1]=Bob s3[0]=ley s3[1]=lay s3[2]=the s4[-1]= s4[0]=rley s4[1]=play s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=Bob|Marley w[0]|w[1]=Marley|play w[1]|w[2]=play|the pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=Bob w[1..4]=play w[1..4]=the w[1..4]=song w[1..4]=please +O w[-2]=Bob w[-1]=Marley w[0]=play w[1]=the w[2]=song wl[-2]=bob wl[-1]=marley wl[0]=play wl[1]=the wl[2]=song pos[-2]=NNP pos[-1]=NNP pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=O shape[-2]=ULL shape[-1]=ULLLLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=B p1[-1]=M p1[0]=p p1[1]=t p1[2]=s p2[-2]=Bo p2[-1]=Ma p2[0]=pl p2[1]=th p2[2]=so p3[-2]=Bob p3[-1]=Mar p3[0]=pla p3[1]=the p3[2]=son p4[-2]= p4[-1]=Marl p4[0]=play p4[1]= p4[2]=song s1[-2]=b s1[-1]=y s1[0]=y s1[1]=e s1[2]=g s2[-2]=ob s2[-1]=ey s2[0]=ay s2[1]=he s2[2]=ng s3[-2]=Bob s3[-1]=ley s3[0]=lay s3[1]=the s3[2]=ong s4[-2]= s4[-1]=rley s4[0]=play s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Bob|Marley w[-1]|w[0]=Marley|play w[0]|w[1]=play|the w[1]|w[2]=the|song pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=Bob w[-4..-1]=Marley w[1..4]=the w[1..4]=song w[1..4]=please +O w[-2]=Marley w[-1]=play w[0]=the w[1]=song w[2]=please wl[-2]=marley wl[-1]=play wl[0]=the wl[1]=song wl[2]=please pos[-2]=NNP pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NN chk[-2]=I chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=ULLLLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=M p1[-1]=p p1[0]=t p1[1]=s p1[2]=p p2[-2]=Ma p2[-1]=pl p2[0]=th p2[1]=so p2[2]=pl p3[-2]=Mar p3[-1]=pla p3[0]=the p3[1]=son p3[2]=ple p4[-2]=Marl p4[-1]=play p4[0]= p4[1]=song p4[2]=plea s1[-2]=y s1[-1]=y s1[0]=e s1[1]=g s1[2]=e s2[-2]=ey s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=se s3[-2]=ley s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ase s4[-2]=rley s4[-1]=play s4[0]= s4[1]=song s4[2]=ease 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Marley|play w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|please pos[-2]|pos[-1]=NNP|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=Bob w[-4..-1]=Marley w[-4..-1]=play w[1..4]=song w[1..4]=please +O w[-2]=play w[-1]=the w[0]=song w[1]=please wl[-2]=play wl[-1]=the wl[0]=song wl[1]=please pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p1[1]=p p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=pl p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=ple p4[-2]=play p4[-1]= p4[0]=song p4[1]=plea s1[-2]=y s1[-1]=e s1[0]=g s1[1]=e s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=se s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ase s4[-2]=play s4[-1]= s4[0]=song s4[1]=ease 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|please pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=Bob w[-4..-1]=Marley w[-4..-1]=play w[-4..-1]=the w[1..4]=please +O w[-2]=the w[-1]=song w[0]=please wl[-2]=the wl[-1]=song wl[0]=please pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=s p1[0]=p p2[-2]=th p2[-1]=so p2[0]=pl p3[-2]=the p3[-1]=son p3[0]=ple p4[-2]= p4[-1]=song p4[0]=plea s1[-2]=e s1[-1]=g s1[0]=e s2[-2]=he s2[-1]=ng s2[0]=se s3[-2]=the s3[-1]=ong s3[0]=ase s4[-2]= s4[-1]=song s4[0]=ease 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|please pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=Marley w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song __EOS__ + +O w[0]=play w[1]=album w[2]=Power wl[0]=play wl[1]=album wl[2]=power pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=P p2[0]=pl p2[1]=al p2[2]=Po p3[0]=pla p3[1]=alb p3[2]=Pow p4[0]=play p4[1]=albu p4[2]=Powe s1[0]=y s1[1]=m s1[2]=r s2[0]=ay s2[1]=um s2[2]=er s3[0]=lay s3[1]=bum s3[2]=wer s4[0]=play s4[1]=lbum s4[2]=ower 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Power pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Power w[1..4]=Corruption w[1..4]=Lies __BOS__ +O w[-1]=play w[0]=album w[1]=Power w[2]=Corruption wl[-1]=play wl[0]=album wl[1]=power wl[2]=corruption pos[-1]=VB pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLL shape[2]=ULLLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=a p1[1]=P p1[2]=C p2[-1]=pl p2[0]=al p2[1]=Po p2[2]=Co p3[-1]=pla p3[0]=alb p3[1]=Pow p3[2]=Cor p4[-1]=play p4[0]=albu p4[1]=Powe p4[2]=Corr s1[-1]=y s1[0]=m s1[1]=r s1[2]=n s2[-1]=ay s2[0]=um s2[1]=er s2[2]=on s3[-1]=lay s3[0]=bum s3[1]=wer s3[2]=ion s4[-1]=play s4[0]=lbum s4[1]=ower s4[2]=tion 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Power w[1]|w[2]=Power|Corruption pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Power w[1..4]=Corruption w[1..4]=Lies +album w[-2]=play w[-1]=album w[0]=Power w[1]=Corruption w[2]=Lies wl[-2]=play wl[-1]=album wl[0]=power wl[1]=corruption wl[2]=lies pos[-2]=VB pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLL shape[1]=ULLLLLLLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=P p1[1]=C p1[2]=L p2[-2]=pl p2[-1]=al p2[0]=Po p2[1]=Co p2[2]=Li p3[-2]=pla p3[-1]=alb p3[0]=Pow p3[1]=Cor p3[2]=Lie p4[-2]=play p4[-1]=albu p4[0]=Powe p4[1]=Corr p4[2]=Lies s1[-2]=y s1[-1]=m s1[0]=r s1[1]=n s1[2]=s s2[-2]=ay s2[-1]=um s2[0]=er s2[1]=on s2[2]=es s3[-2]=lay s3[-1]=bum s3[0]=wer s3[1]=ion s3[2]=ies s4[-2]=play s4[-1]=lbum s4[0]=ower s4[1]=tion s4[2]=Lies 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Power w[0]|w[1]=Power|Corruption w[1]|w[2]=Corruption|Lies pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=Corruption w[1..4]=Lies +album w[-2]=album w[-1]=Power w[0]=Corruption w[1]=Lies wl[-2]=album wl[-1]=power wl[0]=corruption wl[1]=lies pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLLL shape[-1]=ULLLL shape[0]=ULLLLLLLLL shape[1]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=a p1[-1]=P p1[0]=C p1[1]=L p2[-2]=al p2[-1]=Po p2[0]=Co p2[1]=Li p3[-2]=alb p3[-1]=Pow p3[0]=Cor p3[1]=Lie p4[-2]=albu p4[-1]=Powe p4[0]=Corr p4[1]=Lies s1[-2]=m s1[-1]=r s1[0]=n s1[1]=s s2[-2]=um s2[-1]=er s2[0]=on s2[1]=es s3[-2]=bum s3[-1]=wer s3[0]=ion s3[1]=ies s4[-2]=lbum s4[-1]=ower s4[0]=tion s4[1]=Lies 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=album|Power w[-1]|w[0]=Power|Corruption w[0]|w[1]=Corruption|Lies pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Power w[1..4]=Lies +album w[-2]=Power w[-1]=Corruption w[0]=Lies wl[-2]=power wl[-1]=corruption wl[0]=lies pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLL shape[-1]=ULLLLLLLLL shape[0]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=P p1[-1]=C p1[0]=L p2[-2]=Po p2[-1]=Co p2[0]=Li p3[-2]=Pow p3[-1]=Cor p3[0]=Lie p4[-2]=Powe p4[-1]=Corr p4[0]=Lies s1[-2]=r s1[-1]=n s1[0]=s s2[-2]=er s2[-1]=on s2[0]=es s3[-2]=wer s3[-1]=ion s3[0]=ies s4[-2]=ower s4[-1]=tion s4[0]=Lies 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Power|Corruption w[-1]|w[0]=Corruption|Lies pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Power w[-4..-1]=Corruption __EOS__ + +O w[0]=play w[1]=music w[2]=by wl[0]=play wl[1]=music wl[2]=by pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=b p2[0]=pl p2[1]=mu p2[2]=by p3[0]=pla p3[1]=mus p3[2]= p4[0]=play p4[1]=musi p4[2]= s1[0]=y s1[1]=c s1[2]=y s2[0]=ay s2[1]=ic s2[2]=by s3[0]=lay s3[1]=sic s3[2]= s4[0]=play s4[1]=usic s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|music w[1]|w[2]=music|by pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=music w[1..4]=by w[1..4]=Marco w[1..4]=Mengoni __BOS__ +O w[-1]=play w[0]=music w[1]=by w[2]=Marco wl[-1]=play wl[0]=music wl[1]=by wl[2]=marco pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=m p1[1]=b p1[2]=M p2[-1]=pl p2[0]=mu p2[1]=by p2[2]=Ma p3[-1]=pla p3[0]=mus p3[1]= p3[2]=Mar p4[-1]=play p4[0]=musi p4[1]= p4[2]=Marc s1[-1]=y s1[0]=c s1[1]=y s1[2]=o s2[-1]=ay s2[0]=ic s2[1]=by s2[2]=co s3[-1]=lay s3[0]=sic s3[1]= s3[2]=rco s4[-1]=play s4[0]=usic s4[1]= s4[2]=arco 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|music w[0]|w[1]=music|by w[1]|w[2]=by|Marco pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Marco w[1..4]=Mengoni +O w[-2]=play w[-1]=music w[0]=by w[1]=Marco w[2]=Mengoni wl[-2]=play wl[-1]=music wl[0]=by wl[1]=marco wl[2]=mengoni pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=m p1[0]=b p1[1]=M p1[2]=M p2[-2]=pl p2[-1]=mu p2[0]=by p2[1]=Ma p2[2]=Me p3[-2]=pla p3[-1]=mus p3[0]= p3[1]=Mar p3[2]=Men p4[-2]=play p4[-1]=musi p4[0]= p4[1]=Marc p4[2]=Meng s1[-2]=y s1[-1]=c s1[0]=y s1[1]=o s1[2]=i s2[-2]=ay s2[-1]=ic s2[0]=by s2[1]=co s2[2]=ni s3[-2]=lay s3[-1]=sic s3[0]= s3[1]=rco s3[2]=oni s4[-2]=play s4[-1]=usic s4[0]= s4[1]=arco s4[2]=goni 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|music w[-1]|w[0]=music|by w[0]|w[1]=by|Marco w[1]|w[2]=Marco|Mengoni pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[1..4]=Marco w[1..4]=Mengoni +artist w[-2]=music w[-1]=by w[0]=Marco w[1]=Mengoni wl[-2]=music wl[-1]=by wl[0]=marco wl[1]=mengoni pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=m p1[-1]=b p1[0]=M p1[1]=M p2[-2]=mu p2[-1]=by p2[0]=Ma p2[1]=Me p3[-2]=mus p3[-1]= p3[0]=Mar p3[1]=Men p4[-2]=musi p4[-1]= p4[0]=Marc p4[1]=Meng s1[-2]=c s1[-1]=y s1[0]=o s1[1]=i s2[-2]=ic s2[-1]=by s2[0]=co s2[1]=ni s3[-2]=sic s3[-1]= s3[0]=rco s3[1]=oni s4[-2]=usic s4[-1]= s4[0]=arco s4[1]=goni 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=music|by w[-1]|w[0]=by|Marco w[0]|w[1]=Marco|Mengoni pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[-4..-1]=by w[1..4]=Mengoni +artist w[-2]=by w[-1]=Marco w[0]=Mengoni wl[-2]=by wl[-1]=marco wl[0]=mengoni pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=M p1[0]=M p2[-2]=by p2[-1]=Ma p2[0]=Me p3[-2]= p3[-1]=Mar p3[0]=Men p4[-2]= p4[-1]=Marc p4[0]=Meng s1[-2]=y s1[-1]=o s1[0]=i s2[-2]=by s2[-1]=co s2[0]=ni s3[-2]= s3[-1]=rco s3[0]=oni s4[-2]= s4[-1]=arco s4[0]=goni 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Marco w[-1]|w[0]=Marco|Mengoni pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[-4..-1]=by w[-4..-1]=Marco __EOS__ + +O w[0]=play w[1]=Hello wl[0]=play wl[1]=hello pos[0]=VB pos[1]=UH chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=ULLLL shaped[0]=L shaped[1]=UL type[0]=AllLetter type[1]=InitUpper p1[0]=p p1[1]=H p2[0]=pl p2[1]=He p3[0]=pla p3[1]=Hel p4[0]=play p4[1]=Hell s1[0]=y s1[1]=o s2[0]=ay s2[1]=lo s3[0]=lay s3[1]=llo s4[0]=play s4[1]=ello 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=yes cs[0]=no cs[1]=no w[0]|w[1]=play|Hello pos[0]|pos[1]=VB|UH chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|UL type[0]|type[1]=AllLetter|InitUpper w[1..4]=Hello __BOS__ +song w[-1]=play w[0]=Hello wl[-1]=play wl[0]=hello pos[-1]=VB pos[0]=UH chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=ULLLL shaped[-1]=L shaped[0]=UL type[-1]=AllLetter type[0]=InitUpper p1[-1]=p p1[0]=H p2[-1]=pl p2[0]=He p3[-1]=pla p3[0]=Hel p4[-1]=play p4[0]=Hell s1[-1]=y s1[0]=o s2[-1]=ay s2[0]=lo s3[-1]=lay s3[0]=llo s4[-1]=play s4[0]=ello 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=yes cs[-1]=no cs[0]=no w[-1]|w[0]=play|Hello pos[-1]|pos[0]=VB|UH chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|UL type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play __EOS__ + +O w[0]=start w[1]=up w[2]=the wl[0]=start wl[1]=up wl[2]=the pos[0]=VB pos[1]=RP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=u p1[2]=t p2[0]=st p2[1]=up p2[2]=th p3[0]=sta p3[1]= p3[2]=the p4[0]=star p4[1]= p4[2]= s1[0]=t s1[1]=p s1[2]=e s2[0]=rt s2[1]=up s2[2]=he s3[0]=art s3[1]= s3[2]=the s4[0]=tart s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=start|up w[1]|w[2]=up|the pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=up w[1..4]=the w[1..4]=track w[1..4]=Come __BOS__ +O w[-1]=start w[0]=up w[1]=the w[2]=track wl[-1]=start wl[0]=up wl[1]=the wl[2]=track pos[-1]=VB pos[0]=RP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLL shape[0]=LL shape[1]=LLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=s p1[0]=u p1[1]=t p1[2]=t p2[-1]=st p2[0]=up p2[1]=th p2[2]=tr p3[-1]=sta p3[0]= p3[1]=the p3[2]=tra p4[-1]=star p4[0]= p4[1]= p4[2]=trac s1[-1]=t s1[0]=p s1[1]=e s1[2]=k s2[-1]=rt s2[0]=up s2[1]=he s2[2]=ck s3[-1]=art s3[0]= s3[1]=the s3[2]=ack s4[-1]=tart s4[0]= s4[1]= s4[2]=rack 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=start|up w[0]|w[1]=up|the w[1]|w[2]=the|track pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=start w[1..4]=the w[1..4]=track w[1..4]=Come w[1..4]=Together +O w[-2]=start w[-1]=up w[0]=the w[1]=track w[2]=Come wl[-2]=start wl[-1]=up wl[0]=the wl[1]=track wl[2]=come pos[-2]=VB pos[-1]=RP pos[0]=DT pos[1]=NN pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=u p1[0]=t p1[1]=t p1[2]=C p2[-2]=st p2[-1]=up p2[0]=th p2[1]=tr p2[2]=Co p3[-2]=sta p3[-1]= p3[0]=the p3[1]=tra p3[2]=Com p4[-2]=star p4[-1]= p4[0]= p4[1]=trac p4[2]=Come s1[-2]=t s1[-1]=p s1[0]=e s1[1]=k s1[2]=e s2[-2]=rt s2[-1]=up s2[0]=he s2[1]=ck s2[2]=me s3[-2]=art s3[-1]= s3[0]=the s3[1]=ack s3[2]=ome s4[-2]=tart s4[-1]= s4[0]= s4[1]=rack s4[2]=Come 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=start|up w[-1]|w[0]=up|the w[0]|w[1]=the|track w[1]|w[2]=track|Come pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=start w[-4..-1]=up w[1..4]=track w[1..4]=Come w[1..4]=Together +O w[-2]=up w[-1]=the w[0]=track w[1]=Come w[2]=Together wl[-2]=up wl[-1]=the wl[0]=track wl[1]=come wl[2]=together pos[-2]=RP pos[-1]=DT pos[0]=NN pos[1]=VB pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=LLL shape[0]=LLLLL shape[1]=ULLL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=u p1[-1]=t p1[0]=t p1[1]=C p1[2]=T p2[-2]=up p2[-1]=th p2[0]=tr p2[1]=Co p2[2]=To p3[-2]= p3[-1]=the p3[0]=tra p3[1]=Com p3[2]=Tog p4[-2]= p4[-1]= p4[0]=trac p4[1]=Come p4[2]=Toge s1[-2]=p s1[-1]=e s1[0]=k s1[1]=e s1[2]=r s2[-2]=up s2[-1]=he s2[0]=ck s2[1]=me s2[2]=er s3[-2]= s3[-1]=the s3[0]=ack s3[1]=ome s3[2]=her s4[-2]= s4[-1]= s4[0]=rack s4[1]=Come s4[2]=ther 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=up|the w[-1]|w[0]=the|track w[0]|w[1]=track|Come w[1]|w[2]=Come|Together pos[-2]|pos[-1]=RP|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|VB pos[1]|pos[2]=VB|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=start w[-4..-1]=up w[-4..-1]=the w[1..4]=Come w[1..4]=Together +song w[-2]=the w[-1]=track w[0]=Come w[1]=Together wl[-2]=the wl[-1]=track wl[0]=come wl[1]=together pos[-2]=DT pos[-1]=NN pos[0]=VB pos[1]=VB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLL shape[-1]=LLLLL shape[0]=ULLL shape[1]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=t p1[-1]=t p1[0]=C p1[1]=T p2[-2]=th p2[-1]=tr p2[0]=Co p2[1]=To p3[-2]=the p3[-1]=tra p3[0]=Com p3[1]=Tog p4[-2]= p4[-1]=trac p4[0]=Come p4[1]=Toge s1[-2]=e s1[-1]=k s1[0]=e s1[1]=r s2[-2]=he s2[-1]=ck s2[0]=me s2[1]=er s3[-2]=the s3[-1]=ack s3[0]=ome s3[1]=her s4[-2]= s4[-1]=rack s4[0]=Come s4[1]=ther 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=the|track w[-1]|w[0]=track|Come w[0]|w[1]=Come|Together pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|VB pos[0]|pos[1]=VB|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=start w[-4..-1]=up w[-4..-1]=the w[-4..-1]=track w[1..4]=Together +song w[-2]=track w[-1]=Come w[0]=Together wl[-2]=track wl[-1]=come wl[0]=together pos[-2]=NN pos[-1]=VB pos[0]=VB chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLLL shape[-1]=ULLL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=t p1[-1]=C p1[0]=T p2[-2]=tr p2[-1]=Co p2[0]=To p3[-2]=tra p3[-1]=Com p3[0]=Tog p4[-2]=trac p4[-1]=Come p4[0]=Toge s1[-2]=k s1[-1]=e s1[0]=r s2[-2]=ck s2[-1]=me s2[0]=er s3[-2]=ack s3[-1]=ome s3[0]=her s4[-2]=rack s4[-1]=Come s4[0]=ther 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=track|Come w[-1]|w[0]=Come|Together pos[-2]|pos[-1]=NN|VB pos[-1]|pos[0]=VB|VB chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=up w[-4..-1]=the w[-4..-1]=track w[-4..-1]=Come __EOS__ + +O w[0]=play w[1]=jazz wl[0]=play wl[1]=jazz pos[0]=VB pos[1]=NN chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=j p2[0]=pl p2[1]=ja p3[0]=pla p3[1]=jaz p4[0]=play p4[1]=jazz s1[0]=y s1[1]=z s2[0]=ay s2[1]=zz s3[0]=lay s3[1]=azz s4[0]=play s4[1]=jazz 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|jazz pos[0]|pos[1]=VB|NN chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=jazz __BOS__ +genre w[-1]=play w[0]=jazz wl[-1]=play wl[0]=jazz pos[-1]=VB pos[0]=NN chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=j p2[-1]=pl p2[0]=ja p3[-1]=pla p3[0]=jaz p4[-1]=play p4[0]=jazz s1[-1]=y s1[0]=z s2[-1]=ay s2[0]=zz s3[-1]=lay s3[0]=azz s4[-1]=play s4[0]=jazz 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|jazz pos[-1]|pos[0]=VB|NN chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play __EOS__ + +O w[0]=play w[1]=a w[2]=pop wl[0]=play wl[1]=a wl[2]=pop pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=L shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=p p2[0]=pl p2[1]= p2[2]=po p3[0]=pla p3[1]= p3[2]=pop p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=a s1[2]=p s2[0]=ay s2[1]= s2[2]=op s3[0]=lay s3[1]= s3[2]=pop s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|pop pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=pop w[1..4]=song __BOS__ +O w[-1]=play w[0]=a w[1]=pop w[2]=song wl[-1]=play wl[0]=a wl[1]=pop wl[2]=song pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=L shape[1]=LLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=p p1[2]=s p2[-1]=pl p2[0]= p2[1]=po p2[2]=so p3[-1]=pla p3[0]= p3[1]=pop p3[2]=son p4[-1]=play p4[0]= p4[1]= p4[2]=song s1[-1]=y s1[0]=a s1[1]=p s1[2]=g s2[-1]=ay s2[0]= s2[1]=op s2[2]=ng s3[-1]=lay s3[0]= s3[1]=pop s3[2]=ong s4[-1]=play s4[0]= s4[1]= s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|pop w[1]|w[2]=pop|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=pop w[1..4]=song +genre w[-2]=play w[-1]=a w[0]=pop w[1]=song wl[-2]=play wl[-1]=a wl[0]=pop wl[1]=song pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=a p1[0]=p p1[1]=s p2[-2]=pl p2[-1]= p2[0]=po p2[1]=so p3[-2]=pla p3[-1]= p3[0]=pop p3[1]=son p4[-2]=play p4[-1]= p4[0]= p4[1]=song s1[-2]=y s1[-1]=a s1[0]=p s1[1]=g s2[-2]=ay s2[-1]= s2[0]=op s2[1]=ng s3[-2]=lay s3[-1]= s3[0]=pop s3[1]=ong s4[-2]=play s4[-1]= s4[0]= s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|pop w[0]|w[1]=pop|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[1..4]=song +O w[-2]=a w[-1]=pop w[0]=song wl[-2]=a wl[-1]=pop wl[0]=song pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=L shape[-1]=LLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=a p1[-1]=p p1[0]=s p2[-2]= p2[-1]=po p2[0]=so p3[-2]= p3[-1]=pop p3[0]=son p4[-2]= p4[-1]= p4[0]=song s1[-2]=a s1[-1]=p s1[0]=g s2[-2]= s2[-1]=op s2[0]=ng s3[-2]= s3[-1]=pop s3[0]=ong s4[-2]= s4[-1]= s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=a|pop w[-1]|w[0]=pop|song pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=pop __EOS__ + +O w[0]=play w[1]=Bad w[2]=from wl[0]=play wl[1]=bad wl[2]=from pos[0]=VB pos[1]=JJ pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULL shape[2]=LLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=B p1[2]=f p2[0]=pl p2[1]=Ba p2[2]=fr p3[0]=pla p3[1]=Bad p3[2]=fro p4[0]=play p4[1]= p4[2]=from s1[0]=y s1[1]=d s1[2]=m s2[0]=ay s2[1]=ad s2[2]=om s3[0]=lay s3[1]=Bad s3[2]=rom s4[0]=play s4[1]= s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Bad w[1]|w[2]=Bad|from pos[0]|pos[1]=VB|JJ pos[1]|pos[2]=JJ|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Bad w[1..4]=from w[1..4]=Michael w[1..4]=Jackson __BOS__ +song w[-1]=play w[0]=Bad w[1]=from w[2]=Michael wl[-1]=play wl[0]=bad wl[1]=from wl[2]=michael pos[-1]=VB pos[0]=JJ pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULL shape[1]=LLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=B p1[1]=f p1[2]=M p2[-1]=pl p2[0]=Ba p2[1]=fr p2[2]=Mi p3[-1]=pla p3[0]=Bad p3[1]=fro p3[2]=Mic p4[-1]=play p4[0]= p4[1]=from p4[2]=Mich s1[-1]=y s1[0]=d s1[1]=m s1[2]=l s2[-1]=ay s2[0]=ad s2[1]=om s2[2]=el s3[-1]=lay s3[0]=Bad s3[1]=rom s3[2]=ael s4[-1]=play s4[0]= s4[1]=from s4[2]=hael 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Bad w[0]|w[1]=Bad|from w[1]|w[2]=from|Michael pos[-1]|pos[0]=VB|JJ pos[0]|pos[1]=JJ|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=from w[1..4]=Michael w[1..4]=Jackson +O w[-2]=play w[-1]=Bad w[0]=from w[1]=Michael w[2]=Jackson wl[-2]=play wl[-1]=bad wl[0]=from wl[1]=michael wl[2]=jackson pos[-2]=VB pos[-1]=JJ pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=B p1[0]=f p1[1]=M p1[2]=J p2[-2]=pl p2[-1]=Ba p2[0]=fr p2[1]=Mi p2[2]=Ja p3[-2]=pla p3[-1]=Bad p3[0]=fro p3[1]=Mic p3[2]=Jac p4[-2]=play p4[-1]= p4[0]=from p4[1]=Mich p4[2]=Jack s1[-2]=y s1[-1]=d s1[0]=m s1[1]=l s1[2]=n s2[-2]=ay s2[-1]=ad s2[0]=om s2[1]=el s2[2]=on s3[-2]=lay s3[-1]=Bad s3[0]=rom s3[1]=ael s3[2]=son s4[-2]=play s4[-1]= s4[0]=from s4[1]=hael s4[2]=kson 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Bad w[-1]|w[0]=Bad|from w[0]|w[1]=from|Michael w[1]|w[2]=Michael|Jackson pos[-2]|pos[-1]=VB|JJ pos[-1]|pos[0]=JJ|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Bad w[1..4]=Michael w[1..4]=Jackson +artist w[-2]=Bad w[-1]=from w[0]=Michael w[1]=Jackson wl[-2]=bad wl[-1]=from wl[0]=michael wl[1]=jackson pos[-2]=JJ pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=B p1[-1]=f p1[0]=M p1[1]=J p2[-2]=Ba p2[-1]=fr p2[0]=Mi p2[1]=Ja p3[-2]=Bad p3[-1]=fro p3[0]=Mic p3[1]=Jac p4[-2]= p4[-1]=from p4[0]=Mich p4[1]=Jack s1[-2]=d s1[-1]=m s1[0]=l s1[1]=n s2[-2]=ad s2[-1]=om s2[0]=el s2[1]=on s3[-2]=Bad s3[-1]=rom s3[0]=ael s3[1]=son s4[-2]= s4[-1]=from s4[0]=hael s4[1]=kson 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Bad|from w[-1]|w[0]=from|Michael w[0]|w[1]=Michael|Jackson pos[-2]|pos[-1]=JJ|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Bad w[-4..-1]=from w[1..4]=Jackson +artist w[-2]=from w[-1]=Michael w[0]=Jackson wl[-2]=from wl[-1]=michael wl[0]=jackson pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=f p1[-1]=M p1[0]=J p2[-2]=fr p2[-1]=Mi p2[0]=Ja p3[-2]=fro p3[-1]=Mic p3[0]=Jac p4[-2]=from p4[-1]=Mich p4[0]=Jack s1[-2]=m s1[-1]=l s1[0]=n s2[-2]=om s2[-1]=el s2[0]=on s3[-2]=rom s3[-1]=ael s3[0]=son s4[-2]=from s4[-1]=hael s4[0]=kson 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=from|Michael w[-1]|w[0]=Michael|Jackson pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Bad w[-4..-1]=from w[-4..-1]=Michael __EOS__ + +O w[0]=play w[1]=a w[2]=romantic wl[0]=play wl[1]=a wl[2]=romantic pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=L shape[2]=LLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=r p2[0]=pl p2[1]= p2[2]=ro p3[0]=pla p3[1]= p3[2]=rom p4[0]=play p4[1]= p4[2]=roma s1[0]=y s1[1]=a s1[2]=c s2[0]=ay s2[1]= s2[2]=ic s3[0]=lay s3[1]= s3[2]=tic s4[0]=play s4[1]= s4[2]=ntic 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|romantic pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=romantic w[1..4]=song __BOS__ +O w[-1]=play w[0]=a w[1]=romantic w[2]=song wl[-1]=play wl[0]=a wl[1]=romantic wl[2]=song pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=L shape[1]=LLLLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=r p1[2]=s p2[-1]=pl p2[0]= p2[1]=ro p2[2]=so p3[-1]=pla p3[0]= p3[1]=rom p3[2]=son p4[-1]=play p4[0]= p4[1]=roma p4[2]=song s1[-1]=y s1[0]=a s1[1]=c s1[2]=g s2[-1]=ay s2[0]= s2[1]=ic s2[2]=ng s3[-1]=lay s3[0]= s3[1]=tic s3[2]=ong s4[-1]=play s4[0]= s4[1]=ntic s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|romantic w[1]|w[2]=romantic|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=romantic w[1..4]=song +genre w[-2]=play w[-1]=a w[0]=romantic w[1]=song wl[-2]=play wl[-1]=a wl[0]=romantic wl[1]=song pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLLLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=a p1[0]=r p1[1]=s p2[-2]=pl p2[-1]= p2[0]=ro p2[1]=so p3[-2]=pla p3[-1]= p3[0]=rom p3[1]=son p4[-2]=play p4[-1]= p4[0]=roma p4[1]=song s1[-2]=y s1[-1]=a s1[0]=c s1[1]=g s2[-2]=ay s2[-1]= s2[0]=ic s2[1]=ng s3[-2]=lay s3[-1]= s3[0]=tic s3[1]=ong s4[-2]=play s4[-1]= s4[0]=ntic s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|romantic w[0]|w[1]=romantic|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[1..4]=song +O w[-2]=a w[-1]=romantic w[0]=song wl[-2]=a wl[-1]=romantic wl[0]=song pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=L shape[-1]=LLLLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=a p1[-1]=r p1[0]=s p2[-2]= p2[-1]=ro p2[0]=so p3[-2]= p3[-1]=rom p3[0]=son p4[-2]= p4[-1]=roma p4[0]=song s1[-2]=a s1[-1]=c s1[0]=g s2[-2]= s2[-1]=ic s2[0]=ng s3[-2]= s3[-1]=tic s3[0]=ong s4[-2]= s4[-1]=ntic s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=a|romantic w[-1]|w[0]=romantic|song pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=romantic __EOS__ + +O w[0]=play w[1]=the w[2]=song wl[0]=play wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=the p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=he s2[2]=ng s3[0]=lay s3[1]=the s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song w[1..4]=Gorilla __BOS__ +O w[-1]=play w[0]=the w[1]=song w[2]=Gorilla wl[-1]=play wl[0]=the wl[1]=song wl[2]=gorilla pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=s p1[2]=G p2[-1]=pl p2[0]=th p2[1]=so p2[2]=Go p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Gor p4[-1]=play p4[0]= p4[1]=song p4[2]=Gori s1[-1]=y s1[0]=e s1[1]=g s1[2]=a s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=la s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=lla s4[-1]=play s4[0]= s4[1]=song s4[2]=illa 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Gorilla pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Gorilla +O w[-2]=play w[-1]=the w[0]=song w[1]=Gorilla wl[-2]=play wl[-1]=the wl[0]=song wl[1]=gorilla pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=t p1[0]=s p1[1]=G p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=Go p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Gor p4[-2]=play p4[-1]= p4[0]=song p4[1]=Gori s1[-2]=y s1[-1]=e s1[0]=g s1[1]=a s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=la s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=lla s4[-2]=play s4[-1]= s4[0]=song s4[1]=illa 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Gorilla pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[1..4]=Gorilla +song w[-2]=the w[-1]=song w[0]=Gorilla wl[-2]=the wl[-1]=song wl[0]=gorilla pos[-2]=DT pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=s p1[0]=G p2[-2]=th p2[-1]=so p2[0]=Go p3[-2]=the p3[-1]=son p3[0]=Gor p4[-2]= p4[-1]=song p4[0]=Gori s1[-2]=e s1[-1]=g s1[0]=a s2[-2]=he s2[-1]=ng s2[0]=la s3[-2]=the s3[-1]=ong s3[0]=lla s4[-2]= s4[-1]=song s4[0]=illa 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Gorilla pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=Temperature +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=Temperature w[1..4]=by +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=Temperature wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=temperature pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=ULLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=T p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=Te p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=Tem p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]=Temp s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=e s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=re s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=ure s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]=ture 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|Temperature pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=Temperature w[1..4]=by w[1..4]=Sean +O w[-2]=to w[-1]=listen w[0]=to w[1]=Temperature w[2]=by wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=temperature wl[2]=by pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=ULLLLLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=T p1[2]=b p2[-2]=to p2[-1]=li p2[0]=to p2[1]=Te p2[2]=by p3[-2]= p3[-1]=lis p3[0]= p3[1]=Tem p3[2]= p4[-2]= p4[-1]=list p4[0]= p4[1]=Temp p4[2]= s1[-2]=o s1[-1]=n s1[0]=o s1[1]=e s1[2]=y s2[-2]=to s2[-1]=en s2[0]=to s2[1]=re s2[2]=by s3[-2]= s3[-1]=ten s3[0]= s3[1]=ure s3[2]= s4[-2]= s4[-1]=sten s4[0]= s4[1]=ture s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|Temperature w[1]|w[2]=Temperature|by pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=Temperature w[1..4]=by w[1..4]=Sean w[1..4]=Paul +song w[-2]=listen w[-1]=to w[0]=Temperature w[1]=by w[2]=Sean wl[-2]=listen wl[-1]=to wl[0]=temperature wl[1]=by wl[2]=sean pos[-2]=VB pos[-1]=IN pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=ULLLLLLLLLL shape[1]=LL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=l p1[-1]=t p1[0]=T p1[1]=b p1[2]=S p2[-2]=li p2[-1]=to p2[0]=Te p2[1]=by p2[2]=Se p3[-2]=lis p3[-1]= p3[0]=Tem p3[1]= p3[2]=Sea p4[-2]=list p4[-1]= p4[0]=Temp p4[1]= p4[2]=Sean s1[-2]=n s1[-1]=o s1[0]=e s1[1]=y s1[2]=n s2[-2]=en s2[-1]=to s2[0]=re s2[1]=by s2[2]=an s3[-2]=ten s3[-1]= s3[0]=ure s3[1]= s3[2]=ean s4[-2]=sten s4[-1]= s4[0]=ture s4[1]= s4[2]=Sean 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|Temperature w[0]|w[1]=Temperature|by w[1]|w[2]=by|Sean pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=by w[1..4]=Sean w[1..4]=Paul +O w[-2]=to w[-1]=Temperature w[0]=by w[1]=Sean w[2]=Paul wl[-2]=to wl[-1]=temperature wl[0]=by wl[1]=sean wl[2]=paul pos[-2]=IN pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=ULLLLLLLLLL shape[0]=LL shape[1]=ULLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=t p1[-1]=T p1[0]=b p1[1]=S p1[2]=P p2[-2]=to p2[-1]=Te p2[0]=by p2[1]=Se p2[2]=Pa p3[-2]= p3[-1]=Tem p3[0]= p3[1]=Sea p3[2]=Pau p4[-2]= p4[-1]=Temp p4[0]= p4[1]=Sean p4[2]=Paul s1[-2]=o s1[-1]=e s1[0]=y s1[1]=n s1[2]=l s2[-2]=to s2[-1]=re s2[0]=by s2[1]=an s2[2]=ul s3[-2]= s3[-1]=ure s3[0]= s3[1]=ean s3[2]=aul s4[-2]= s4[-1]=ture s4[0]= s4[1]=Sean s4[2]=Paul 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|Temperature w[-1]|w[0]=Temperature|by w[0]|w[1]=by|Sean w[1]|w[2]=Sean|Paul pos[-2]|pos[-1]=IN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Temperature w[1..4]=Sean w[1..4]=Paul +artist w[-2]=Temperature w[-1]=by w[0]=Sean w[1]=Paul wl[-2]=temperature wl[-1]=by wl[0]=sean wl[1]=paul pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLLLLLL shape[-1]=LL shape[0]=ULLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=T p1[-1]=b p1[0]=S p1[1]=P p2[-2]=Te p2[-1]=by p2[0]=Se p2[1]=Pa p3[-2]=Tem p3[-1]= p3[0]=Sea p3[1]=Pau p4[-2]=Temp p4[-1]= p4[0]=Sean p4[1]=Paul s1[-2]=e s1[-1]=y s1[0]=n s1[1]=l s2[-2]=re s2[-1]=by s2[0]=an s2[1]=ul s3[-2]=ure s3[-1]= s3[0]=ean s3[1]=aul s4[-2]=ture s4[-1]= s4[0]=Sean s4[1]=Paul 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Temperature|by w[-1]|w[0]=by|Sean w[0]|w[1]=Sean|Paul pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Temperature w[-4..-1]=by w[1..4]=Paul +artist w[-2]=by w[-1]=Sean w[0]=Paul wl[-2]=by wl[-1]=sean wl[0]=paul pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLL shape[0]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=S p1[0]=P p2[-2]=by p2[-1]=Se p2[0]=Pa p3[-2]= p3[-1]=Sea p3[0]=Pau p4[-2]= p4[-1]=Sean p4[0]=Paul s1[-2]=y s1[-1]=n s1[0]=l s2[-2]=by s2[-1]=an s2[0]=ul s3[-2]= s3[-1]=ean s3[0]=aul s4[-2]= s4[-1]=Sean s4[0]=Paul 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Sean w[-1]|w[0]=Sean|Paul pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=to w[-4..-1]=Temperature w[-4..-1]=by w[-4..-1]=Sean __EOS__ + +O w[0]=play w[1]=Animals w[2]=by wl[0]=play wl[1]=animals wl[2]=by pos[0]=VB pos[1]=NNS pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=A p1[2]=b p2[0]=pl p2[1]=An p2[2]=by p3[0]=pla p3[1]=Ani p3[2]= p4[0]=play p4[1]=Anim p4[2]= s1[0]=y s1[1]=s s1[2]=y s2[0]=ay s2[1]=ls s2[2]=by s3[0]=lay s3[1]=als s3[2]= s4[0]=play s4[1]=mals s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Animals w[1]|w[2]=Animals|by pos[0]|pos[1]=VB|NNS pos[1]|pos[2]=NNS|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Animals w[1..4]=by w[1..4]=Maroon w[1..4]=5 __BOS__ +song w[-1]=play w[0]=Animals w[1]=by w[2]=Maroon wl[-1]=play wl[0]=animals wl[1]=by wl[2]=maroon pos[-1]=VB pos[0]=NNS pos[1]=IN pos[2]=NN chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULLLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=A p1[1]=b p1[2]=M p2[-1]=pl p2[0]=An p2[1]=by p2[2]=Ma p3[-1]=pla p3[0]=Ani p3[1]= p3[2]=Mar p4[-1]=play p4[0]=Anim p4[1]= p4[2]=Maro s1[-1]=y s1[0]=s s1[1]=y s1[2]=n s2[-1]=ay s2[0]=ls s2[1]=by s2[2]=on s3[-1]=lay s3[0]=als s3[1]= s3[2]=oon s4[-1]=play s4[0]=mals s4[1]= s4[2]=roon 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Animals w[0]|w[1]=Animals|by w[1]|w[2]=by|Maroon pos[-1]|pos[0]=VB|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Maroon w[1..4]=5 +O w[-2]=play w[-1]=Animals w[0]=by w[1]=Maroon w[2]=5 wl[-2]=play wl[-1]=animals wl[0]=by wl[1]=maroon wl[2]=5 pos[-2]=VB pos[-1]=NNS pos[0]=IN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULLLLL shape[2]=D shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=D type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllDigit p1[-2]=p p1[-1]=A p1[0]=b p1[1]=M p1[2]=5 p2[-2]=pl p2[-1]=An p2[0]=by p2[1]=Ma p2[2]= p3[-2]=pla p3[-1]=Ani p3[0]= p3[1]=Mar p3[2]= p4[-2]=play p4[-1]=Anim p4[0]= p4[1]=Maro p4[2]= s1[-2]=y s1[-1]=s s1[0]=y s1[1]=n s1[2]=5 s2[-2]=ay s2[-1]=ls s2[0]=by s2[1]=on s2[2]= s3[-2]=lay s3[-1]=als s3[0]= s3[1]=oon s3[2]= s4[-2]=play s4[-1]=mals s4[0]= s4[1]=roon s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=yes ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=no cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Animals w[-1]|w[0]=Animals|by w[0]|w[1]=by|Maroon w[1]|w[2]=Maroon|5 pos[-2]|pos[-1]=VB|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|D type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllDigit w[-4..-1]=play w[-4..-1]=Animals w[1..4]=Maroon w[1..4]=5 +artist w[-2]=Animals w[-1]=by w[0]=Maroon w[1]=5 wl[-2]=animals wl[-1]=by wl[0]=maroon wl[1]=5 pos[-2]=NNS pos[-1]=IN pos[0]=NN pos[1]=NN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=D shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=D type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllDigit p1[-2]=A p1[-1]=b p1[0]=M p1[1]=5 p2[-2]=An p2[-1]=by p2[0]=Ma p2[1]= p3[-2]=Ani p3[-1]= p3[0]=Mar p3[1]= p4[-2]=Anim p4[-1]= p4[0]=Maro p4[1]= s1[-2]=s s1[-1]=y s1[0]=n s1[1]=5 s2[-2]=ls s2[-1]=by s2[0]=on s2[1]= s3[-2]=als s3[-1]= s3[0]=oon s3[1]= s4[-2]=mals s4[-1]= s4[0]=roon s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=yes ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=no ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=no cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Animals|by w[-1]|w[0]=by|Maroon w[0]|w[1]=Maroon|5 pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|D type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllDigit w[-4..-1]=play w[-4..-1]=Animals w[-4..-1]=by w[1..4]=5 +artist w[-2]=by w[-1]=Maroon w[0]=5 wl[-2]=by wl[-1]=maroon wl[0]=5 pos[-2]=IN pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=D shaped[-2]=L shaped[-1]=UL shaped[0]=D type[-2]=AllLetter type[-1]=InitUpper type[0]=AllDigit p1[-2]=b p1[-1]=M p1[0]=5 p2[-2]=by p2[-1]=Ma p2[0]= p3[-2]= p3[-1]=Mar p3[0]= p4[-2]= p4[-1]=Maro p4[0]= s1[-2]=y s1[-1]=n s1[0]=5 s2[-2]=by s2[-1]=on s2[0]= s3[-2]= s3[-1]=oon s3[0]= s4[-2]= s4[-1]=roon s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=yes ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=no ca[-2]=yes ca[-1]=yes ca[0]=no cd[-2]=no cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Maroon w[-1]|w[0]=Maroon|5 pos[-2]|pos[-1]=IN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|D type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllDigit w[-4..-1]=play w[-4..-1]=Animals w[-4..-1]=by w[-4..-1]=Maroon __EOS__ + +O w[0]=play w[1]=songs w[2]=by wl[0]=play wl[1]=songs wl[2]=by pos[0]=VBP pos[1]=NNS pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=son p3[2]= p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=s s1[2]=y s2[0]=ay s2[1]=gs s2[2]=by s3[0]=lay s3[1]=ngs s3[2]= s4[0]=play s4[1]=ongs s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|songs w[1]|w[2]=songs|by pos[0]|pos[1]=VBP|NNS pos[1]|pos[2]=NNS|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=songs w[1..4]=by w[1..4]=Ellie w[1..4]=Goulding __BOS__ +O w[-1]=play w[0]=songs w[1]=by w[2]=Ellie wl[-1]=play wl[0]=songs wl[1]=by wl[2]=ellie pos[-1]=VBP pos[0]=NNS pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=E p2[-1]=pl p2[0]=so p2[1]=by p2[2]=El p3[-1]=pla p3[0]=son p3[1]= p3[2]=Ell p4[-1]=play p4[0]=song p4[1]= p4[2]=Elli s1[-1]=y s1[0]=s s1[1]=y s1[2]=e s2[-1]=ay s2[0]=gs s2[1]=by s2[2]=ie s3[-1]=lay s3[0]=ngs s3[1]= s3[2]=lie s4[-1]=play s4[0]=ongs s4[1]= s4[2]=llie 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|songs w[0]|w[1]=songs|by w[1]|w[2]=by|Ellie pos[-1]|pos[0]=VBP|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Ellie w[1..4]=Goulding +O w[-2]=play w[-1]=songs w[0]=by w[1]=Ellie w[2]=Goulding wl[-2]=play wl[-1]=songs wl[0]=by wl[1]=ellie wl[2]=goulding pos[-2]=VBP pos[-1]=NNS pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=b p1[1]=E p1[2]=G p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=El p2[2]=Go p3[-2]=pla p3[-1]=son p3[0]= p3[1]=Ell p3[2]=Gou p4[-2]=play p4[-1]=song p4[0]= p4[1]=Elli p4[2]=Goul s1[-2]=y s1[-1]=s s1[0]=y s1[1]=e s1[2]=g s2[-2]=ay s2[-1]=gs s2[0]=by s2[1]=ie s2[2]=ng s3[-2]=lay s3[-1]=ngs s3[0]= s3[1]=lie s3[2]=ing s4[-2]=play s4[-1]=ongs s4[0]= s4[1]=llie s4[2]=ding 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|songs w[-1]|w[0]=songs|by w[0]|w[1]=by|Ellie w[1]|w[2]=Ellie|Goulding pos[-2]|pos[-1]=VBP|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=songs w[1..4]=Ellie w[1..4]=Goulding +artist w[-2]=songs w[-1]=by w[0]=Ellie w[1]=Goulding wl[-2]=songs wl[-1]=by wl[0]=ellie wl[1]=goulding pos[-2]=NNS pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=b p1[0]=E p1[1]=G p2[-2]=so p2[-1]=by p2[0]=El p2[1]=Go p3[-2]=son p3[-1]= p3[0]=Ell p3[1]=Gou p4[-2]=song p4[-1]= p4[0]=Elli p4[1]=Goul s1[-2]=s s1[-1]=y s1[0]=e s1[1]=g s2[-2]=gs s2[-1]=by s2[0]=ie s2[1]=ng s3[-2]=ngs s3[-1]= s3[0]=lie s3[1]=ing s4[-2]=ongs s4[-1]= s4[0]=llie s4[1]=ding 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=songs|by w[-1]|w[0]=by|Ellie w[0]|w[1]=Ellie|Goulding pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=songs w[-4..-1]=by w[1..4]=Goulding +artist w[-2]=by w[-1]=Ellie w[0]=Goulding wl[-2]=by wl[-1]=ellie wl[0]=goulding pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=E p1[0]=G p2[-2]=by p2[-1]=El p2[0]=Go p3[-2]= p3[-1]=Ell p3[0]=Gou p4[-2]= p4[-1]=Elli p4[0]=Goul s1[-2]=y s1[-1]=e s1[0]=g s2[-2]=by s2[-1]=ie s2[0]=ng s3[-2]= s3[-1]=lie s3[0]=ing s4[-2]= s4[-1]=llie s4[0]=ding 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Ellie w[-1]|w[0]=Ellie|Goulding pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=songs w[-4..-1]=by w[-4..-1]=Ellie __EOS__ + +O w[0]=play w[1]=Never w[2]=listen wl[0]=play wl[1]=never wl[2]=listen pos[0]=VBP pos[1]=RB pos[2]=RB chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLL shape[2]=LLLLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=N p1[2]=l p2[0]=pl p2[1]=Ne p2[2]=li p3[0]=pla p3[1]=Nev p3[2]=lis p4[0]=play p4[1]=Neve p4[2]=list s1[0]=y s1[1]=r s1[2]=n s2[0]=ay s2[1]=er s2[2]=en s3[0]=lay s3[1]=ver s3[2]=ten s4[0]=play s4[1]=ever s4[2]=sten 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Never w[1]|w[2]=Never|listen pos[0]|pos[1]=VBP|RB pos[1]|pos[2]=RB|RB chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Never w[1..4]=listen w[1..4]=Julia w[1..4]=Othmer __BOS__ +song w[-1]=play w[0]=Never w[1]=listen w[2]=Julia wl[-1]=play wl[0]=never wl[1]=listen wl[2]=julia pos[-1]=VBP pos[0]=RB pos[1]=RB pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLL shape[1]=LLLLLL shape[2]=ULLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=N p1[1]=l p1[2]=J p2[-1]=pl p2[0]=Ne p2[1]=li p2[2]=Ju p3[-1]=pla p3[0]=Nev p3[1]=lis p3[2]=Jul p4[-1]=play p4[0]=Neve p4[1]=list p4[2]=Juli s1[-1]=y s1[0]=r s1[1]=n s1[2]=a s2[-1]=ay s2[0]=er s2[1]=en s2[2]=ia s3[-1]=lay s3[0]=ver s3[1]=ten s3[2]=lia s4[-1]=play s4[0]=ever s4[1]=sten s4[2]=ulia 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Never w[0]|w[1]=Never|listen w[1]|w[2]=listen|Julia pos[-1]|pos[0]=VBP|RB pos[0]|pos[1]=RB|RB pos[1]|pos[2]=RB|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=listen w[1..4]=Julia w[1..4]=Othmer +song w[-2]=play w[-1]=Never w[0]=listen w[1]=Julia w[2]=Othmer wl[-2]=play wl[-1]=never wl[0]=listen wl[1]=julia wl[2]=othmer pos[-2]=VBP pos[-1]=RB pos[0]=RB pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=LLLLLL shape[1]=ULLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=N p1[0]=l p1[1]=J p1[2]=O p2[-2]=pl p2[-1]=Ne p2[0]=li p2[1]=Ju p2[2]=Ot p3[-2]=pla p3[-1]=Nev p3[0]=lis p3[1]=Jul p3[2]=Oth p4[-2]=play p4[-1]=Neve p4[0]=list p4[1]=Juli p4[2]=Othm s1[-2]=y s1[-1]=r s1[0]=n s1[1]=a s1[2]=r s2[-2]=ay s2[-1]=er s2[0]=en s2[1]=ia s2[2]=er s3[-2]=lay s3[-1]=ver s3[0]=ten s3[1]=lia s3[2]=mer s4[-2]=play s4[-1]=ever s4[0]=sten s4[1]=ulia s4[2]=hmer 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Never w[-1]|w[0]=Never|listen w[0]|w[1]=listen|Julia w[1]|w[2]=Julia|Othmer pos[-2]|pos[-1]=VBP|RB pos[-1]|pos[0]=RB|RB pos[0]|pos[1]=RB|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Never w[1..4]=Julia w[1..4]=Othmer +artist w[-2]=Never w[-1]=listen w[0]=Julia w[1]=Othmer wl[-2]=never wl[-1]=listen wl[0]=julia wl[1]=othmer pos[-2]=RB pos[-1]=RB pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLLL shape[-1]=LLLLLL shape[0]=ULLLL shape[1]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=N p1[-1]=l p1[0]=J p1[1]=O p2[-2]=Ne p2[-1]=li p2[0]=Ju p2[1]=Ot p3[-2]=Nev p3[-1]=lis p3[0]=Jul p3[1]=Oth p4[-2]=Neve p4[-1]=list p4[0]=Juli p4[1]=Othm s1[-2]=r s1[-1]=n s1[0]=a s1[1]=r s2[-2]=er s2[-1]=en s2[0]=ia s2[1]=er s3[-2]=ver s3[-1]=ten s3[0]=lia s3[1]=mer s4[-2]=ever s4[-1]=sten s4[0]=ulia s4[1]=hmer 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Never|listen w[-1]|w[0]=listen|Julia w[0]|w[1]=Julia|Othmer pos[-2]|pos[-1]=RB|RB pos[-1]|pos[0]=RB|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Never w[-4..-1]=listen w[1..4]=Othmer +artist w[-2]=listen w[-1]=Julia w[0]=Othmer wl[-2]=listen wl[-1]=julia wl[0]=othmer pos[-2]=RB pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLLLLL shape[-1]=ULLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=l p1[-1]=J p1[0]=O p2[-2]=li p2[-1]=Ju p2[0]=Ot p3[-2]=lis p3[-1]=Jul p3[0]=Oth p4[-2]=list p4[-1]=Juli p4[0]=Othm s1[-2]=n s1[-1]=a s1[0]=r s2[-2]=en s2[-1]=ia s2[0]=er s3[-2]=ten s3[-1]=lia s3[0]=mer s4[-2]=sten s4[-1]=ulia s4[0]=hmer 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=listen|Julia w[-1]|w[0]=Julia|Othmer pos[-2]|pos[-1]=RB|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Never w[-4..-1]=listen w[-4..-1]=Julia __EOS__ + +O w[0]=play w[1]=album w[2]=After wl[0]=play wl[1]=album wl[2]=after pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=A p2[0]=pl p2[1]=al p2[2]=Af p3[0]=pla p3[1]=alb p3[2]=Aft p4[0]=play p4[1]=albu p4[2]=Afte s1[0]=y s1[1]=m s1[2]=r s2[0]=ay s2[1]=um s2[2]=er s3[0]=lay s3[1]=bum s3[2]=ter s4[0]=play s4[1]=lbum s4[2]=fter 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|After pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=After w[1..4]=the w[1..4]=Gold __BOS__ +O w[-1]=play w[0]=album w[1]=After w[2]=the wl[-1]=play wl[0]=album wl[1]=after wl[2]=the pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=A p1[2]=t p2[-1]=pl p2[0]=al p2[1]=Af p2[2]=th p3[-1]=pla p3[0]=alb p3[1]=Aft p3[2]=the p4[-1]=play p4[0]=albu p4[1]=Afte p4[2]= s1[-1]=y s1[0]=m s1[1]=r s1[2]=e s2[-1]=ay s2[0]=um s2[1]=er s2[2]=he s3[-1]=lay s3[0]=bum s3[1]=ter s3[2]=the s4[-1]=play s4[0]=lbum s4[1]=fter s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|After w[1]|w[2]=After|the pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=After w[1..4]=the w[1..4]=Gold w[1..4]=Rush +album w[-2]=play w[-1]=album w[0]=After w[1]=the w[2]=Gold wl[-2]=play wl[-1]=album wl[0]=after wl[1]=the wl[2]=gold pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=IN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLL shape[1]=LLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=A p1[1]=t p1[2]=G p2[-2]=pl p2[-1]=al p2[0]=Af p2[1]=th p2[2]=Go p3[-2]=pla p3[-1]=alb p3[0]=Aft p3[1]=the p3[2]=Gol p4[-2]=play p4[-1]=albu p4[0]=Afte p4[1]= p4[2]=Gold s1[-2]=y s1[-1]=m s1[0]=r s1[1]=e s1[2]=d s2[-2]=ay s2[-1]=um s2[0]=er s2[1]=he s2[2]=ld s3[-2]=lay s3[-1]=bum s3[0]=ter s3[1]=the s3[2]=old s4[-2]=play s4[-1]=lbum s4[0]=fter s4[1]= s4[2]=Gold 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|After w[0]|w[1]=After|the w[1]|w[2]=the|Gold pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|IN pos[1]|pos[2]=IN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=the w[1..4]=Gold w[1..4]=Rush +album w[-2]=album w[-1]=After w[0]=the w[1]=Gold w[2]=Rush wl[-2]=album wl[-1]=after wl[0]=the wl[1]=gold wl[2]=rush pos[-2]=NN pos[-1]=IN pos[0]=IN pos[1]=IN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLLL shape[-1]=ULLLL shape[0]=LLL shape[1]=ULLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=a p1[-1]=A p1[0]=t p1[1]=G p1[2]=R p2[-2]=al p2[-1]=Af p2[0]=th p2[1]=Go p2[2]=Ru p3[-2]=alb p3[-1]=Aft p3[0]=the p3[1]=Gol p3[2]=Rus p4[-2]=albu p4[-1]=Afte p4[0]= p4[1]=Gold p4[2]=Rush s1[-2]=m s1[-1]=r s1[0]=e s1[1]=d s1[2]=h s2[-2]=um s2[-1]=er s2[0]=he s2[1]=ld s2[2]=sh s3[-2]=bum s3[-1]=ter s3[0]=the s3[1]=old s3[2]=ush s4[-2]=lbum s4[-1]=fter s4[0]= s4[1]=Gold s4[2]=Rush 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|After w[-1]|w[0]=After|the w[0]|w[1]=the|Gold w[1]|w[2]=Gold|Rush pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|IN pos[0]|pos[1]=IN|IN pos[1]|pos[2]=IN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=After w[1..4]=Gold w[1..4]=Rush +album w[-2]=After w[-1]=the w[0]=Gold w[1]=Rush wl[-2]=after wl[-1]=the wl[0]=gold wl[1]=rush pos[-2]=IN pos[-1]=IN pos[0]=IN pos[1]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLLL shape[-1]=LLL shape[0]=ULLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=A p1[-1]=t p1[0]=G p1[1]=R p2[-2]=Af p2[-1]=th p2[0]=Go p2[1]=Ru p3[-2]=Aft p3[-1]=the p3[0]=Gol p3[1]=Rus p4[-2]=Afte p4[-1]= p4[0]=Gold p4[1]=Rush s1[-2]=r s1[-1]=e s1[0]=d s1[1]=h s2[-2]=er s2[-1]=he s2[0]=ld s2[1]=sh s3[-2]=ter s3[-1]=the s3[0]=old s3[1]=ush s4[-2]=fter s4[-1]= s4[0]=Gold s4[1]=Rush 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=After|the w[-1]|w[0]=the|Gold w[0]|w[1]=Gold|Rush pos[-2]|pos[-1]=IN|IN pos[-1]|pos[0]=IN|IN pos[0]|pos[1]=IN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=After w[-4..-1]=the w[1..4]=Rush +album w[-2]=the w[-1]=Gold w[0]=Rush wl[-2]=the wl[-1]=gold wl[0]=rush pos[-2]=IN pos[-1]=IN pos[0]=IN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLL shape[-1]=ULLL shape[0]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=t p1[-1]=G p1[0]=R p2[-2]=th p2[-1]=Go p2[0]=Ru p3[-2]=the p3[-1]=Gol p3[0]=Rus p4[-2]= p4[-1]=Gold p4[0]=Rush s1[-2]=e s1[-1]=d s1[0]=h s2[-2]=he s2[-1]=ld s2[0]=sh s3[-2]=the s3[-1]=old s3[0]=ush s4[-2]= s4[-1]=Gold s4[0]=Rush 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|Gold w[-1]|w[0]=Gold|Rush pos[-2]|pos[-1]=IN|IN pos[-1]|pos[0]=IN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=album w[-4..-1]=After w[-4..-1]=the w[-4..-1]=Gold __EOS__ + +O w[0]=play w[1]=Do w[2]=I wl[0]=play wl[1]=do wl[2]=i pos[0]=VB pos[1]=VBP pos[2]=VBP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=UL shape[2]=U shaped[0]=L shaped[1]=UL shaped[2]=U type[0]=AllLetter type[1]=InitUpper type[2]=AllUpper p1[0]=p p1[1]=D p1[2]=I p2[0]=pl p2[1]=Do p2[2]= p3[0]=pla p3[1]= p3[2]= p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=o s1[2]=I s2[0]=ay s2[1]=Do s2[2]= s3[0]=lay s3[1]= s3[2]= s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=yes al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Do w[1]|w[2]=Do|I pos[0]|pos[1]=VB|VBP pos[1]|pos[2]=VBP|VBP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|U type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllUpper w[1..4]=Do w[1..4]=I w[1..4]=Wanna w[1..4]=Know __BOS__ +song w[-1]=play w[0]=Do w[1]=I w[2]=Wanna wl[-1]=play wl[0]=do wl[1]=i wl[2]=wanna pos[-1]=VB pos[0]=VBP pos[1]=VBP pos[2]=VBP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=UL shape[1]=U shape[2]=ULLLL shaped[-1]=L shaped[0]=UL shaped[1]=U shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllUpper type[2]=InitUpper p1[-1]=p p1[0]=D p1[1]=I p1[2]=W p2[-1]=pl p2[0]=Do p2[1]= p2[2]=Wa p3[-1]=pla p3[0]= p3[1]= p3[2]=Wan p4[-1]=play p4[0]= p4[1]= p4[2]=Wann s1[-1]=y s1[0]=o s1[1]=I s1[2]=a s2[-1]=ay s2[0]=Do s2[1]= s2[2]=na s3[-1]=lay s3[0]= s3[1]= s3[2]=nna s4[-1]=play s4[0]= s4[1]= s4[2]=anna 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=yes au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Do w[0]|w[1]=Do|I w[1]|w[2]=I|Wanna pos[-1]|pos[0]=VB|VBP pos[0]|pos[1]=VBP|VBP pos[1]|pos[2]=VBP|VBP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|U shaped[1]|shaped[2]=U|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllUpper type[1]|type[2]=AllUpper|InitUpper w[-4..-1]=play w[1..4]=I w[1..4]=Wanna w[1..4]=Know w[1..4]=by +song w[-2]=play w[-1]=Do w[0]=I w[1]=Wanna w[2]=Know wl[-2]=play wl[-1]=do wl[0]=i wl[1]=wanna wl[2]=know pos[-2]=VB pos[-1]=VBP pos[0]=VBP pos[1]=VBP pos[2]=VBP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=UL shape[0]=U shape[1]=ULLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=U shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=D p1[0]=I p1[1]=W p1[2]=K p2[-2]=pl p2[-1]=Do p2[0]= p2[1]=Wa p2[2]=Kn p3[-2]=pla p3[-1]= p3[0]= p3[1]=Wan p3[2]=Kno p4[-2]=play p4[-1]= p4[0]= p4[1]=Wann p4[2]=Know s1[-2]=y s1[-1]=o s1[0]=I s1[1]=a s1[2]=w s2[-2]=ay s2[-1]=Do s2[0]= s2[1]=na s2[2]=ow s3[-2]=lay s3[-1]= s3[0]= s3[1]=nna s3[2]=now s4[-2]=play s4[-1]= s4[0]= s4[1]=anna s4[2]=Know 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=yes au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Do w[-1]|w[0]=Do|I w[0]|w[1]=I|Wanna w[1]|w[2]=Wanna|Know pos[-2]|pos[-1]=VB|VBP pos[-1]|pos[0]=VBP|VBP pos[0]|pos[1]=VBP|VBP pos[1]|pos[2]=VBP|VBP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|U shaped[0]|shaped[1]=U|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllUpper type[0]|type[1]=AllUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Do w[1..4]=Wanna w[1..4]=Know w[1..4]=by w[1..4]=Arctic +song w[-2]=Do w[-1]=I w[0]=Wanna w[1]=Know w[2]=by wl[-2]=do wl[-1]=i wl[0]=wanna wl[1]=know wl[2]=by pos[-2]=VBP pos[-1]=VBP pos[0]=VBP pos[1]=VBP pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=UL shape[-1]=U shape[0]=ULLLL shape[1]=ULLL shape[2]=LL shaped[-2]=UL shaped[-1]=U shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=D p1[-1]=I p1[0]=W p1[1]=K p1[2]=b p2[-2]=Do p2[-1]= p2[0]=Wa p2[1]=Kn p2[2]=by p3[-2]= p3[-1]= p3[0]=Wan p3[1]=Kno p3[2]= p4[-2]= p4[-1]= p4[0]=Wann p4[1]=Know p4[2]= s1[-2]=o s1[-1]=I s1[0]=a s1[1]=w s1[2]=y s2[-2]=Do s2[-1]= s2[0]=na s2[1]=ow s2[2]=by s3[-2]= s3[-1]= s3[0]=nna s3[1]=now s3[2]= s4[-2]= s4[-1]= s4[0]=anna s4[1]=Know s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Do|I w[-1]|w[0]=I|Wanna w[0]|w[1]=Wanna|Know w[1]|w[2]=Know|by pos[-2]|pos[-1]=VBP|VBP pos[-1]|pos[0]=VBP|VBP pos[0]|pos[1]=VBP|VBP pos[1]|pos[2]=VBP|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|U shaped[-1]|shaped[0]=U|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllUpper type[-1]|type[0]=AllUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Do w[-4..-1]=I w[1..4]=Know w[1..4]=by w[1..4]=Arctic w[1..4]=Monkeys +song w[-2]=I w[-1]=Wanna w[0]=Know w[1]=by w[2]=Arctic wl[-2]=i wl[-1]=wanna wl[0]=know wl[1]=by wl[2]=arctic pos[-2]=VBP pos[-1]=VBP pos[0]=VBP pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=U shape[-1]=ULLLL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=U shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=I p1[-1]=W p1[0]=K p1[1]=b p1[2]=A p2[-2]= p2[-1]=Wa p2[0]=Kn p2[1]=by p2[2]=Ar p3[-2]= p3[-1]=Wan p3[0]=Kno p3[1]= p3[2]=Arc p4[-2]= p4[-1]=Wann p4[0]=Know p4[1]= p4[2]=Arct s1[-2]=I s1[-1]=a s1[0]=w s1[1]=y s1[2]=c s2[-2]= s2[-1]=na s2[0]=ow s2[1]=by s2[2]=ic s3[-2]= s3[-1]=nna s3[0]=now s3[1]= s3[2]=tic s4[-2]= s4[-1]=anna s4[0]=Know s4[1]= s4[2]=ctic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|Wanna w[-1]|w[0]=Wanna|Know w[0]|w[1]=Know|by w[1]|w[2]=by|Arctic pos[-2]|pos[-1]=VBP|VBP pos[-1]|pos[0]=VBP|VBP pos[0]|pos[1]=VBP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=U|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Do w[-4..-1]=I w[-4..-1]=Wanna w[1..4]=by w[1..4]=Arctic w[1..4]=Monkeys w[1..4]=song +O w[-2]=Wanna w[-1]=Know w[0]=by w[1]=Arctic w[2]=Monkeys wl[-2]=wanna wl[-1]=know wl[0]=by wl[1]=arctic wl[2]=monkeys pos[-2]=VBP pos[-1]=VBP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=W p1[-1]=K p1[0]=b p1[1]=A p1[2]=M p2[-2]=Wa p2[-1]=Kn p2[0]=by p2[1]=Ar p2[2]=Mo p3[-2]=Wan p3[-1]=Kno p3[0]= p3[1]=Arc p3[2]=Mon p4[-2]=Wann p4[-1]=Know p4[0]= p4[1]=Arct p4[2]=Monk s1[-2]=a s1[-1]=w s1[0]=y s1[1]=c s1[2]=s s2[-2]=na s2[-1]=ow s2[0]=by s2[1]=ic s2[2]=ys s3[-2]=nna s3[-1]=now s3[0]= s3[1]=tic s3[2]=eys s4[-2]=anna s4[-1]=Know s4[0]= s4[1]=ctic s4[2]=keys 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Wanna|Know w[-1]|w[0]=Know|by w[0]|w[1]=by|Arctic w[1]|w[2]=Arctic|Monkeys pos[-2]|pos[-1]=VBP|VBP pos[-1]|pos[0]=VBP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=Do w[-4..-1]=I w[-4..-1]=Wanna w[-4..-1]=Know w[1..4]=Arctic w[1..4]=Monkeys w[1..4]=song w[1..4]=on +artist w[-2]=Know w[-1]=by w[0]=Arctic w[1]=Monkeys w[2]=song wl[-2]=know wl[-1]=by wl[0]=arctic wl[1]=monkeys wl[2]=song pos[-2]=VBP pos[-1]=IN pos[0]=NNP pos[1]=NNP pos[2]=NN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLL shape[1]=ULLLLLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=K p1[-1]=b p1[0]=A p1[1]=M p1[2]=s p2[-2]=Kn p2[-1]=by p2[0]=Ar p2[1]=Mo p2[2]=so p3[-2]=Kno p3[-1]= p3[0]=Arc p3[1]=Mon p3[2]=son p4[-2]=Know p4[-1]= p4[0]=Arct p4[1]=Monk p4[2]=song s1[-2]=w s1[-1]=y s1[0]=c s1[1]=s s1[2]=g s2[-2]=ow s2[-1]=by s2[0]=ic s2[1]=ys s2[2]=ng s3[-2]=now s3[-1]= s3[0]=tic s3[1]=eys s3[2]=ong s4[-2]=Know s4[-1]= s4[0]=ctic s4[1]=keys s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Know|by w[-1]|w[0]=by|Arctic w[0]|w[1]=Arctic|Monkeys w[1]|w[2]=Monkeys|song pos[-2]|pos[-1]=VBP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=I w[-4..-1]=Wanna w[-4..-1]=Know w[-4..-1]=by w[1..4]=Monkeys w[1..4]=song w[1..4]=on w[1..4]=Spotify +artist w[-2]=by w[-1]=Arctic w[0]=Monkeys w[1]=song w[2]=on wl[-2]=by wl[-1]=arctic wl[0]=monkeys wl[1]=song wl[2]=on pos[-2]=IN pos[-1]=NNP pos[0]=NNP pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=ULLLLL shape[0]=ULLLLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=b p1[-1]=A p1[0]=M p1[1]=s p1[2]=o p2[-2]=by p2[-1]=Ar p2[0]=Mo p2[1]=so p2[2]=on p3[-2]= p3[-1]=Arc p3[0]=Mon p3[1]=son p3[2]= p4[-2]= p4[-1]=Arct p4[0]=Monk p4[1]=song p4[2]= s1[-2]=y s1[-1]=c s1[0]=s s1[1]=g s1[2]=n s2[-2]=by s2[-1]=ic s2[0]=ys s2[1]=ng s2[2]=on s3[-2]= s3[-1]=tic s3[0]=eys s3[1]=ong s3[2]= s4[-2]= s4[-1]=ctic s4[0]=keys s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Arctic w[-1]|w[0]=Arctic|Monkeys w[0]|w[1]=Monkeys|song w[1]|w[2]=song|on pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=Wanna w[-4..-1]=Know w[-4..-1]=by w[-4..-1]=Arctic w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=Arctic w[-1]=Monkeys w[0]=song w[1]=on w[2]=Spotify wl[-2]=arctic wl[-1]=monkeys wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=NNP pos[-1]=NNP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=ULLLLL shape[-1]=ULLLLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=A p1[-1]=M p1[0]=s p1[1]=o p1[2]=S p2[-2]=Ar p2[-1]=Mo p2[0]=so p2[1]=on p2[2]=Sp p3[-2]=Arc p3[-1]=Mon p3[0]=son p3[1]= p3[2]=Spo p4[-2]=Arct p4[-1]=Monk p4[0]=song p4[1]= p4[2]=Spot s1[-2]=c s1[-1]=s s1[0]=g s1[1]=n s1[2]=y s2[-2]=ic s2[-1]=ys s2[0]=ng s2[1]=on s2[2]=fy s3[-2]=tic s3[-1]=eys s3[0]=ong s3[1]= s3[2]=ify s4[-2]=ctic s4[-1]=keys s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Arctic|Monkeys w[-1]|w[0]=Monkeys|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Know w[-4..-1]=by w[-4..-1]=Arctic w[-4..-1]=Monkeys w[1..4]=on w[1..4]=Spotify +O w[-2]=Monkeys w[-1]=song w[0]=on w[1]=Spotify wl[-2]=monkeys wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=M p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Mo p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=Mon p3[-1]=son p3[0]= p3[1]=Spo p4[-2]=Monk p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=s s1[-1]=g s1[0]=n s1[1]=y s2[-2]=ys s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]=eys s3[-1]=ong s3[0]= s3[1]=ify s4[-2]=keys s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Monkeys|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Arctic w[-4..-1]=Monkeys w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Arctic w[-4..-1]=Monkeys w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=album w[2]=Madonna wl[0]=play wl[1]=album wl[2]=madonna pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=M p2[0]=pl p2[1]=al p2[2]=Ma p3[0]=pla p3[1]=alb p3[2]=Mad p4[0]=play p4[1]=albu p4[2]=Mado s1[0]=y s1[1]=m s1[2]=a s2[0]=ay s2[1]=um s2[2]=na s3[0]=lay s3[1]=bum s3[2]=nna s4[0]=play s4[1]=lbum s4[2]=onna 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Madonna pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Madonna w[1..4]=by w[1..4]=Madonna __BOS__ +O w[-1]=play w[0]=album w[1]=Madonna w[2]=by wl[-1]=play wl[0]=album wl[1]=madonna wl[2]=by pos[-1]=VB pos[0]=NN pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=M p1[2]=b p2[-1]=pl p2[0]=al p2[1]=Ma p2[2]=by p3[-1]=pla p3[0]=alb p3[1]=Mad p3[2]= p4[-1]=play p4[0]=albu p4[1]=Mado p4[2]= s1[-1]=y s1[0]=m s1[1]=a s1[2]=y s2[-1]=ay s2[0]=um s2[1]=na s2[2]=by s3[-1]=lay s3[0]=bum s3[1]=nna s3[2]= s4[-1]=play s4[0]=lbum s4[1]=onna s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Madonna w[1]|w[2]=Madonna|by pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Madonna w[1..4]=by w[1..4]=Madonna +album w[-2]=play w[-1]=album w[0]=Madonna w[1]=by w[2]=Madonna wl[-2]=play wl[-1]=album wl[0]=madonna wl[1]=by wl[2]=madonna pos[-2]=VB pos[-1]=NN pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=M p1[1]=b p1[2]=M p2[-2]=pl p2[-1]=al p2[0]=Ma p2[1]=by p2[2]=Ma p3[-2]=pla p3[-1]=alb p3[0]=Mad p3[1]= p3[2]=Mad p4[-2]=play p4[-1]=albu p4[0]=Mado p4[1]= p4[2]=Mado s1[-2]=y s1[-1]=m s1[0]=a s1[1]=y s1[2]=a s2[-2]=ay s2[-1]=um s2[0]=na s2[1]=by s2[2]=na s3[-2]=lay s3[-1]=bum s3[0]=nna s3[1]= s3[2]=nna s4[-2]=play s4[-1]=lbum s4[0]=onna s4[1]= s4[2]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Madonna w[0]|w[1]=Madonna|by w[1]|w[2]=by|Madonna pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=by w[1..4]=Madonna +O w[-2]=album w[-1]=Madonna w[0]=by w[1]=Madonna wl[-2]=album wl[-1]=madonna wl[0]=by wl[1]=madonna pos[-2]=NN pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLLLL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=a p1[-1]=M p1[0]=b p1[1]=M p2[-2]=al p2[-1]=Ma p2[0]=by p2[1]=Ma p3[-2]=alb p3[-1]=Mad p3[0]= p3[1]=Mad p4[-2]=albu p4[-1]=Mado p4[0]= p4[1]=Mado s1[-2]=m s1[-1]=a s1[0]=y s1[1]=a s2[-2]=um s2[-1]=na s2[0]=by s2[1]=na s3[-2]=bum s3[-1]=nna s3[0]= s3[1]=nna s4[-2]=lbum s4[-1]=onna s4[0]= s4[1]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=album|Madonna w[-1]|w[0]=Madonna|by w[0]|w[1]=by|Madonna pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Madonna w[1..4]=Madonna +album w[-2]=Madonna w[-1]=by w[0]=Madonna wl[-2]=madonna wl[-1]=by wl[0]=madonna pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=M p1[-1]=b p1[0]=M p2[-2]=Ma p2[-1]=by p2[0]=Ma p3[-2]=Mad p3[-1]= p3[0]=Mad p4[-2]=Mado p4[-1]= p4[0]=Mado s1[-2]=a s1[-1]=y s1[0]=a s2[-2]=na s2[-1]=by s2[0]=na s3[-2]=nna s3[-1]= s3[0]=nna s4[-2]=onna s4[-1]= s4[0]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Madonna|by w[-1]|w[0]=by|Madonna pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Madonna w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=Adele's w[2]=Hello wl[0]=play wl[1]=adele's wl[2]=hello pos[0]=VB pos[1]=NNP pos[2]=POS chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=ULLLL'L shape[2]=ULLLL shaped[0]=L shaped[1]=UL'L shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=A p1[2]=H p2[0]=pl p2[1]=Ad p2[2]=He p3[0]=pla p3[1]=Ade p3[2]=Hel p4[0]=play p4[1]=Adel p4[2]=Hell s1[0]=y s1[1]=s s1[2]=o s2[0]=ay s2[1]='s s2[2]=lo s3[0]=lay s3[1]=e's s3[2]=llo s4[0]=play s4[1]=le's s4[2]=ello 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=yes cs[2]=no w[0]|w[1]=play|Adele's w[1]|w[2]=Adele's|Hello pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|POS chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|UL'L shaped[1]|shaped[2]=UL'L|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Adele's w[1..4]=Hello __BOS__ +O w[-1]=play w[0]=Adele's w[1]=Hello wl[-1]=play wl[0]=adele's wl[1]=hello pos[-1]=VB pos[0]=NNP pos[1]=POS chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=ULLLL'L shape[1]=ULLLL shaped[-1]=L shaped[0]=UL'L shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=A p1[1]=H p2[-1]=pl p2[0]=Ad p2[1]=He p3[-1]=pla p3[0]=Ade p3[1]=Hel p4[-1]=play p4[0]=Adel p4[1]=Hell s1[-1]=y s1[0]=s s1[1]=o s2[-1]=ay s2[0]='s s2[1]=lo s3[-1]=lay s3[0]=e's s3[1]=llo s4[-1]=play s4[0]=le's s4[1]=ello 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-1]=no cs[0]=yes cs[1]=no w[-1]|w[0]=play|Adele's w[0]|w[1]=Adele's|Hello pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|POS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|UL'L shaped[0]|shaped[1]=UL'L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Hello +song w[-2]=play w[-1]=Adele's w[0]=Hello wl[-2]=play wl[-1]=adele's wl[0]=hello pos[-2]=VB pos[-1]=NNP pos[0]=POS chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=ULLLL'L shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL'L shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=A p1[0]=H p2[-2]=pl p2[-1]=Ad p2[0]=He p3[-2]=pla p3[-1]=Ade p3[0]=Hel p4[-2]=play p4[-1]=Adel p4[0]=Hell s1[-2]=y s1[-1]=s s1[0]=o s2[-2]=ay s2[-1]='s s2[0]=lo s3[-2]=lay s3[-1]=e's s3[0]=llo s4[-2]=play s4[-1]=le's s4[0]=ello 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=yes cs[0]=no w[-2]|w[-1]=play|Adele's w[-1]|w[0]=Adele's|Hello pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|POS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|UL'L shaped[-1]|shaped[0]=UL'L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Adele's __EOS__ + +O w[0]=play w[1]=song w[2]=In wl[0]=play wl[1]=song wl[2]=in pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=I p2[0]=pl p2[1]=so p2[2]=In p3[0]=pla p3[1]=son p3[2]= p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=n s2[0]=ay s2[1]=ng s2[2]=In s3[0]=lay s3[1]=ong s3[2]= s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|In pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=In w[1..4]=Da w[1..4]=Club __BOS__ +O w[-1]=play w[0]=song w[1]=In w[2]=Da wl[-1]=play wl[0]=song wl[1]=in wl[2]=da pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=UL shape[2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=I p1[2]=D p2[-1]=pl p2[0]=so p2[1]=In p2[2]=Da p3[-1]=pla p3[0]=son p3[1]= p3[2]= p4[-1]=play p4[0]=song p4[1]= p4[2]= s1[-1]=y s1[0]=g s1[1]=n s1[2]=a s2[-1]=ay s2[0]=ng s2[1]=In s2[2]=Da s3[-1]=lay s3[0]=ong s3[1]= s3[2]= s4[-1]=play s4[0]=song s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|In w[1]|w[2]=In|Da pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=In w[1..4]=Da w[1..4]=Club +song w[-2]=play w[-1]=song w[0]=In w[1]=Da w[2]=Club wl[-2]=play wl[-1]=song wl[0]=in wl[1]=da wl[2]=club pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=IN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=UL shape[1]=UL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=I p1[1]=D p1[2]=C p2[-2]=pl p2[-1]=so p2[0]=In p2[1]=Da p2[2]=Cl p3[-2]=pla p3[-1]=son p3[0]= p3[1]= p3[2]=Clu p4[-2]=play p4[-1]=song p4[0]= p4[1]= p4[2]=Club s1[-2]=y s1[-1]=g s1[0]=n s1[1]=a s1[2]=b s2[-2]=ay s2[-1]=ng s2[0]=In s2[1]=Da s2[2]=ub s3[-2]=lay s3[-1]=ong s3[0]= s3[1]= s3[2]=lub s4[-2]=play s4[-1]=song s4[0]= s4[1]= s4[2]=Club 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|In w[0]|w[1]=In|Da w[1]|w[2]=Da|Club pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|IN pos[1]|pos[2]=IN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=Da w[1..4]=Club +song w[-2]=song w[-1]=In w[0]=Da w[1]=Club wl[-2]=song wl[-1]=in wl[0]=da wl[1]=club pos[-2]=NN pos[-1]=IN pos[0]=IN pos[1]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=UL shape[0]=UL shape[1]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=I p1[0]=D p1[1]=C p2[-2]=so p2[-1]=In p2[0]=Da p2[1]=Cl p3[-2]=son p3[-1]= p3[0]= p3[1]=Clu p4[-2]=song p4[-1]= p4[0]= p4[1]=Club s1[-2]=g s1[-1]=n s1[0]=a s1[1]=b s2[-2]=ng s2[-1]=In s2[0]=Da s2[1]=ub s3[-2]=ong s3[-1]= s3[0]= s3[1]=lub s4[-2]=song s4[-1]= s4[0]= s4[1]=Club 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|In w[-1]|w[0]=In|Da w[0]|w[1]=Da|Club pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|IN pos[0]|pos[1]=IN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=In w[1..4]=Club +song w[-2]=In w[-1]=Da w[0]=Club wl[-2]=in wl[-1]=da wl[0]=club pos[-2]=IN pos[-1]=IN pos[0]=IN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=UL shape[-1]=UL shape[0]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=I p1[-1]=D p1[0]=C p2[-2]=In p2[-1]=Da p2[0]=Cl p3[-2]= p3[-1]= p3[0]=Clu p4[-2]= p4[-1]= p4[0]=Club s1[-2]=n s1[-1]=a s1[0]=b s2[-2]=In s2[-1]=Da s2[0]=ub s3[-2]= s3[-1]= s3[0]=lub s4[-2]= s4[-1]= s4[0]=Club 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=In|Da w[-1]|w[0]=Da|Club pos[-2]|pos[-1]=IN|IN pos[-1]|pos[0]=IN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=In w[-4..-1]=Da __EOS__ + +O w[0]=play w[1]=me w[2]=a wl[0]=play wl[1]=me wl[2]=a pos[0]=VB pos[1]=PRP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=L shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=a p2[0]=pl p2[1]=me p2[2]= p3[0]=pla p3[1]= p3[2]= p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=e s1[2]=a s2[0]=ay s2[1]=me s2[2]= s3[0]=lay s3[1]= s3[2]= s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|me w[1]|w[2]=me|a pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=me w[1..4]=a w[1..4]=song w[1..4]=by __BOS__ +O w[-1]=play w[0]=me w[1]=a w[2]=song wl[-1]=play wl[0]=me wl[1]=a wl[2]=song pos[-1]=VB pos[0]=PRP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=L shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=m p1[1]=a p1[2]=s p2[-1]=pl p2[0]=me p2[1]= p2[2]=so p3[-1]=pla p3[0]= p3[1]= p3[2]=son p4[-1]=play p4[0]= p4[1]= p4[2]=song s1[-1]=y s1[0]=e s1[1]=a s1[2]=g s2[-1]=ay s2[0]=me s2[1]= s2[2]=ng s3[-1]=lay s3[0]= s3[1]= s3[2]=ong s4[-1]=play s4[0]= s4[1]= s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|me w[0]|w[1]=me|a w[1]|w[2]=a|song pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=a w[1..4]=song w[1..4]=by w[1..4]=Aventura +O w[-2]=play w[-1]=me w[0]=a w[1]=song w[2]=by wl[-2]=play wl[-1]=me wl[0]=a wl[1]=song wl[2]=by pos[-2]=VB pos[-1]=PRP pos[0]=DT pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=L shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=m p1[0]=a p1[1]=s p1[2]=b p2[-2]=pl p2[-1]=me p2[0]= p2[1]=so p2[2]=by p3[-2]=pla p3[-1]= p3[0]= p3[1]=son p3[2]= p4[-2]=play p4[-1]= p4[0]= p4[1]=song p4[2]= s1[-2]=y s1[-1]=e s1[0]=a s1[1]=g s1[2]=y s2[-2]=ay s2[-1]=me s2[0]= s2[1]=ng s2[2]=by s3[-2]=lay s3[-1]= s3[0]= s3[1]=ong s3[2]= s4[-2]=play s4[-1]= s4[0]= s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|me w[-1]|w[0]=me|a w[0]|w[1]=a|song w[1]|w[2]=song|by pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[1..4]=song w[1..4]=by w[1..4]=Aventura +O w[-2]=me w[-1]=a w[0]=song w[1]=by w[2]=Aventura wl[-2]=me wl[-1]=a wl[0]=song wl[1]=by wl[2]=aventura pos[-2]=PRP pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=L shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=m p1[-1]=a p1[0]=s p1[1]=b p1[2]=A p2[-2]=me p2[-1]= p2[0]=so p2[1]=by p2[2]=Av p3[-2]= p3[-1]= p3[0]=son p3[1]= p3[2]=Ave p4[-2]= p4[-1]= p4[0]=song p4[1]= p4[2]=Aven s1[-2]=e s1[-1]=a s1[0]=g s1[1]=y s1[2]=a s2[-2]=me s2[-1]= s2[0]=ng s2[1]=by s2[2]=ra s3[-2]= s3[-1]= s3[0]=ong s3[1]= s3[2]=ura s4[-2]= s4[-1]= s4[0]=song s4[1]= s4[2]=tura 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=me|a w[-1]|w[0]=a|song w[0]|w[1]=song|by w[1]|w[2]=by|Aventura pos[-2]|pos[-1]=PRP|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=me w[-4..-1]=a w[1..4]=by w[1..4]=Aventura +O w[-2]=a w[-1]=song w[0]=by w[1]=Aventura wl[-2]=a wl[-1]=song wl[0]=by wl[1]=aventura pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=L shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=a p1[-1]=s p1[0]=b p1[1]=A p2[-2]= p2[-1]=so p2[0]=by p2[1]=Av p3[-2]= p3[-1]=son p3[0]= p3[1]=Ave p4[-2]= p4[-1]=song p4[0]= p4[1]=Aven s1[-2]=a s1[-1]=g s1[0]=y s1[1]=a s2[-2]= s2[-1]=ng s2[0]=by s2[1]=ra s3[-2]= s3[-1]=ong s3[0]= s3[1]=ura s4[-2]= s4[-1]=song s4[0]= s4[1]=tura 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=a|song w[-1]|w[0]=song|by w[0]|w[1]=by|Aventura pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=me w[-4..-1]=a w[-4..-1]=song w[1..4]=Aventura +artist w[-2]=song w[-1]=by w[0]=Aventura wl[-2]=song wl[-1]=by wl[0]=aventura pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=b p1[0]=A p2[-2]=so p2[-1]=by p2[0]=Av p3[-2]=son p3[-1]= p3[0]=Ave p4[-2]=song p4[-1]= p4[0]=Aven s1[-2]=g s1[-1]=y s1[0]=a s2[-2]=ng s2[-1]=by s2[0]=ra s3[-2]=ong s3[-1]= s3[0]=ura s4[-2]=song s4[-1]= s4[0]=tura 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|by w[-1]|w[0]=by|Aventura pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=me w[-4..-1]=a w[-4..-1]=song w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=Justin w[2]=Bieber wl[0]=play wl[1]=justin wl[2]=bieber pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=J p1[2]=B p2[0]=pl p2[1]=Ju p2[2]=Bi p3[0]=pla p3[1]=Jus p3[2]=Bie p4[0]=play p4[1]=Just p4[2]=Bieb s1[0]=y s1[1]=n s1[2]=r s2[0]=ay s2[1]=in s2[2]=er s3[0]=lay s3[1]=tin s3[2]=ber s4[0]=play s4[1]=stin s4[2]=eber 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Justin w[1]|w[2]=Justin|Bieber pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Justin w[1..4]=Bieber __BOS__ +artist w[-1]=play w[0]=Justin w[1]=Bieber wl[-1]=play wl[0]=justin wl[1]=bieber pos[-1]=VB pos[0]=NNP pos[1]=NNP chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULLLLL shape[1]=ULLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=J p1[1]=B p2[-1]=pl p2[0]=Ju p2[1]=Bi p3[-1]=pla p3[0]=Jus p3[1]=Bie p4[-1]=play p4[0]=Just p4[1]=Bieb s1[-1]=y s1[0]=n s1[1]=r s2[-1]=ay s2[0]=in s2[1]=er s3[-1]=lay s3[0]=tin s3[1]=ber s4[-1]=play s4[0]=stin s4[1]=eber 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|Justin w[0]|w[1]=Justin|Bieber pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Bieber +artist w[-2]=play w[-1]=Justin w[0]=Bieber wl[-2]=play wl[-1]=justin wl[0]=bieber pos[-2]=VB pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=J p1[0]=B p2[-2]=pl p2[-1]=Ju p2[0]=Bi p3[-2]=pla p3[-1]=Jus p3[0]=Bie p4[-2]=play p4[-1]=Just p4[0]=Bieb s1[-2]=y s1[-1]=n s1[0]=r s2[-2]=ay s2[-1]=in s2[0]=er s3[-2]=lay s3[-1]=tin s3[0]=ber s4[-2]=play s4[-1]=stin s4[0]=eber 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|Justin w[-1]|w[0]=Justin|Bieber pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Justin __EOS__ + +O w[0]=change w[1]=to w[2]=my wl[0]=change wl[1]=to wl[2]=my pos[0]=VB pos[1]=IN pos[2]=PRP$ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=t p1[2]=m p2[0]=ch p2[1]=to p2[2]=my p3[0]=cha p3[1]= p3[2]= p4[0]=chan p4[1]= p4[2]= s1[0]=e s1[1]=o s1[2]=y s2[0]=ge s2[1]=to s2[2]=my s3[0]=nge s3[1]= s3[2]= s4[0]=ange s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=change|to w[1]|w[2]=to|my pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|PRP$ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=my w[1..4]=workout w[1..4]=music __BOS__ +O w[-1]=change w[0]=to w[1]=my w[2]=workout wl[-1]=change wl[0]=to wl[1]=my wl[2]=workout pos[-1]=VB pos[0]=IN pos[1]=PRP$ pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLLLL shape[0]=LL shape[1]=LL shape[2]=LLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=t p1[1]=m p1[2]=w p2[-1]=ch p2[0]=to p2[1]=my p2[2]=wo p3[-1]=cha p3[0]= p3[1]= p3[2]=wor p4[-1]=chan p4[0]= p4[1]= p4[2]=work s1[-1]=e s1[0]=o s1[1]=y s1[2]=t s2[-1]=ge s2[0]=to s2[1]=my s2[2]=ut s3[-1]=nge s3[0]= s3[1]= s3[2]=out s4[-1]=ange s4[0]= s4[1]= s4[2]=kout 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=change|to w[0]|w[1]=to|my w[1]|w[2]=my|workout pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=change w[1..4]=my w[1..4]=workout w[1..4]=music +O w[-2]=change w[-1]=to w[0]=my w[1]=workout w[2]=music wl[-2]=change wl[-1]=to wl[0]=my wl[1]=workout wl[2]=music pos[-2]=VB pos[-1]=IN pos[0]=PRP$ pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=LL shape[1]=LLLLLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=t p1[0]=m p1[1]=w p1[2]=m p2[-2]=ch p2[-1]=to p2[0]=my p2[1]=wo p2[2]=mu p3[-2]=cha p3[-1]= p3[0]= p3[1]=wor p3[2]=mus p4[-2]=chan p4[-1]= p4[0]= p4[1]=work p4[2]=musi s1[-2]=e s1[-1]=o s1[0]=y s1[1]=t s1[2]=c s2[-2]=ge s2[-1]=to s2[0]=my s2[1]=ut s2[2]=ic s3[-2]=nge s3[-1]= s3[0]= s3[1]=out s3[2]=sic s4[-2]=ange s4[-1]= s4[0]= s4[1]=kout s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=change|to w[-1]|w[0]=to|my w[0]|w[1]=my|workout w[1]|w[2]=workout|music pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=change w[-4..-1]=to w[1..4]=workout w[1..4]=music +playlist w[-2]=to w[-1]=my w[0]=workout w[1]=music wl[-2]=to wl[-1]=my wl[0]=workout wl[1]=music pos[-2]=IN pos[-1]=PRP$ pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=m p1[0]=w p1[1]=m p2[-2]=to p2[-1]=my p2[0]=wo p2[1]=mu p3[-2]= p3[-1]= p3[0]=wor p3[1]=mus p4[-2]= p4[-1]= p4[0]=work p4[1]=musi s1[-2]=o s1[-1]=y s1[0]=t s1[1]=c s2[-2]=to s2[-1]=my s2[0]=ut s2[1]=ic s3[-2]= s3[-1]= s3[0]=out s3[1]=sic s4[-2]= s4[-1]= s4[0]=kout s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|my w[-1]|w[0]=my|workout w[0]|w[1]=workout|music pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=change w[-4..-1]=to w[-4..-1]=my w[1..4]=music +O w[-2]=my w[-1]=workout w[0]=music wl[-2]=my wl[-1]=workout wl[0]=music pos[-2]=PRP$ pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LL shape[-1]=LLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=w p1[0]=m p2[-2]=my p2[-1]=wo p2[0]=mu p3[-2]= p3[-1]=wor p3[0]=mus p4[-2]= p4[-1]=work p4[0]=musi s1[-2]=y s1[-1]=t s1[0]=c s2[-2]=my s2[-1]=ut s2[0]=ic s3[-2]= s3[-1]=out s3[0]=sic s4[-2]= s4[-1]=kout s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=my|workout w[-1]|w[0]=workout|music pos[-2]|pos[-1]=PRP$|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=change w[-4..-1]=to w[-4..-1]=my w[-4..-1]=workout __EOS__ + +O w[0]=play w[1]=song w[2]=from wl[0]=play wl[1]=song wl[2]=from pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=f p2[0]=pl p2[1]=so p2[2]=fr p3[0]=pla p3[1]=son p3[2]=fro p4[0]=play p4[1]=song p4[2]=from s1[0]=y s1[1]=g s1[2]=m s2[0]=ay s2[1]=ng s2[2]=om s3[0]=lay s3[1]=ong s3[2]=rom s4[0]=play s4[1]=song s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|from pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=song w[1..4]=from w[1..4]=iTunes __BOS__ +O w[-1]=play w[0]=song w[1]=from w[2]=iTunes wl[-1]=play wl[0]=song wl[1]=from wl[2]=itunes pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNS chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LULLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=LUL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=f p1[2]=i p2[-1]=pl p2[0]=so p2[1]=fr p2[2]=iT p3[-1]=pla p3[0]=son p3[1]=fro p3[2]=iTu p4[-1]=play p4[0]=song p4[1]=from p4[2]=iTun s1[-1]=y s1[0]=g s1[1]=m s1[2]=s s2[-1]=ay s2[0]=ng s2[1]=om s2[2]=es s3[-1]=lay s3[0]=ong s3[1]=rom s3[2]=nes s4[-1]=play s4[0]=song s4[1]=from s4[2]=unes 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|from w[1]|w[2]=from|iTunes pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|LUL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=from w[1..4]=iTunes +O w[-2]=play w[-1]=song w[0]=from w[1]=iTunes wl[-2]=play wl[-1]=song wl[0]=from wl[1]=itunes pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=LUL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=s p1[0]=f p1[1]=i p2[-2]=pl p2[-1]=so p2[0]=fr p2[1]=iT p3[-2]=pla p3[-1]=son p3[0]=fro p3[1]=iTu p4[-2]=play p4[-1]=song p4[0]=from p4[1]=iTun s1[-2]=y s1[-1]=g s1[0]=m s1[1]=s s2[-2]=ay s2[-1]=ng s2[0]=om s2[1]=es s3[-2]=lay s3[-1]=ong s3[0]=rom s3[1]=nes s4[-2]=play s4[-1]=song s4[0]=from s4[1]=unes 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|from w[0]|w[1]=from|iTunes pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|LUL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=song w[1..4]=iTunes +service w[-2]=song w[-1]=from w[0]=iTunes wl[-2]=song wl[-1]=from wl[0]=itunes pos[-2]=NN pos[-1]=IN pos[0]=NNS chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LULLLL shaped[-2]=L shaped[-1]=L shaped[0]=LUL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=f p1[0]=i p2[-2]=so p2[-1]=fr p2[0]=iT p3[-2]=son p3[-1]=fro p3[0]=iTu p4[-2]=song p4[-1]=from p4[0]=iTun s1[-2]=g s1[-1]=m s1[0]=s s2[-2]=ng s2[-1]=om s2[0]=es s3[-2]=ong s3[-1]=rom s3[0]=nes s4[-2]=song s4[-1]=from s4[0]=unes 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|from w[-1]|w[0]=from|iTunes pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|LUL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=song w[-4..-1]=from __EOS__ + +O w[0]=play w[1]=Miracles w[2]=from wl[0]=play wl[1]=miracles wl[2]=from pos[0]=VB pos[1]=NNPS pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=LLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=M p1[2]=f p2[0]=pl p2[1]=Mi p2[2]=fr p3[0]=pla p3[1]=Mir p3[2]=fro p4[0]=play p4[1]=Mira p4[2]=from s1[0]=y s1[1]=s s1[2]=m s2[0]=ay s2[1]=es s2[2]=om s3[0]=lay s3[1]=les s3[2]=rom s4[0]=play s4[1]=cles s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Miracles w[1]|w[2]=Miracles|from pos[0]|pos[1]=VB|NNPS pos[1]|pos[2]=NNPS|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Miracles w[1..4]=from w[1..4]=Apple w[1..4]=Music __BOS__ +song w[-1]=play w[0]=Miracles w[1]=from w[2]=Apple wl[-1]=play wl[0]=miracles wl[1]=from wl[2]=apple pos[-1]=VB pos[0]=NNPS pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=LLLL shape[2]=ULLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=M p1[1]=f p1[2]=A p2[-1]=pl p2[0]=Mi p2[1]=fr p2[2]=Ap p3[-1]=pla p3[0]=Mir p3[1]=fro p3[2]=App p4[-1]=play p4[0]=Mira p4[1]=from p4[2]=Appl s1[-1]=y s1[0]=s s1[1]=m s1[2]=e s2[-1]=ay s2[0]=es s2[1]=om s2[2]=le s3[-1]=lay s3[0]=les s3[1]=rom s3[2]=ple s4[-1]=play s4[0]=cles s4[1]=from s4[2]=pple 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Miracles w[0]|w[1]=Miracles|from w[1]|w[2]=from|Apple pos[-1]|pos[0]=VB|NNPS pos[0]|pos[1]=NNPS|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=from w[1..4]=Apple w[1..4]=Music +O w[-2]=play w[-1]=Miracles w[0]=from w[1]=Apple w[2]=Music wl[-2]=play wl[-1]=miracles wl[0]=from wl[1]=apple wl[2]=music pos[-2]=VB pos[-1]=NNPS pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=LLLL shape[1]=ULLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=M p1[0]=f p1[1]=A p1[2]=M p2[-2]=pl p2[-1]=Mi p2[0]=fr p2[1]=Ap p2[2]=Mu p3[-2]=pla p3[-1]=Mir p3[0]=fro p3[1]=App p3[2]=Mus p4[-2]=play p4[-1]=Mira p4[0]=from p4[1]=Appl p4[2]=Musi s1[-2]=y s1[-1]=s s1[0]=m s1[1]=e s1[2]=c s2[-2]=ay s2[-1]=es s2[0]=om s2[1]=le s2[2]=ic s3[-2]=lay s3[-1]=les s3[0]=rom s3[1]=ple s3[2]=sic s4[-2]=play s4[-1]=cles s4[0]=from s4[1]=pple s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Miracles w[-1]|w[0]=Miracles|from w[0]|w[1]=from|Apple w[1]|w[2]=Apple|Music pos[-2]|pos[-1]=VB|NNPS pos[-1]|pos[0]=NNPS|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Miracles w[1..4]=Apple w[1..4]=Music +service w[-2]=Miracles w[-1]=from w[0]=Apple w[1]=Music wl[-2]=miracles wl[-1]=from wl[0]=apple wl[1]=music pos[-2]=NNPS pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLLL shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=M p1[-1]=f p1[0]=A p1[1]=M p2[-2]=Mi p2[-1]=fr p2[0]=Ap p2[1]=Mu p3[-2]=Mir p3[-1]=fro p3[0]=App p3[1]=Mus p4[-2]=Mira p4[-1]=from p4[0]=Appl p4[1]=Musi s1[-2]=s s1[-1]=m s1[0]=e s1[1]=c s2[-2]=es s2[-1]=om s2[0]=le s2[1]=ic s3[-2]=les s3[-1]=rom s3[0]=ple s3[1]=sic s4[-2]=cles s4[-1]=from s4[0]=pple s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Miracles|from w[-1]|w[0]=from|Apple w[0]|w[1]=Apple|Music pos[-2]|pos[-1]=NNPS|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Miracles w[-4..-1]=from w[1..4]=Music +service w[-2]=from w[-1]=Apple w[0]=Music wl[-2]=from wl[-1]=apple wl[0]=music pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=f p1[-1]=A p1[0]=M p2[-2]=fr p2[-1]=Ap p2[0]=Mu p3[-2]=fro p3[-1]=App p3[0]=Mus p4[-2]=from p4[-1]=Appl p4[0]=Musi s1[-2]=m s1[-1]=e s1[0]=c s2[-2]=om s2[-1]=le s2[0]=ic s3[-2]=rom s3[-1]=ple s3[0]=sic s4[-2]=from s4[-1]=pple s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=from|Apple w[-1]|w[0]=Apple|Music pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Miracles w[-4..-1]=from w[-4..-1]=Apple __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=song w[1..4]=Dark __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=song wl[-1]=can wl[0]=you wl[1]=play wl[2]=song pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=s p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=so p3[-1]=can p3[0]=you p3[1]=pla p3[2]=son p4[-1]= p4[0]= p4[1]=play p4[2]=song s1[-1]=n s1[0]=u s1[1]=y s1[2]=g s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=ng s3[-1]=can s3[0]=you s3[1]=lay s3[2]=ong s4[-1]= s4[0]= s4[1]=play s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|song pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=play w[1..4]=song w[1..4]=Dark w[1..4]=Horse +O w[-2]=can w[-1]=you w[0]=play w[1]=song w[2]=Dark wl[-2]=can wl[-1]=you wl[0]=play wl[1]=song wl[2]=dark pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=NN pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=c p1[-1]=y p1[0]=p p1[1]=s p1[2]=D p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=so p2[2]=Da p3[-2]=can p3[-1]=you p3[0]=pla p3[1]=son p3[2]=Dar p4[-2]= p4[-1]= p4[0]=play p4[1]=song p4[2]=Dark s1[-2]=n s1[-1]=u s1[0]=y s1[1]=g s1[2]=k s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=ng s2[2]=rk s3[-2]=can s3[-1]=you s3[0]=lay s3[1]=ong s3[2]=ark s4[-2]= s4[-1]= s4[0]=play s4[1]=song s4[2]=Dark 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|song w[1]|w[2]=song|Dark pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=you w[1..4]=song w[1..4]=Dark w[1..4]=Horse +O w[-2]=you w[-1]=play w[0]=song w[1]=Dark w[2]=Horse wl[-2]=you wl[-1]=play wl[0]=song wl[1]=dark wl[2]=horse pos[-2]=PRP pos[-1]=VB pos[0]=NN pos[1]=JJ pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=y p1[-1]=p p1[0]=s p1[1]=D p1[2]=H p2[-2]=yo p2[-1]=pl p2[0]=so p2[1]=Da p2[2]=Ho p3[-2]=you p3[-1]=pla p3[0]=son p3[1]=Dar p3[2]=Hor p4[-2]= p4[-1]=play p4[0]=song p4[1]=Dark p4[2]=Hors s1[-2]=u s1[-1]=y s1[0]=g s1[1]=k s1[2]=e s2[-2]=ou s2[-1]=ay s2[0]=ng s2[1]=rk s2[2]=se s3[-2]=you s3[-1]=lay s3[0]=ong s3[1]=ark s3[2]=rse s4[-2]= s4[-1]=play s4[0]=song s4[1]=Dark s4[2]=orse 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|song w[0]|w[1]=song|Dark w[1]|w[2]=Dark|Horse pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|JJ pos[1]|pos[2]=JJ|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[1..4]=Dark w[1..4]=Horse +song w[-2]=play w[-1]=song w[0]=Dark w[1]=Horse wl[-2]=play wl[-1]=song wl[0]=dark wl[1]=horse pos[-2]=VB pos[-1]=NN pos[0]=JJ pos[1]=JJ chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLL shape[1]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=p p1[-1]=s p1[0]=D p1[1]=H p2[-2]=pl p2[-1]=so p2[0]=Da p2[1]=Ho p3[-2]=pla p3[-1]=son p3[0]=Dar p3[1]=Hor p4[-2]=play p4[-1]=song p4[0]=Dark p4[1]=Hors s1[-2]=y s1[-1]=g s1[0]=k s1[1]=e s2[-2]=ay s2[-1]=ng s2[0]=rk s2[1]=se s3[-2]=lay s3[-1]=ong s3[0]=ark s3[1]=rse s4[-2]=play s4[-1]=song s4[0]=Dark s4[1]=orse 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Dark w[0]|w[1]=Dark|Horse pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|JJ pos[0]|pos[1]=JJ|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[-4..-1]=song w[1..4]=Horse +song w[-2]=song w[-1]=Dark w[0]=Horse wl[-2]=song wl[-1]=dark wl[0]=horse pos[-2]=NN pos[-1]=JJ pos[0]=JJ chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=s p1[-1]=D p1[0]=H p2[-2]=so p2[-1]=Da p2[0]=Ho p3[-2]=son p3[-1]=Dar p3[0]=Hor p4[-2]=song p4[-1]=Dark p4[0]=Hors s1[-2]=g s1[-1]=k s1[0]=e s2[-2]=ng s2[-1]=rk s2[0]=se s3[-2]=ong s3[-1]=ark s3[0]=rse s4[-2]=song s4[-1]=Dark s4[0]=orse 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|Dark w[-1]|w[0]=Dark|Horse pos[-2]|pos[-1]=NN|JJ pos[-1]|pos[0]=JJ|JJ chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=you w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Dark __EOS__ + +O w[0]=play w[1]=Empty w[2]=Sky wl[0]=play wl[1]=empty wl[2]=sky pos[0]=VB pos[1]=JJ pos[2]=JJ chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLL shape[2]=ULL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=E p1[2]=S p2[0]=pl p2[1]=Em p2[2]=Sk p3[0]=pla p3[1]=Emp p3[2]=Sky p4[0]=play p4[1]=Empt p4[2]= s1[0]=y s1[1]=y s1[2]=y s2[0]=ay s2[1]=ty s2[2]=ky s3[0]=lay s3[1]=pty s3[2]=Sky s4[0]=play s4[1]=mpty s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Empty w[1]|w[2]=Empty|Sky pos[0]|pos[1]=VB|JJ pos[1]|pos[2]=JJ|JJ chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Empty w[1..4]=Sky w[1..4]=by w[1..4]=Elton __BOS__ +album w[-1]=play w[0]=Empty w[1]=Sky w[2]=by wl[-1]=play wl[0]=empty wl[1]=sky wl[2]=by pos[-1]=VB pos[0]=JJ pos[1]=JJ pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=E p1[1]=S p1[2]=b p2[-1]=pl p2[0]=Em p2[1]=Sk p2[2]=by p3[-1]=pla p3[0]=Emp p3[1]=Sky p3[2]= p4[-1]=play p4[0]=Empt p4[1]= p4[2]= s1[-1]=y s1[0]=y s1[1]=y s1[2]=y s2[-1]=ay s2[0]=ty s2[1]=ky s2[2]=by s3[-1]=lay s3[0]=pty s3[1]=Sky s3[2]= s4[-1]=play s4[0]=mpty s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Empty w[0]|w[1]=Empty|Sky w[1]|w[2]=Sky|by pos[-1]|pos[0]=VB|JJ pos[0]|pos[1]=JJ|JJ pos[1]|pos[2]=JJ|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Sky w[1..4]=by w[1..4]=Elton w[1..4]=John +album w[-2]=play w[-1]=Empty w[0]=Sky w[1]=by w[2]=Elton wl[-2]=play wl[-1]=empty wl[0]=sky wl[1]=by wl[2]=elton pos[-2]=VB pos[-1]=JJ pos[0]=JJ pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=E p1[0]=S p1[1]=b p1[2]=E p2[-2]=pl p2[-1]=Em p2[0]=Sk p2[1]=by p2[2]=El p3[-2]=pla p3[-1]=Emp p3[0]=Sky p3[1]= p3[2]=Elt p4[-2]=play p4[-1]=Empt p4[0]= p4[1]= p4[2]=Elto s1[-2]=y s1[-1]=y s1[0]=y s1[1]=y s1[2]=n s2[-2]=ay s2[-1]=ty s2[0]=ky s2[1]=by s2[2]=on s3[-2]=lay s3[-1]=pty s3[0]=Sky s3[1]= s3[2]=ton s4[-2]=play s4[-1]=mpty s4[0]= s4[1]= s4[2]=lton 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Empty w[-1]|w[0]=Empty|Sky w[0]|w[1]=Sky|by w[1]|w[2]=by|Elton pos[-2]|pos[-1]=VB|JJ pos[-1]|pos[0]=JJ|JJ pos[0]|pos[1]=JJ|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Empty w[1..4]=by w[1..4]=Elton w[1..4]=John +O w[-2]=Empty w[-1]=Sky w[0]=by w[1]=Elton w[2]=John wl[-2]=empty wl[-1]=sky wl[0]=by wl[1]=elton wl[2]=john pos[-2]=JJ pos[-1]=JJ pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=ULL shape[0]=LL shape[1]=ULLLL shape[2]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=E p1[-1]=S p1[0]=b p1[1]=E p1[2]=J p2[-2]=Em p2[-1]=Sk p2[0]=by p2[1]=El p2[2]=Jo p3[-2]=Emp p3[-1]=Sky p3[0]= p3[1]=Elt p3[2]=Joh p4[-2]=Empt p4[-1]= p4[0]= p4[1]=Elto p4[2]=John s1[-2]=y s1[-1]=y s1[0]=y s1[1]=n s1[2]=n s2[-2]=ty s2[-1]=ky s2[0]=by s2[1]=on s2[2]=hn s3[-2]=pty s3[-1]=Sky s3[0]= s3[1]=ton s3[2]=ohn s4[-2]=mpty s4[-1]= s4[0]= s4[1]=lton s4[2]=John 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Empty|Sky w[-1]|w[0]=Sky|by w[0]|w[1]=by|Elton w[1]|w[2]=Elton|John pos[-2]|pos[-1]=JJ|JJ pos[-1]|pos[0]=JJ|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Empty w[-4..-1]=Sky w[1..4]=Elton w[1..4]=John +artist w[-2]=Sky w[-1]=by w[0]=Elton w[1]=John wl[-2]=sky wl[-1]=by wl[0]=elton wl[1]=john pos[-2]=JJ pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=S p1[-1]=b p1[0]=E p1[1]=J p2[-2]=Sk p2[-1]=by p2[0]=El p2[1]=Jo p3[-2]=Sky p3[-1]= p3[0]=Elt p3[1]=Joh p4[-2]= p4[-1]= p4[0]=Elto p4[1]=John s1[-2]=y s1[-1]=y s1[0]=n s1[1]=n s2[-2]=ky s2[-1]=by s2[0]=on s2[1]=hn s3[-2]=Sky s3[-1]= s3[0]=ton s3[1]=ohn s4[-2]= s4[-1]= s4[0]=lton s4[1]=John 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Sky|by w[-1]|w[0]=by|Elton w[0]|w[1]=Elton|John pos[-2]|pos[-1]=JJ|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Empty w[-4..-1]=Sky w[-4..-1]=by w[1..4]=John +artist w[-2]=by w[-1]=Elton w[0]=John wl[-2]=by wl[-1]=elton wl[0]=john pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=E p1[0]=J p2[-2]=by p2[-1]=El p2[0]=Jo p3[-2]= p3[-1]=Elt p3[0]=Joh p4[-2]= p4[-1]=Elto p4[0]=John s1[-2]=y s1[-1]=n s1[0]=n s2[-2]=by s2[-1]=on s2[0]=hn s3[-2]= s3[-1]=ton s3[0]=ohn s4[-2]= s4[-1]=lton s4[0]=John 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Elton w[-1]|w[0]=Elton|John pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Empty w[-4..-1]=Sky w[-4..-1]=by w[-4..-1]=Elton __EOS__ + +O w[0]=play w[1]=song w[2]=Killer wl[0]=play wl[1]=song wl[2]=killer pos[0]=VBP pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=K p2[0]=pl p2[1]=so p2[2]=Ki p3[0]=pla p3[1]=son p3[2]=Kil p4[0]=play p4[1]=song p4[2]=Kill s1[0]=y s1[1]=g s1[2]=r s2[0]=ay s2[1]=ng s2[2]=er s3[0]=lay s3[1]=ong s3[2]=ler s4[0]=play s4[1]=song s4[2]=ller 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|Killer pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=Killer w[1..4]=Queen w[1..4]=by __BOS__ +O w[-1]=play w[0]=song w[1]=Killer w[2]=Queen wl[-1]=play wl[0]=song wl[1]=killer wl[2]=queen pos[-1]=VBP pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLLL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=K p1[2]=Q p2[-1]=pl p2[0]=so p2[1]=Ki p2[2]=Qu p3[-1]=pla p3[0]=son p3[1]=Kil p3[2]=Que p4[-1]=play p4[0]=song p4[1]=Kill p4[2]=Quee s1[-1]=y s1[0]=g s1[1]=r s1[2]=n s2[-1]=ay s2[0]=ng s2[1]=er s2[2]=en s3[-1]=lay s3[0]=ong s3[1]=ler s3[2]=een s4[-1]=play s4[0]=song s4[1]=ller s4[2]=ueen 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|Killer w[1]|w[2]=Killer|Queen pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Killer w[1..4]=Queen w[1..4]=by w[1..4]=Queen +song w[-2]=play w[-1]=song w[0]=Killer w[1]=Queen w[2]=by wl[-2]=play wl[-1]=song wl[0]=killer wl[1]=queen wl[2]=by pos[-2]=VBP pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLLL shape[1]=ULLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=s p1[0]=K p1[1]=Q p1[2]=b p2[-2]=pl p2[-1]=so p2[0]=Ki p2[1]=Qu p2[2]=by p3[-2]=pla p3[-1]=son p3[0]=Kil p3[1]=Que p3[2]= p4[-2]=play p4[-1]=song p4[0]=Kill p4[1]=Quee p4[2]= s1[-2]=y s1[-1]=g s1[0]=r s1[1]=n s1[2]=y s2[-2]=ay s2[-1]=ng s2[0]=er s2[1]=en s2[2]=by s3[-2]=lay s3[-1]=ong s3[0]=ler s3[1]=een s3[2]= s4[-2]=play s4[-1]=song s4[0]=ller s4[1]=ueen s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Killer w[0]|w[1]=Killer|Queen w[1]|w[2]=Queen|by pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=song w[1..4]=Queen w[1..4]=by w[1..4]=Queen +song w[-2]=song w[-1]=Killer w[0]=Queen w[1]=by w[2]=Queen wl[-2]=song wl[-1]=killer wl[0]=queen wl[1]=by wl[2]=queen pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=ULLLL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=K p1[0]=Q p1[1]=b p1[2]=Q p2[-2]=so p2[-1]=Ki p2[0]=Qu p2[1]=by p2[2]=Qu p3[-2]=son p3[-1]=Kil p3[0]=Que p3[1]= p3[2]=Que p4[-2]=song p4[-1]=Kill p4[0]=Quee p4[1]= p4[2]=Quee s1[-2]=g s1[-1]=r s1[0]=n s1[1]=y s1[2]=n s2[-2]=ng s2[-1]=er s2[0]=en s2[1]=by s2[2]=en s3[-2]=ong s3[-1]=ler s3[0]=een s3[1]= s3[2]=een s4[-2]=song s4[-1]=ller s4[0]=ueen s4[1]= s4[2]=ueen 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Killer w[-1]|w[0]=Killer|Queen w[0]|w[1]=Queen|by w[1]|w[2]=by|Queen pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Killer w[1..4]=by w[1..4]=Queen +O w[-2]=Killer w[-1]=Queen w[0]=by w[1]=Queen wl[-2]=killer wl[-1]=queen wl[0]=by wl[1]=queen pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULLLLL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=K p1[-1]=Q p1[0]=b p1[1]=Q p2[-2]=Ki p2[-1]=Qu p2[0]=by p2[1]=Qu p3[-2]=Kil p3[-1]=Que p3[0]= p3[1]=Que p4[-2]=Kill p4[-1]=Quee p4[0]= p4[1]=Quee s1[-2]=r s1[-1]=n s1[0]=y s1[1]=n s2[-2]=er s2[-1]=en s2[0]=by s2[1]=en s3[-2]=ler s3[-1]=een s3[0]= s3[1]=een s4[-2]=ller s4[-1]=ueen s4[0]= s4[1]=ueen 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Killer|Queen w[-1]|w[0]=Queen|by w[0]|w[1]=by|Queen pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Killer w[-4..-1]=Queen w[1..4]=Queen +artist w[-2]=Queen w[-1]=by w[0]=Queen wl[-2]=queen wl[-1]=by wl[0]=queen pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=Q p1[-1]=b p1[0]=Q p2[-2]=Qu p2[-1]=by p2[0]=Qu p3[-2]=Que p3[-1]= p3[0]=Que p4[-2]=Quee p4[-1]= p4[0]=Quee s1[-2]=n s1[-1]=y s1[0]=n s2[-2]=en s2[-1]=by s2[0]=en s3[-2]=een s3[-1]= s3[0]=een s4[-2]=ueen s4[-1]= s4[0]=ueen 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Queen|by w[-1]|w[0]=by|Queen pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=song w[-4..-1]=Killer w[-4..-1]=Queen w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=She's w[2]=Got wl[0]=play wl[1]=she's wl[2]=got pos[0]=VB pos[1]=PRP pos[2]=PRP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL'L shape[2]=ULL shaped[0]=L shaped[1]=UL'L shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=S p1[2]=G p2[0]=pl p2[1]=Sh p2[2]=Go p3[0]=pla p3[1]=She p3[2]=Got p4[0]=play p4[1]=She' p4[2]= s1[0]=y s1[1]=s s1[2]=t s2[0]=ay s2[1]='s s2[2]=ot s3[0]=lay s3[1]=e's s3[2]=Got s4[0]=play s4[1]=he's s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=yes cs[2]=no w[0]|w[1]=play|She's w[1]|w[2]=She's|Got pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|PRP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL'L shaped[1]|shaped[2]=UL'L|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=She's w[1..4]=Got w[1..4]=the w[1..4]=Look __BOS__ +song w[-1]=play w[0]=She's w[1]=Got w[2]=the wl[-1]=play wl[0]=she's wl[1]=got wl[2]=the pos[-1]=VB pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULL'L shape[1]=ULL shape[2]=LLL shaped[-1]=L shaped[0]=UL'L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=S p1[1]=G p1[2]=t p2[-1]=pl p2[0]=Sh p2[1]=Go p2[2]=th p3[-1]=pla p3[0]=She p3[1]=Got p3[2]=the p4[-1]=play p4[0]=She' p4[1]= p4[2]= s1[-1]=y s1[0]=s s1[1]=t s1[2]=e s2[-1]=ay s2[0]='s s2[1]=ot s2[2]=he s3[-1]=lay s3[0]=e's s3[1]=Got s3[2]=the s4[-1]=play s4[0]=he's s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-1]=no cs[0]=yes cs[1]=no cs[2]=no w[-1]|w[0]=play|She's w[0]|w[1]=She's|Got w[1]|w[2]=Got|the pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL'L shaped[0]|shaped[1]=UL'L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Got w[1..4]=the w[1..4]=Look w[1..4]=by +song w[-2]=play w[-1]=She's w[0]=Got w[1]=the w[2]=Look wl[-2]=play wl[-1]=she's wl[0]=got wl[1]=the wl[2]=look pos[-2]=VB pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULL'L shape[0]=ULL shape[1]=LLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL'L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=S p1[0]=G p1[1]=t p1[2]=L p2[-2]=pl p2[-1]=Sh p2[0]=Go p2[1]=th p2[2]=Lo p3[-2]=pla p3[-1]=She p3[0]=Got p3[1]=the p3[2]=Loo p4[-2]=play p4[-1]=She' p4[0]= p4[1]= p4[2]=Look s1[-2]=y s1[-1]=s s1[0]=t s1[1]=e s1[2]=k s2[-2]=ay s2[-1]='s s2[0]=ot s2[1]=he s2[2]=ok s3[-2]=lay s3[-1]=e's s3[0]=Got s3[1]=the s3[2]=ook s4[-2]=play s4[-1]=he's s4[0]= s4[1]= s4[2]=Look 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|She's w[-1]|w[0]=She's|Got w[0]|w[1]=Got|the w[1]|w[2]=the|Look pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL'L shaped[-1]|shaped[0]=UL'L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=She's w[1..4]=the w[1..4]=Look w[1..4]=by w[1..4]=Roxette +song w[-2]=She's w[-1]=Got w[0]=the w[1]=Look w[2]=by wl[-2]=she's wl[-1]=got wl[0]=the wl[1]=look wl[2]=by pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULL'L shape[-1]=ULL shape[0]=LLL shape[1]=ULLL shape[2]=LL shaped[-2]=UL'L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=S p1[-1]=G p1[0]=t p1[1]=L p1[2]=b p2[-2]=Sh p2[-1]=Go p2[0]=th p2[1]=Lo p2[2]=by p3[-2]=She p3[-1]=Got p3[0]=the p3[1]=Loo p3[2]= p4[-2]=She' p4[-1]= p4[0]= p4[1]=Look p4[2]= s1[-2]=s s1[-1]=t s1[0]=e s1[1]=k s1[2]=y s2[-2]='s s2[-1]=ot s2[0]=he s2[1]=ok s2[2]=by s3[-2]=e's s3[-1]=Got s3[0]=the s3[1]=ook s3[2]= s4[-2]=he's s4[-1]= s4[0]= s4[1]=Look s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=She's|Got w[-1]|w[0]=Got|the w[0]|w[1]=the|Look w[1]|w[2]=Look|by pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL'L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=She's w[-4..-1]=Got w[1..4]=Look w[1..4]=by w[1..4]=Roxette +song w[-2]=Got w[-1]=the w[0]=Look w[1]=by w[2]=Roxette wl[-2]=got wl[-1]=the wl[0]=look wl[1]=by wl[2]=roxette pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=NNP pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULL shape[-1]=LLL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=G p1[-1]=t p1[0]=L p1[1]=b p1[2]=R p2[-2]=Go p2[-1]=th p2[0]=Lo p2[1]=by p2[2]=Ro p3[-2]=Got p3[-1]=the p3[0]=Loo p3[1]= p3[2]=Rox p4[-2]= p4[-1]= p4[0]=Look p4[1]= p4[2]=Roxe s1[-2]=t s1[-1]=e s1[0]=k s1[1]=y s1[2]=e s2[-2]=ot s2[-1]=he s2[0]=ok s2[1]=by s2[2]=te s3[-2]=Got s3[-1]=the s3[0]=ook s3[1]= s3[2]=tte s4[-2]= s4[-1]= s4[0]=Look s4[1]= s4[2]=ette 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Got|the w[-1]|w[0]=the|Look w[0]|w[1]=Look|by w[1]|w[2]=by|Roxette pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=She's w[-4..-1]=Got w[-4..-1]=the w[1..4]=by w[1..4]=Roxette +O w[-2]=the w[-1]=Look w[0]=by w[1]=Roxette wl[-2]=the wl[-1]=look wl[0]=by wl[1]=roxette pos[-2]=PRP pos[-1]=PRP pos[0]=NNP pos[1]=IN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=t p1[-1]=L p1[0]=b p1[1]=R p2[-2]=th p2[-1]=Lo p2[0]=by p2[1]=Ro p3[-2]=the p3[-1]=Loo p3[0]= p3[1]=Rox p4[-2]= p4[-1]=Look p4[0]= p4[1]=Roxe s1[-2]=e s1[-1]=k s1[0]=y s1[1]=e s2[-2]=he s2[-1]=ok s2[0]=by s2[1]=te s3[-2]=the s3[-1]=ook s3[0]= s3[1]=tte s4[-2]= s4[-1]=Look s4[0]= s4[1]=ette 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=the|Look w[-1]|w[0]=Look|by w[0]|w[1]=by|Roxette pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|NNP pos[0]|pos[1]=NNP|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=She's w[-4..-1]=Got w[-4..-1]=the w[-4..-1]=Look w[1..4]=Roxette +artist w[-2]=Look w[-1]=by w[0]=Roxette wl[-2]=look wl[-1]=by wl[0]=roxette pos[-2]=PRP pos[-1]=NNP pos[0]=IN chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=L p1[-1]=b p1[0]=R p2[-2]=Lo p2[-1]=by p2[0]=Ro p3[-2]=Loo p3[-1]= p3[0]=Rox p4[-2]=Look p4[-1]= p4[0]=Roxe s1[-2]=k s1[-1]=y s1[0]=e s2[-2]=ok s2[-1]=by s2[0]=te s3[-2]=ook s3[-1]= s3[0]=tte s4[-2]=Look s4[-1]= s4[0]=ette 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Look|by w[-1]|w[0]=by|Roxette pos[-2]|pos[-1]=PRP|NNP pos[-1]|pos[0]=NNP|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Got w[-4..-1]=the w[-4..-1]=Look w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=Gospel w[2]=songs wl[0]=play wl[1]=gospel wl[2]=songs pos[0]=VB pos[1]=NN pos[2]=NNS chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLL shape[2]=LLLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=G p1[2]=s p2[0]=pl p2[1]=Go p2[2]=so p3[0]=pla p3[1]=Gos p3[2]=son p4[0]=play p4[1]=Gosp p4[2]=song s1[0]=y s1[1]=l s1[2]=s s2[0]=ay s2[1]=el s2[2]=gs s3[0]=lay s3[1]=pel s3[2]=ngs s4[0]=play s4[1]=spel s4[2]=ongs 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Gospel w[1]|w[2]=Gospel|songs pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNS chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Gospel w[1..4]=songs w[1..4]=on w[1..4]=Spotify __BOS__ +genre w[-1]=play w[0]=Gospel w[1]=songs w[2]=on wl[-1]=play wl[0]=gospel wl[1]=songs wl[2]=on pos[-1]=VB pos[0]=NN pos[1]=NNS pos[2]=IN chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=ULLLLL shape[1]=LLLLL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=G p1[1]=s p1[2]=o p2[-1]=pl p2[0]=Go p2[1]=so p2[2]=on p3[-1]=pla p3[0]=Gos p3[1]=son p3[2]= p4[-1]=play p4[0]=Gosp p4[1]=song p4[2]= s1[-1]=y s1[0]=l s1[1]=s s1[2]=n s2[-1]=ay s2[0]=el s2[1]=gs s2[2]=on s3[-1]=lay s3[0]=pel s3[1]=ngs s3[2]= s4[-1]=play s4[0]=spel s4[1]=ongs s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Gospel w[0]|w[1]=Gospel|songs w[1]|w[2]=songs|on pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNS pos[1]|pos[2]=NNS|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=songs w[1..4]=on w[1..4]=Spotify +O w[-2]=play w[-1]=Gospel w[0]=songs w[1]=on w[2]=Spotify wl[-2]=play wl[-1]=gospel wl[0]=songs wl[1]=on wl[2]=spotify pos[-2]=VB pos[-1]=NN pos[0]=NNS pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=G p1[0]=s p1[1]=o p1[2]=S p2[-2]=pl p2[-1]=Go p2[0]=so p2[1]=on p2[2]=Sp p3[-2]=pla p3[-1]=Gos p3[0]=son p3[1]= p3[2]=Spo p4[-2]=play p4[-1]=Gosp p4[0]=song p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=l s1[0]=s s1[1]=n s1[2]=y s2[-2]=ay s2[-1]=el s2[0]=gs s2[1]=on s2[2]=fy s3[-2]=lay s3[-1]=pel s3[0]=ngs s3[1]= s3[2]=ify s4[-2]=play s4[-1]=spel s4[0]=ongs s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Gospel w[-1]|w[0]=Gospel|songs w[0]|w[1]=songs|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Gospel w[1..4]=on w[1..4]=Spotify +O w[-2]=Gospel w[-1]=songs w[0]=on w[1]=Spotify wl[-2]=gospel wl[-1]=songs wl[0]=on wl[1]=spotify pos[-2]=NN pos[-1]=NNS pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=G p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Go p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=Gos p3[-1]=son p3[0]= p3[1]=Spo p4[-2]=Gosp p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=l s1[-1]=s s1[0]=n s1[1]=y s2[-2]=el s2[-1]=gs s2[0]=on s2[1]=fy s3[-2]=pel s3[-1]=ngs s3[0]= s3[1]=ify s4[-2]=spel s4[-1]=ongs s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Gospel|songs w[-1]|w[0]=songs|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NN|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Gospel w[-4..-1]=songs w[1..4]=Spotify +service w[-2]=songs w[-1]=on w[0]=Spotify wl[-2]=songs wl[-1]=on wl[0]=spotify pos[-2]=NNS pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=s s1[-1]=n s1[0]=y s2[-2]=gs s2[-1]=on s2[0]=fy s3[-2]=ngs s3[-1]= s3[0]=ify s4[-2]=ongs s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=songs|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Gospel w[-4..-1]=songs w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=Amy w[2]=Winehouse wl[0]=play wl[1]=amy wl[2]=winehouse pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=A p1[2]=W p2[0]=pl p2[1]=Am p2[2]=Wi p3[0]=pla p3[1]=Amy p3[2]=Win p4[0]=play p4[1]= p4[2]=Wine s1[0]=y s1[1]=y s1[2]=e s2[0]=ay s2[1]=my s2[2]=se s3[0]=lay s3[1]=Amy s3[2]=use s4[0]=play s4[1]= s4[2]=ouse 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Amy w[1]|w[2]=Amy|Winehouse pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Amy w[1..4]=Winehouse __BOS__ +artist w[-1]=play w[0]=Amy w[1]=Winehouse wl[-1]=play wl[0]=amy wl[1]=winehouse pos[-1]=VB pos[0]=NNP pos[1]=NNP chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=A p1[1]=W p2[-1]=pl p2[0]=Am p2[1]=Wi p3[-1]=pla p3[0]=Amy p3[1]=Win p4[-1]=play p4[0]= p4[1]=Wine s1[-1]=y s1[0]=y s1[1]=e s2[-1]=ay s2[0]=my s2[1]=se s3[-1]=lay s3[0]=Amy s3[1]=use s4[-1]=play s4[0]= s4[1]=ouse 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|Amy w[0]|w[1]=Amy|Winehouse pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Winehouse +artist w[-2]=play w[-1]=Amy w[0]=Winehouse wl[-2]=play wl[-1]=amy wl[0]=winehouse pos[-2]=VB pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=A p1[0]=W p2[-2]=pl p2[-1]=Am p2[0]=Wi p3[-2]=pla p3[-1]=Amy p3[0]=Win p4[-2]=play p4[-1]= p4[0]=Wine s1[-2]=y s1[-1]=y s1[0]=e s2[-2]=ay s2[-1]=my s2[0]=se s3[-2]=lay s3[-1]=Amy s3[0]=use s4[-2]=play s4[-1]= s4[0]=ouse 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|Amy w[-1]|w[0]=Amy|Winehouse pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Amy __EOS__ + +O w[0]=play w[1]=Dangerous w[2]=feat wl[0]=play wl[1]=dangerous wl[2]=feat pos[0]=VB pos[1]=JJ pos[2]=NN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLLL shape[2]=LLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=D p1[2]=f p2[0]=pl p2[1]=Da p2[2]=fe p3[0]=pla p3[1]=Dan p3[2]=fea p4[0]=play p4[1]=Dang p4[2]=feat s1[0]=y s1[1]=s s1[2]=t s2[0]=ay s2[1]=us s2[2]=at s3[0]=lay s3[1]=ous s3[2]=eat s4[0]=play s4[1]=rous s4[2]=feat 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Dangerous w[1]|w[2]=Dangerous|feat pos[0]|pos[1]=VB|JJ pos[1]|pos[2]=JJ|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Dangerous w[1..4]=feat w[1..4]=Sam w[1..4]=Martin __BOS__ +song w[-1]=play w[0]=Dangerous w[1]=feat w[2]=Sam wl[-1]=play wl[0]=dangerous wl[1]=feat wl[2]=sam pos[-1]=VB pos[0]=JJ pos[1]=NN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLLLL shape[1]=LLLL shape[2]=ULL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=D p1[1]=f p1[2]=S p2[-1]=pl p2[0]=Da p2[1]=fe p2[2]=Sa p3[-1]=pla p3[0]=Dan p3[1]=fea p3[2]=Sam p4[-1]=play p4[0]=Dang p4[1]=feat p4[2]= s1[-1]=y s1[0]=s s1[1]=t s1[2]=m s2[-1]=ay s2[0]=us s2[1]=at s2[2]=am s3[-1]=lay s3[0]=ous s3[1]=eat s3[2]=Sam s4[-1]=play s4[0]=rous s4[1]=feat s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Dangerous w[0]|w[1]=Dangerous|feat w[1]|w[2]=feat|Sam pos[-1]|pos[0]=VB|JJ pos[0]|pos[1]=JJ|NN pos[1]|pos[2]=NN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=feat w[1..4]=Sam w[1..4]=Martin w[1..4]=by +O w[-2]=play w[-1]=Dangerous w[0]=feat w[1]=Sam w[2]=Martin wl[-2]=play wl[-1]=dangerous wl[0]=feat wl[1]=sam wl[2]=martin pos[-2]=VB pos[-1]=JJ pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLLLL shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=D p1[0]=f p1[1]=S p1[2]=M p2[-2]=pl p2[-1]=Da p2[0]=fe p2[1]=Sa p2[2]=Ma p3[-2]=pla p3[-1]=Dan p3[0]=fea p3[1]=Sam p3[2]=Mar p4[-2]=play p4[-1]=Dang p4[0]=feat p4[1]= p4[2]=Mart s1[-2]=y s1[-1]=s s1[0]=t s1[1]=m s1[2]=n s2[-2]=ay s2[-1]=us s2[0]=at s2[1]=am s2[2]=in s3[-2]=lay s3[-1]=ous s3[0]=eat s3[1]=Sam s3[2]=tin s4[-2]=play s4[-1]=rous s4[0]=feat s4[1]= s4[2]=rtin 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Dangerous w[-1]|w[0]=Dangerous|feat w[0]|w[1]=feat|Sam w[1]|w[2]=Sam|Martin pos[-2]|pos[-1]=VB|JJ pos[-1]|pos[0]=JJ|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Dangerous w[1..4]=Sam w[1..4]=Martin w[1..4]=by w[1..4]=David +artist w[-2]=Dangerous w[-1]=feat w[0]=Sam w[1]=Martin w[2]=by wl[-2]=dangerous wl[-1]=feat wl[0]=sam wl[1]=martin wl[2]=by pos[-2]=JJ pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLLLLLLL shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=D p1[-1]=f p1[0]=S p1[1]=M p1[2]=b p2[-2]=Da p2[-1]=fe p2[0]=Sa p2[1]=Ma p2[2]=by p3[-2]=Dan p3[-1]=fea p3[0]=Sam p3[1]=Mar p3[2]= p4[-2]=Dang p4[-1]=feat p4[0]= p4[1]=Mart p4[2]= s1[-2]=s s1[-1]=t s1[0]=m s1[1]=n s1[2]=y s2[-2]=us s2[-1]=at s2[0]=am s2[1]=in s2[2]=by s3[-2]=ous s3[-1]=eat s3[0]=Sam s3[1]=tin s3[2]= s4[-2]=rous s4[-1]=feat s4[0]= s4[1]=rtin s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Dangerous|feat w[-1]|w[0]=feat|Sam w[0]|w[1]=Sam|Martin w[1]|w[2]=Martin|by pos[-2]|pos[-1]=JJ|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Dangerous w[-4..-1]=feat w[1..4]=Martin w[1..4]=by w[1..4]=David w[1..4]=Guetta +artist w[-2]=feat w[-1]=Sam w[0]=Martin w[1]=by w[2]=David wl[-2]=feat wl[-1]=sam wl[0]=martin wl[1]=by wl[2]=david pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=f p1[-1]=S p1[0]=M p1[1]=b p1[2]=D p2[-2]=fe p2[-1]=Sa p2[0]=Ma p2[1]=by p2[2]=Da p3[-2]=fea p3[-1]=Sam p3[0]=Mar p3[1]= p3[2]=Dav p4[-2]=feat p4[-1]= p4[0]=Mart p4[1]= p4[2]=Davi s1[-2]=t s1[-1]=m s1[0]=n s1[1]=y s1[2]=d s2[-2]=at s2[-1]=am s2[0]=in s2[1]=by s2[2]=id s3[-2]=eat s3[-1]=Sam s3[0]=tin s3[1]= s3[2]=vid s4[-2]=feat s4[-1]= s4[0]=rtin s4[1]= s4[2]=avid 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=feat|Sam w[-1]|w[0]=Sam|Martin w[0]|w[1]=Martin|by w[1]|w[2]=by|David pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Dangerous w[-4..-1]=feat w[-4..-1]=Sam w[1..4]=by w[1..4]=David w[1..4]=Guetta w[1..4]=song +O w[-2]=Sam w[-1]=Martin w[0]=by w[1]=David w[2]=Guetta wl[-2]=sam wl[-1]=martin wl[0]=by wl[1]=david wl[2]=guetta pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULL shape[-1]=ULLLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=S p1[-1]=M p1[0]=b p1[1]=D p1[2]=G p2[-2]=Sa p2[-1]=Ma p2[0]=by p2[1]=Da p2[2]=Gu p3[-2]=Sam p3[-1]=Mar p3[0]= p3[1]=Dav p3[2]=Gue p4[-2]= p4[-1]=Mart p4[0]= p4[1]=Davi p4[2]=Guet s1[-2]=m s1[-1]=n s1[0]=y s1[1]=d s1[2]=a s2[-2]=am s2[-1]=in s2[0]=by s2[1]=id s2[2]=ta s3[-2]=Sam s3[-1]=tin s3[0]= s3[1]=vid s3[2]=tta s4[-2]= s4[-1]=rtin s4[0]= s4[1]=avid s4[2]=etta 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Sam|Martin w[-1]|w[0]=Martin|by w[0]|w[1]=by|David w[1]|w[2]=David|Guetta pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=Dangerous w[-4..-1]=feat w[-4..-1]=Sam w[-4..-1]=Martin w[1..4]=David w[1..4]=Guetta w[1..4]=song w[1..4]=on +artist w[-2]=Martin w[-1]=by w[0]=David w[1]=Guetta w[2]=song wl[-2]=martin wl[-1]=by wl[0]=david wl[1]=guetta wl[2]=song pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NNP pos[2]=NN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=M p1[-1]=b p1[0]=D p1[1]=G p1[2]=s p2[-2]=Ma p2[-1]=by p2[0]=Da p2[1]=Gu p2[2]=so p3[-2]=Mar p3[-1]= p3[0]=Dav p3[1]=Gue p3[2]=son p4[-2]=Mart p4[-1]= p4[0]=Davi p4[1]=Guet p4[2]=song s1[-2]=n s1[-1]=y s1[0]=d s1[1]=a s1[2]=g s2[-2]=in s2[-1]=by s2[0]=id s2[1]=ta s2[2]=ng s3[-2]=tin s3[-1]= s3[0]=vid s3[1]=tta s3[2]=ong s4[-2]=rtin s4[-1]= s4[0]=avid s4[1]=etta s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Martin|by w[-1]|w[0]=by|David w[0]|w[1]=David|Guetta w[1]|w[2]=Guetta|song pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=feat w[-4..-1]=Sam w[-4..-1]=Martin w[-4..-1]=by w[1..4]=Guetta w[1..4]=song w[1..4]=on w[1..4]=Spotify +artist w[-2]=by w[-1]=David w[0]=Guetta w[1]=song w[2]=on wl[-2]=by wl[-1]=david wl[0]=guetta wl[1]=song wl[2]=on pos[-2]=IN pos[-1]=NNP pos[0]=NNP pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=b p1[-1]=D p1[0]=G p1[1]=s p1[2]=o p2[-2]=by p2[-1]=Da p2[0]=Gu p2[1]=so p2[2]=on p3[-2]= p3[-1]=Dav p3[0]=Gue p3[1]=son p3[2]= p4[-2]= p4[-1]=Davi p4[0]=Guet p4[1]=song p4[2]= s1[-2]=y s1[-1]=d s1[0]=a s1[1]=g s1[2]=n s2[-2]=by s2[-1]=id s2[0]=ta s2[1]=ng s2[2]=on s3[-2]= s3[-1]=vid s3[0]=tta s3[1]=ong s3[2]= s4[-2]= s4[-1]=avid s4[0]=etta s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|David w[-1]|w[0]=David|Guetta w[0]|w[1]=Guetta|song w[1]|w[2]=song|on pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=Sam w[-4..-1]=Martin w[-4..-1]=by w[-4..-1]=David w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=David w[-1]=Guetta w[0]=song w[1]=on w[2]=Spotify wl[-2]=david wl[-1]=guetta wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=NNP pos[-1]=NNP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=ULLLL shape[-1]=ULLLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=D p1[-1]=G p1[0]=s p1[1]=o p1[2]=S p2[-2]=Da p2[-1]=Gu p2[0]=so p2[1]=on p2[2]=Sp p3[-2]=Dav p3[-1]=Gue p3[0]=son p3[1]= p3[2]=Spo p4[-2]=Davi p4[-1]=Guet p4[0]=song p4[1]= p4[2]=Spot s1[-2]=d s1[-1]=a s1[0]=g s1[1]=n s1[2]=y s2[-2]=id s2[-1]=ta s2[0]=ng s2[1]=on s2[2]=fy s3[-2]=vid s3[-1]=tta s3[0]=ong s3[1]= s3[2]=ify s4[-2]=avid s4[-1]=etta s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=David|Guetta w[-1]|w[0]=Guetta|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Martin w[-4..-1]=by w[-4..-1]=David w[-4..-1]=Guetta w[1..4]=on w[1..4]=Spotify +O w[-2]=Guetta w[-1]=song w[0]=on w[1]=Spotify wl[-2]=guetta wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=G p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Gu p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=Gue p3[-1]=son p3[0]= p3[1]=Spo p4[-2]=Guet p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=a s1[-1]=g s1[0]=n s1[1]=y s2[-2]=ta s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]=tta s3[-1]=ong s3[0]= s3[1]=ify s4[-2]=etta s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Guetta|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=David w[-4..-1]=Guetta w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=David w[-4..-1]=Guetta w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=album w[2]=Ramones wl[0]=play wl[1]=album wl[2]=ramones pos[0]=VBP pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=R p2[0]=pl p2[1]=al p2[2]=Ra p3[0]=pla p3[1]=alb p3[2]=Ram p4[0]=play p4[1]=albu p4[2]=Ramo s1[0]=y s1[1]=m s1[2]=s s2[0]=ay s2[1]=um s2[2]=es s3[0]=lay s3[1]=bum s3[2]=nes s4[0]=play s4[1]=lbum s4[2]=ones 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Ramones pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Ramones w[1..4]=on w[1..4]=Spotify __BOS__ +O w[-1]=play w[0]=album w[1]=Ramones w[2]=on wl[-1]=play wl[0]=album wl[1]=ramones wl[2]=on pos[-1]=VBP pos[0]=NN pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=R p1[2]=o p2[-1]=pl p2[0]=al p2[1]=Ra p2[2]=on p3[-1]=pla p3[0]=alb p3[1]=Ram p3[2]= p4[-1]=play p4[0]=albu p4[1]=Ramo p4[2]= s1[-1]=y s1[0]=m s1[1]=s s1[2]=n s2[-1]=ay s2[0]=um s2[1]=es s2[2]=on s3[-1]=lay s3[0]=bum s3[1]=nes s3[2]= s4[-1]=play s4[0]=lbum s4[1]=ones s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Ramones w[1]|w[2]=Ramones|on pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Ramones w[1..4]=on w[1..4]=Spotify +album w[-2]=play w[-1]=album w[0]=Ramones w[1]=on w[2]=Spotify wl[-2]=play wl[-1]=album wl[0]=ramones wl[1]=on wl[2]=spotify pos[-2]=VBP pos[-1]=NN pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=R p1[1]=o p1[2]=S p2[-2]=pl p2[-1]=al p2[0]=Ra p2[1]=on p2[2]=Sp p3[-2]=pla p3[-1]=alb p3[0]=Ram p3[1]= p3[2]=Spo p4[-2]=play p4[-1]=albu p4[0]=Ramo p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=m s1[0]=s s1[1]=n s1[2]=y s2[-2]=ay s2[-1]=um s2[0]=es s2[1]=on s2[2]=fy s3[-2]=lay s3[-1]=bum s3[0]=nes s3[1]= s3[2]=ify s4[-2]=play s4[-1]=lbum s4[0]=ones s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Ramones w[0]|w[1]=Ramones|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=on w[1..4]=Spotify +O w[-2]=album w[-1]=Ramones w[0]=on w[1]=Spotify wl[-2]=album wl[-1]=ramones wl[0]=on wl[1]=spotify pos[-2]=NN pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLLLL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=a p1[-1]=R p1[0]=o p1[1]=S p2[-2]=al p2[-1]=Ra p2[0]=on p2[1]=Sp p3[-2]=alb p3[-1]=Ram p3[0]= p3[1]=Spo p4[-2]=albu p4[-1]=Ramo p4[0]= p4[1]=Spot s1[-2]=m s1[-1]=s s1[0]=n s1[1]=y s2[-2]=um s2[-1]=es s2[0]=on s2[1]=fy s3[-2]=bum s3[-1]=nes s3[0]= s3[1]=ify s4[-2]=lbum s4[-1]=ones s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=album|Ramones w[-1]|w[0]=Ramones|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Ramones w[1..4]=Spotify +service w[-2]=Ramones w[-1]=on w[0]=Spotify wl[-2]=ramones wl[-1]=on wl[0]=spotify pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=R p1[-1]=o p1[0]=S p2[-2]=Ra p2[-1]=on p2[0]=Sp p3[-2]=Ram p3[-1]= p3[0]=Spo p4[-2]=Ramo p4[-1]= p4[0]=Spot s1[-2]=s s1[-1]=n s1[0]=y s2[-2]=es s2[-1]=on s2[0]=fy s3[-2]=nes s3[-1]= s3[0]=ify s4[-2]=ones s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Ramones|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Ramones w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=something w[2]=by wl[0]=play wl[1]=something wl[2]=by pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLLLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=som p3[2]= p4[0]=play p4[1]=some p4[2]= s1[0]=y s1[1]=g s1[2]=y s2[0]=ay s2[1]=ng s2[2]=by s3[0]=lay s3[1]=ing s3[2]= s4[0]=play s4[1]=hing s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|something w[1]|w[2]=something|by pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=something w[1..4]=by w[1..4]=The w[1..4]=Rolling __BOS__ +O w[-1]=play w[0]=something w[1]=by w[2]=The wl[-1]=play wl[0]=something wl[1]=by wl[2]=the pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLLLLLLL shape[1]=LL shape[2]=ULL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=T p2[-1]=pl p2[0]=so p2[1]=by p2[2]=Th p3[-1]=pla p3[0]=som p3[1]= p3[2]=The p4[-1]=play p4[0]=some p4[1]= p4[2]= s1[-1]=y s1[0]=g s1[1]=y s1[2]=e s2[-1]=ay s2[0]=ng s2[1]=by s2[2]=he s3[-1]=lay s3[0]=ing s3[1]= s3[2]=The s4[-1]=play s4[0]=hing s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|something w[0]|w[1]=something|by w[1]|w[2]=by|The pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=The w[1..4]=Rolling w[1..4]=Stones +O w[-2]=play w[-1]=something w[0]=by w[1]=The w[2]=Rolling wl[-2]=play wl[-1]=something wl[0]=by wl[1]=the wl[2]=rolling pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLLLLLL shape[0]=LL shape[1]=ULL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=b p1[1]=T p1[2]=R p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=Th p2[2]=Ro p3[-2]=pla p3[-1]=som p3[0]= p3[1]=The p3[2]=Rol p4[-2]=play p4[-1]=some p4[0]= p4[1]= p4[2]=Roll s1[-2]=y s1[-1]=g s1[0]=y s1[1]=e s1[2]=g s2[-2]=ay s2[-1]=ng s2[0]=by s2[1]=he s2[2]=ng s3[-2]=lay s3[-1]=ing s3[0]= s3[1]=The s3[2]=ing s4[-2]=play s4[-1]=hing s4[0]= s4[1]= s4[2]=ling 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|something w[-1]|w[0]=something|by w[0]|w[1]=by|The w[1]|w[2]=The|Rolling pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=something w[1..4]=The w[1..4]=Rolling w[1..4]=Stones +artist w[-2]=something w[-1]=by w[0]=The w[1]=Rolling w[2]=Stones wl[-2]=something wl[-1]=by wl[0]=the wl[1]=rolling wl[2]=stones pos[-2]=NN pos[-1]=IN pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLLLLLLL shape[-1]=LL shape[0]=ULL shape[1]=ULLLLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=s p1[-1]=b p1[0]=T p1[1]=R p1[2]=S p2[-2]=so p2[-1]=by p2[0]=Th p2[1]=Ro p2[2]=St p3[-2]=som p3[-1]= p3[0]=The p3[1]=Rol p3[2]=Sto p4[-2]=some p4[-1]= p4[0]= p4[1]=Roll p4[2]=Ston s1[-2]=g s1[-1]=y s1[0]=e s1[1]=g s1[2]=s s2[-2]=ng s2[-1]=by s2[0]=he s2[1]=ng s2[2]=es s3[-2]=ing s3[-1]= s3[0]=The s3[1]=ing s3[2]=nes s4[-2]=hing s4[-1]= s4[0]= s4[1]=ling s4[2]=ones 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=something|by w[-1]|w[0]=by|The w[0]|w[1]=The|Rolling w[1]|w[2]=Rolling|Stones pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=something w[-4..-1]=by w[1..4]=Rolling w[1..4]=Stones +artist w[-2]=by w[-1]=The w[0]=Rolling w[1]=Stones wl[-2]=by wl[-1]=the wl[0]=rolling wl[1]=stones pos[-2]=IN pos[-1]=DT pos[0]=DT pos[1]=DT chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LL shape[-1]=ULL shape[0]=ULLLLLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=b p1[-1]=T p1[0]=R p1[1]=S p2[-2]=by p2[-1]=Th p2[0]=Ro p2[1]=St p3[-2]= p3[-1]=The p3[0]=Rol p3[1]=Sto p4[-2]= p4[-1]= p4[0]=Roll p4[1]=Ston s1[-2]=y s1[-1]=e s1[0]=g s1[1]=s s2[-2]=by s2[-1]=he s2[0]=ng s2[1]=es s3[-2]= s3[-1]=The s3[0]=ing s3[1]=nes s4[-2]= s4[-1]= s4[0]=ling s4[1]=ones 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=by|The w[-1]|w[0]=The|Rolling w[0]|w[1]=Rolling|Stones pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=something w[-4..-1]=by w[-4..-1]=The w[1..4]=Stones +artist w[-2]=The w[-1]=Rolling w[0]=Stones wl[-2]=the wl[-1]=rolling wl[0]=stones pos[-2]=DT pos[-1]=DT pos[0]=DT chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=ULLLLLL shape[0]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=T p1[-1]=R p1[0]=S p2[-2]=Th p2[-1]=Ro p2[0]=St p3[-2]=The p3[-1]=Rol p3[0]=Sto p4[-2]= p4[-1]=Roll p4[0]=Ston s1[-2]=e s1[-1]=g s1[0]=s s2[-2]=he s2[-1]=ng s2[0]=es s3[-2]=The s3[-1]=ing s3[0]=nes s4[-2]= s4[-1]=ling s4[0]=ones 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=The|Rolling w[-1]|w[0]=Rolling|Stones pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=something w[-4..-1]=by w[-4..-1]=The w[-4..-1]=Rolling __EOS__ + +O w[0]=play w[1]=a w[2]=song wl[0]=play wl[1]=a wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=s p2[0]=pl p2[1]= p2[2]=so p3[0]=pla p3[1]= p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=a s1[2]=g s2[0]=ay s2[1]= s2[2]=ng s3[0]=lay s3[1]= s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=song w[1..4]=on w[1..4]=Spotify __BOS__ +O w[-1]=play w[0]=a w[1]=song w[2]=on wl[-1]=play wl[0]=a wl[1]=song wl[2]=on pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=L shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=s p1[2]=o p2[-1]=pl p2[0]= p2[1]=so p2[2]=on p3[-1]=pla p3[0]= p3[1]=son p3[2]= p4[-1]=play p4[0]= p4[1]=song p4[2]= s1[-1]=y s1[0]=a s1[1]=g s1[2]=n s2[-1]=ay s2[0]= s2[1]=ng s2[2]=on s3[-1]=lay s3[0]= s3[1]=ong s3[2]= s4[-1]=play s4[0]= s4[1]=song s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|song w[1]|w[2]=song|on pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=play w[-1]=a w[0]=song w[1]=on w[2]=Spotify wl[-2]=play wl[-1]=a wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=s p1[1]=o p1[2]=S p2[-2]=pl p2[-1]= p2[0]=so p2[1]=on p2[2]=Sp p3[-2]=pla p3[-1]= p3[0]=son p3[1]= p3[2]=Spo p4[-2]=play p4[-1]= p4[0]=song p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=a s1[0]=g s1[1]=n s1[2]=y s2[-2]=ay s2[-1]= s2[0]=ng s2[1]=on s2[2]=fy s3[-2]=lay s3[-1]= s3[0]=ong s3[1]= s3[2]=ify s4[-2]=play s4[-1]= s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=a w[1..4]=on w[1..4]=Spotify +O w[-2]=a w[-1]=song w[0]=on w[1]=Spotify wl[-2]=a wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=L shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=a p1[-1]=s p1[0]=o p1[1]=S p2[-2]= p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]= p3[-1]=son p3[0]= p3[1]=Spo p4[-2]= p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=a s1[-1]=g s1[0]=n s1[1]=y s2[-2]= s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]= s3[-1]=ong s3[0]= s3[1]=ify s4[-2]= s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=a|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=some w[1..4]=music __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=some wl[-1]=can wl[0]=you wl[1]=play wl[2]=some pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=s p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=so p3[-1]=can p3[0]=you p3[1]=pla p3[2]=som p4[-1]= p4[0]= p4[1]=play p4[2]=some s1[-1]=n s1[0]=u s1[1]=y s1[2]=e s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=me s3[-1]=can s3[0]=you s3[1]=lay s3[2]=ome s4[-1]= s4[0]= s4[1]=play s4[2]=some 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|some pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=play w[1..4]=some w[1..4]=music +O w[-2]=can w[-1]=you w[0]=play w[1]=some w[2]=music wl[-2]=can wl[-1]=you wl[0]=play wl[1]=some wl[2]=music pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=s p1[2]=m p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=so p2[2]=mu p3[-2]=can p3[-1]=you p3[0]=pla p3[1]=som p3[2]=mus p4[-2]= p4[-1]= p4[0]=play p4[1]=some p4[2]=musi s1[-2]=n s1[-1]=u s1[0]=y s1[1]=e s1[2]=c s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=me s2[2]=ic s3[-2]=can s3[-1]=you s3[0]=lay s3[1]=ome s3[2]=sic s4[-2]= s4[-1]= s4[0]=play s4[1]=some s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|some w[1]|w[2]=some|music pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=some w[1..4]=music +O w[-2]=you w[-1]=play w[0]=some w[1]=music wl[-2]=you wl[-1]=play wl[0]=some wl[1]=music pos[-2]=PRP pos[-1]=VB pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=y p1[-1]=p p1[0]=s p1[1]=m p2[-2]=yo p2[-1]=pl p2[0]=so p2[1]=mu p3[-2]=you p3[-1]=pla p3[0]=som p3[1]=mus p4[-2]= p4[-1]=play p4[0]=some p4[1]=musi s1[-2]=u s1[-1]=y s1[0]=e s1[1]=c s2[-2]=ou s2[-1]=ay s2[0]=me s2[1]=ic s3[-2]=you s3[-1]=lay s3[0]=ome s3[1]=sic s4[-2]= s4[-1]=play s4[0]=some s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|some w[0]|w[1]=some|music pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[1..4]=music +O w[-2]=play w[-1]=some w[0]=music wl[-2]=play wl[-1]=some wl[0]=music pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=s p1[0]=m p2[-2]=pl p2[-1]=so p2[0]=mu p3[-2]=pla p3[-1]=som p3[0]=mus p4[-2]=play p4[-1]=some p4[0]=musi s1[-2]=y s1[-1]=e s1[0]=c s2[-2]=ay s2[-1]=me s2[0]=ic s3[-2]=lay s3[-1]=ome s3[0]=sic s4[-2]=play s4[-1]=some s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|some w[-1]|w[0]=some|music pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[-4..-1]=some __EOS__ + +O w[0]=turn w[1]=on w[2]=meditative wl[0]=turn wl[1]=on wl[2]=meditative pos[0]=VB pos[1]=RP pos[2]=JJ chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=o p1[2]=m p2[0]=tu p2[1]=on p2[2]=me p3[0]=tur p3[1]= p3[2]=med p4[0]=turn p4[1]= p4[2]=medi s1[0]=n s1[1]=n s1[2]=e s2[0]=rn s2[1]=on s2[2]=ve s3[0]=urn s3[1]= s3[2]=ive s4[0]=turn s4[1]= s4[2]=tive 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=turn|on w[1]|w[2]=on|meditative pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=meditative w[1..4]=tracks __BOS__ +O w[-1]=turn w[0]=on w[1]=meditative w[2]=tracks wl[-1]=turn wl[0]=on wl[1]=meditative wl[2]=tracks pos[-1]=VB pos[0]=RP pos[1]=JJ pos[2]=NNS chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLLLLL shape[2]=LLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=t p1[0]=o p1[1]=m p1[2]=t p2[-1]=tu p2[0]=on p2[1]=me p2[2]=tr p3[-1]=tur p3[0]= p3[1]=med p3[2]=tra p4[-1]=turn p4[0]= p4[1]=medi p4[2]=trac s1[-1]=n s1[0]=n s1[1]=e s1[2]=s s2[-1]=rn s2[0]=on s2[1]=ve s2[2]=ks s3[-1]=urn s3[0]= s3[1]=ive s3[2]=cks s4[-1]=turn s4[0]= s4[1]=tive s4[2]=acks 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=turn|on w[0]|w[1]=on|meditative w[1]|w[2]=meditative|tracks pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|JJ pos[1]|pos[2]=JJ|NNS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[1..4]=meditative w[1..4]=tracks +playlist w[-2]=turn w[-1]=on w[0]=meditative w[1]=tracks wl[-2]=turn wl[-1]=on wl[0]=meditative wl[1]=tracks pos[-2]=VB pos[-1]=RP pos[0]=JJ pos[1]=NNS chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLLLLL shape[1]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=o p1[0]=m p1[1]=t p2[-2]=tu p2[-1]=on p2[0]=me p2[1]=tr p3[-2]=tur p3[-1]= p3[0]=med p3[1]=tra p4[-2]=turn p4[-1]= p4[0]=medi p4[1]=trac s1[-2]=n s1[-1]=n s1[0]=e s1[1]=s s2[-2]=rn s2[-1]=on s2[0]=ve s2[1]=ks s3[-2]=urn s3[-1]= s3[0]=ive s3[1]=cks s4[-2]=turn s4[-1]= s4[0]=tive s4[1]=acks 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=turn|on w[-1]|w[0]=on|meditative w[0]|w[1]=meditative|tracks pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|JJ pos[0]|pos[1]=JJ|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[1..4]=tracks +O w[-2]=on w[-1]=meditative w[0]=tracks wl[-2]=on wl[-1]=meditative wl[0]=tracks pos[-2]=RP pos[-1]=JJ pos[0]=NNS chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LL shape[-1]=LLLLLLLLLL shape[0]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=m p1[0]=t p2[-2]=on p2[-1]=me p2[0]=tr p3[-2]= p3[-1]=med p3[0]=tra p4[-2]= p4[-1]=medi p4[0]=trac s1[-2]=n s1[-1]=e s1[0]=s s2[-2]=on s2[-1]=ve s2[0]=ks s3[-2]= s3[-1]=ive s3[0]=cks s4[-2]= s4[-1]=tive s4[0]=acks 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=on|meditative w[-1]|w[0]=meditative|tracks pos[-2]|pos[-1]=RP|JJ pos[-1]|pos[0]=JJ|NNS chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=meditative __EOS__ + +O w[0]=play w[1]=the w[2]=song wl[0]=play wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=the p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=he s2[2]=ng s3[0]=lay s3[1]=the s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song w[1..4]=Encantadora __BOS__ +O w[-1]=play w[0]=the w[1]=song w[2]=Encantadora wl[-1]=play wl[0]=the wl[1]=song wl[2]=encantadora pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=s p1[2]=E p2[-1]=pl p2[0]=th p2[1]=so p2[2]=En p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Enc p4[-1]=play p4[0]= p4[1]=song p4[2]=Enca s1[-1]=y s1[0]=e s1[1]=g s1[2]=a s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=ra s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ora s4[-1]=play s4[0]= s4[1]=song s4[2]=dora 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Encantadora pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Encantadora +O w[-2]=play w[-1]=the w[0]=song w[1]=Encantadora wl[-2]=play wl[-1]=the wl[0]=song wl[1]=encantadora pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=t p1[0]=s p1[1]=E p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=En p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Enc p4[-2]=play p4[-1]= p4[0]=song p4[1]=Enca s1[-2]=y s1[-1]=e s1[0]=g s1[1]=a s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=ra s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ora s4[-2]=play s4[-1]= s4[0]=song s4[1]=dora 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Encantadora pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[1..4]=Encantadora +song w[-2]=the w[-1]=song w[0]=Encantadora wl[-2]=the wl[-1]=song wl[0]=encantadora pos[-2]=DT pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=s p1[0]=E p2[-2]=th p2[-1]=so p2[0]=En p3[-2]=the p3[-1]=son p3[0]=Enc p4[-2]= p4[-1]=song p4[0]=Enca s1[-2]=e s1[-1]=g s1[0]=a s2[-2]=he s2[-1]=ng s2[0]=ra s3[-2]=the s3[-1]=ong s3[0]=ora s4[-2]= s4[-1]=song s4[0]=dora 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Encantadora pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song __EOS__ + +O w[0]=play w[1]=my w[2]=workout wl[0]=play wl[1]=my wl[2]=workout pos[0]=VB pos[1]=PRP$ pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=w p2[0]=pl p2[1]=my p2[2]=wo p3[0]=pla p3[1]= p3[2]=wor p4[0]=play p4[1]= p4[2]=work s1[0]=y s1[1]=y s1[2]=t s2[0]=ay s2[1]=my s2[2]=ut s3[0]=lay s3[1]= s3[2]=out s4[0]=play s4[1]= s4[2]=kout 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|my w[1]|w[2]=my|workout pos[0]|pos[1]=VB|PRP$ pos[1]|pos[2]=PRP$|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=my w[1..4]=workout w[1..4]=playlist __BOS__ +O w[-1]=play w[0]=my w[1]=workout w[2]=playlist wl[-1]=play wl[0]=my wl[1]=workout wl[2]=playlist pos[-1]=VB pos[0]=PRP$ pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLL shape[2]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=m p1[1]=w p1[2]=p p2[-1]=pl p2[0]=my p2[1]=wo p2[2]=pl p3[-1]=pla p3[0]= p3[1]=wor p3[2]=pla p4[-1]=play p4[0]= p4[1]=work p4[2]=play s1[-1]=y s1[0]=y s1[1]=t s1[2]=t s2[-1]=ay s2[0]=my s2[1]=ut s2[2]=st s3[-1]=lay s3[0]= s3[1]=out s3[2]=ist s4[-1]=play s4[0]= s4[1]=kout s4[2]=list 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|my w[0]|w[1]=my|workout w[1]|w[2]=workout|playlist pos[-1]|pos[0]=VB|PRP$ pos[0]|pos[1]=PRP$|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=workout w[1..4]=playlist +playlist w[-2]=play w[-1]=my w[0]=workout w[1]=playlist wl[-2]=play wl[-1]=my wl[0]=workout wl[1]=playlist pos[-2]=VB pos[-1]=PRP$ pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=m p1[0]=w p1[1]=p p2[-2]=pl p2[-1]=my p2[0]=wo p2[1]=pl p3[-2]=pla p3[-1]= p3[0]=wor p3[1]=pla p4[-2]=play p4[-1]= p4[0]=work p4[1]=play s1[-2]=y s1[-1]=y s1[0]=t s1[1]=t s2[-2]=ay s2[-1]=my s2[0]=ut s2[1]=st s3[-2]=lay s3[-1]= s3[0]=out s3[1]=ist s4[-2]=play s4[-1]= s4[0]=kout s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|my w[-1]|w[0]=my|workout w[0]|w[1]=workout|playlist pos[-2]|pos[-1]=VB|PRP$ pos[-1]|pos[0]=PRP$|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=my w[1..4]=playlist +O w[-2]=my w[-1]=workout w[0]=playlist wl[-2]=my wl[-1]=workout wl[0]=playlist pos[-2]=PRP$ pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LL shape[-1]=LLLLLLL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=w p1[0]=p p2[-2]=my p2[-1]=wo p2[0]=pl p3[-2]= p3[-1]=wor p3[0]=pla p4[-2]= p4[-1]=work p4[0]=play s1[-2]=y s1[-1]=t s1[0]=t s2[-2]=my s2[-1]=ut s2[0]=st s3[-2]= s3[-1]=out s3[0]=ist s4[-2]= s4[-1]=kout s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=my|workout w[-1]|w[0]=workout|playlist pos[-2]|pos[-1]=PRP$|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=my w[-4..-1]=workout __EOS__ + +O w[0]=turn w[1]=on w[2]=a wl[0]=turn wl[1]=on wl[2]=a pos[0]=VB pos[1]=RP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=L shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=o p1[2]=a p2[0]=tu p2[1]=on p2[2]= p3[0]=tur p3[1]= p3[2]= p4[0]=turn p4[1]= p4[2]= s1[0]=n s1[1]=n s1[2]=a s2[0]=rn s2[1]=on s2[2]= s3[0]=urn s3[1]= s3[2]= s4[0]=turn s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=turn|on w[1]|w[2]=on|a pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=a w[1..4]=song __BOS__ +O w[-1]=turn w[0]=on w[1]=a w[2]=song wl[-1]=turn wl[0]=on wl[1]=a wl[2]=song pos[-1]=VB pos[0]=RP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=L shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=t p1[0]=o p1[1]=a p1[2]=s p2[-1]=tu p2[0]=on p2[1]= p2[2]=so p3[-1]=tur p3[0]= p3[1]= p3[2]=son p4[-1]=turn p4[0]= p4[1]= p4[2]=song s1[-1]=n s1[0]=n s1[1]=a s1[2]=g s2[-1]=rn s2[0]=on s2[1]= s2[2]=ng s3[-1]=urn s3[0]= s3[1]= s3[2]=ong s4[-1]=turn s4[0]= s4[1]= s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=turn|on w[0]|w[1]=on|a w[1]|w[2]=a|song pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[1..4]=a w[1..4]=song +O w[-2]=turn w[-1]=on w[0]=a w[1]=song wl[-2]=turn wl[-1]=on wl[0]=a wl[1]=song pos[-2]=VB pos[-1]=RP pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=L shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=o p1[0]=a p1[1]=s p2[-2]=tu p2[-1]=on p2[0]= p2[1]=so p3[-2]=tur p3[-1]= p3[0]= p3[1]=son p4[-2]=turn p4[-1]= p4[0]= p4[1]=song s1[-2]=n s1[-1]=n s1[0]=a s1[1]=g s2[-2]=rn s2[-1]=on s2[0]= s2[1]=ng s3[-2]=urn s3[-1]= s3[0]= s3[1]=ong s4[-2]=turn s4[-1]= s4[0]= s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=turn|on w[-1]|w[0]=on|a w[0]|w[1]=a|song pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[1..4]=song +O w[-2]=on w[-1]=a w[0]=song wl[-2]=on wl[-1]=a wl[0]=song pos[-2]=RP pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=L shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=a p1[0]=s p2[-2]=on p2[-1]= p2[0]=so p3[-2]= p3[-1]= p3[0]=son p4[-2]= p4[-1]= p4[0]=song s1[-2]=n s1[-1]=a s1[0]=g s2[-2]=on s2[-1]= s2[0]=ng s3[-2]= s3[-1]= s3[0]=ong s4[-2]= s4[-1]= s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=on|a w[-1]|w[0]=a|song pos[-2]|pos[-1]=RP|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=a __EOS__ + +O w[0]=play w[1]=greatest w[2]=hits wl[0]=play wl[1]=greatest wl[2]=hits pos[0]=VB pos[1]=JJS pos[2]=NNS chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=LLLLLLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=g p1[2]=h p2[0]=pl p2[1]=gr p2[2]=hi p3[0]=pla p3[1]=gre p3[2]=hit p4[0]=play p4[1]=grea p4[2]=hits s1[0]=y s1[1]=t s1[2]=s s2[0]=ay s2[1]=st s2[2]=ts s3[0]=lay s3[1]=est s3[2]=its s4[0]=play s4[1]=test s4[2]=hits 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|greatest w[1]|w[2]=greatest|hits pos[0]|pos[1]=VB|JJS pos[1]|pos[2]=JJS|NNS chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=greatest w[1..4]=hits w[1..4]=by w[1..4]=Metallica __BOS__ +sort w[-1]=play w[0]=greatest w[1]=hits w[2]=by wl[-1]=play wl[0]=greatest wl[1]=hits wl[2]=by pos[-1]=VB pos[0]=JJS pos[1]=NNS pos[2]=IN chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLLLLLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=g p1[1]=h p1[2]=b p2[-1]=pl p2[0]=gr p2[1]=hi p2[2]=by p3[-1]=pla p3[0]=gre p3[1]=hit p3[2]= p4[-1]=play p4[0]=grea p4[1]=hits p4[2]= s1[-1]=y s1[0]=t s1[1]=s s1[2]=y s2[-1]=ay s2[0]=st s2[1]=ts s2[2]=by s3[-1]=lay s3[0]=est s3[1]=its s3[2]= s4[-1]=play s4[0]=test s4[1]=hits s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|greatest w[0]|w[1]=greatest|hits w[1]|w[2]=hits|by pos[-1]|pos[0]=VB|JJS pos[0]|pos[1]=JJS|NNS pos[1]|pos[2]=NNS|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=hits w[1..4]=by w[1..4]=Metallica +O w[-2]=play w[-1]=greatest w[0]=hits w[1]=by w[2]=Metallica wl[-2]=play wl[-1]=greatest wl[0]=hits wl[1]=by wl[2]=metallica pos[-2]=VB pos[-1]=JJS pos[0]=NNS pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLLLLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=g p1[0]=h p1[1]=b p1[2]=M p2[-2]=pl p2[-1]=gr p2[0]=hi p2[1]=by p2[2]=Me p3[-2]=pla p3[-1]=gre p3[0]=hit p3[1]= p3[2]=Met p4[-2]=play p4[-1]=grea p4[0]=hits p4[1]= p4[2]=Meta s1[-2]=y s1[-1]=t s1[0]=s s1[1]=y s1[2]=a s2[-2]=ay s2[-1]=st s2[0]=ts s2[1]=by s2[2]=ca s3[-2]=lay s3[-1]=est s3[0]=its s3[1]= s3[2]=ica s4[-2]=play s4[-1]=test s4[0]=hits s4[1]= s4[2]=lica 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|greatest w[-1]|w[0]=greatest|hits w[0]|w[1]=hits|by w[1]|w[2]=by|Metallica pos[-2]|pos[-1]=VB|JJS pos[-1]|pos[0]=JJS|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=greatest w[1..4]=by w[1..4]=Metallica +O w[-2]=greatest w[-1]=hits w[0]=by w[1]=Metallica wl[-2]=greatest wl[-1]=hits wl[0]=by wl[1]=metallica pos[-2]=JJS pos[-1]=NNS pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLLLLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=g p1[-1]=h p1[0]=b p1[1]=M p2[-2]=gr p2[-1]=hi p2[0]=by p2[1]=Me p3[-2]=gre p3[-1]=hit p3[0]= p3[1]=Met p4[-2]=grea p4[-1]=hits p4[0]= p4[1]=Meta s1[-2]=t s1[-1]=s s1[0]=y s1[1]=a s2[-2]=st s2[-1]=ts s2[0]=by s2[1]=ca s3[-2]=est s3[-1]=its s3[0]= s3[1]=ica s4[-2]=test s4[-1]=hits s4[0]= s4[1]=lica 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=greatest|hits w[-1]|w[0]=hits|by w[0]|w[1]=by|Metallica pos[-2]|pos[-1]=JJS|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=greatest w[-4..-1]=hits w[1..4]=Metallica +artist w[-2]=hits w[-1]=by w[0]=Metallica wl[-2]=hits wl[-1]=by wl[0]=metallica pos[-2]=NNS pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=h p1[-1]=b p1[0]=M p2[-2]=hi p2[-1]=by p2[0]=Me p3[-2]=hit p3[-1]= p3[0]=Met p4[-2]=hits p4[-1]= p4[0]=Meta s1[-2]=s s1[-1]=y s1[0]=a s2[-2]=ts s2[-1]=by s2[0]=ca s3[-2]=its s3[-1]= s3[0]=ica s4[-2]=hits s4[-1]= s4[0]=lica 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=hits|by w[-1]|w[0]=by|Metallica pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=greatest w[-4..-1]=hits w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=album w[2]=London wl[0]=play wl[1]=album wl[2]=london pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=L p2[0]=pl p2[1]=al p2[2]=Lo p3[0]=pla p3[1]=alb p3[2]=Lon p4[0]=play p4[1]=albu p4[2]=Lond s1[0]=y s1[1]=m s1[2]=n s2[0]=ay s2[1]=um s2[2]=on s3[0]=lay s3[1]=bum s3[2]=don s4[0]=play s4[1]=lbum s4[2]=ndon 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|London pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=London w[1..4]=calling w[1..4]=by __BOS__ +O w[-1]=play w[0]=album w[1]=London w[2]=calling wl[-1]=play wl[0]=album wl[1]=london wl[2]=calling pos[-1]=VB pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLL shape[2]=LLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=L p1[2]=c p2[-1]=pl p2[0]=al p2[1]=Lo p2[2]=ca p3[-1]=pla p3[0]=alb p3[1]=Lon p3[2]=cal p4[-1]=play p4[0]=albu p4[1]=Lond p4[2]=call s1[-1]=y s1[0]=m s1[1]=n s1[2]=g s2[-1]=ay s2[0]=um s2[1]=on s2[2]=ng s3[-1]=lay s3[0]=bum s3[1]=don s3[2]=ing s4[-1]=play s4[0]=lbum s4[1]=ndon s4[2]=ling 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|London w[1]|w[2]=London|calling pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=London w[1..4]=calling w[1..4]=by w[1..4]=The +album w[-2]=play w[-1]=album w[0]=London w[1]=calling w[2]=by wl[-2]=play wl[-1]=album wl[0]=london wl[1]=calling wl[2]=by pos[-2]=VB pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLL shape[1]=LLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=L p1[1]=c p1[2]=b p2[-2]=pl p2[-1]=al p2[0]=Lo p2[1]=ca p2[2]=by p3[-2]=pla p3[-1]=alb p3[0]=Lon p3[1]=cal p3[2]= p4[-2]=play p4[-1]=albu p4[0]=Lond p4[1]=call p4[2]= s1[-2]=y s1[-1]=m s1[0]=n s1[1]=g s1[2]=y s2[-2]=ay s2[-1]=um s2[0]=on s2[1]=ng s2[2]=by s3[-2]=lay s3[-1]=bum s3[0]=don s3[1]=ing s3[2]= s4[-2]=play s4[-1]=lbum s4[0]=ndon s4[1]=ling s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|London w[0]|w[1]=London|calling w[1]|w[2]=calling|by pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[1..4]=calling w[1..4]=by w[1..4]=The w[1..4]=Clash +album w[-2]=album w[-1]=London w[0]=calling w[1]=by w[2]=The wl[-2]=album wl[-1]=london wl[0]=calling wl[1]=by wl[2]=the pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLLL shape[-1]=ULLLLL shape[0]=LLLLLLL shape[1]=LL shape[2]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=a p1[-1]=L p1[0]=c p1[1]=b p1[2]=T p2[-2]=al p2[-1]=Lo p2[0]=ca p2[1]=by p2[2]=Th p3[-2]=alb p3[-1]=Lon p3[0]=cal p3[1]= p3[2]=The p4[-2]=albu p4[-1]=Lond p4[0]=call p4[1]= p4[2]= s1[-2]=m s1[-1]=n s1[0]=g s1[1]=y s1[2]=e s2[-2]=um s2[-1]=on s2[0]=ng s2[1]=by s2[2]=he s3[-2]=bum s3[-1]=don s3[0]=ing s3[1]= s3[2]=The s4[-2]=lbum s4[-1]=ndon s4[0]=ling s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|London w[-1]|w[0]=London|calling w[0]|w[1]=calling|by w[1]|w[2]=by|The pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=London w[1..4]=by w[1..4]=The w[1..4]=Clash +O w[-2]=London w[-1]=calling w[0]=by w[1]=The w[2]=Clash wl[-2]=london wl[-1]=calling wl[0]=by wl[1]=the wl[2]=clash pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=DT pos[2]=DT chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLLLL shape[-1]=LLLLLLL shape[0]=LL shape[1]=ULL shape[2]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=L p1[-1]=c p1[0]=b p1[1]=T p1[2]=C p2[-2]=Lo p2[-1]=ca p2[0]=by p2[1]=Th p2[2]=Cl p3[-2]=Lon p3[-1]=cal p3[0]= p3[1]=The p3[2]=Cla p4[-2]=Lond p4[-1]=call p4[0]= p4[1]= p4[2]=Clas s1[-2]=n s1[-1]=g s1[0]=y s1[1]=e s1[2]=h s2[-2]=on s2[-1]=ng s2[0]=by s2[1]=he s2[2]=sh s3[-2]=don s3[-1]=ing s3[0]= s3[1]=The s3[2]=ash s4[-2]=ndon s4[-1]=ling s4[0]= s4[1]= s4[2]=lash 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=London|calling w[-1]|w[0]=calling|by w[0]|w[1]=by|The w[1]|w[2]=The|Clash pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=London w[-4..-1]=calling w[1..4]=The w[1..4]=Clash +artist w[-2]=calling w[-1]=by w[0]=The w[1]=Clash wl[-2]=calling wl[-1]=by wl[0]=the wl[1]=clash pos[-2]=NNP pos[-1]=IN pos[0]=DT pos[1]=DT chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLLL shape[-1]=LL shape[0]=ULL shape[1]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=c p1[-1]=b p1[0]=T p1[1]=C p2[-2]=ca p2[-1]=by p2[0]=Th p2[1]=Cl p3[-2]=cal p3[-1]= p3[0]=The p3[1]=Cla p4[-2]=call p4[-1]= p4[0]= p4[1]=Clas s1[-2]=g s1[-1]=y s1[0]=e s1[1]=h s2[-2]=ng s2[-1]=by s2[0]=he s2[1]=sh s3[-2]=ing s3[-1]= s3[0]=The s3[1]=ash s4[-2]=ling s4[-1]= s4[0]= s4[1]=lash 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=calling|by w[-1]|w[0]=by|The w[0]|w[1]=The|Clash pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|DT chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=album w[-4..-1]=London w[-4..-1]=calling w[-4..-1]=by w[1..4]=Clash +artist w[-2]=by w[-1]=The w[0]=Clash wl[-2]=by wl[-1]=the wl[0]=clash pos[-2]=IN pos[-1]=DT pos[0]=DT chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=T p1[0]=C p2[-2]=by p2[-1]=Th p2[0]=Cl p3[-2]= p3[-1]=The p3[0]=Cla p4[-2]= p4[-1]= p4[0]=Clas s1[-2]=y s1[-1]=e s1[0]=h s2[-2]=by s2[-1]=he s2[0]=sh s3[-2]= s3[-1]=The s3[0]=ash s4[-2]= s4[-1]= s4[0]=lash 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|The w[-1]|w[0]=The|Clash pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=London w[-4..-1]=calling w[-4..-1]=by w[-4..-1]=The __EOS__ + +O w[0]=play w[1]=the w[2]=song wl[0]=play wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=the p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=he s2[2]=ng s3[0]=lay s3[1]=the s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song w[1..4]=Bird __BOS__ +O w[-1]=play w[0]=the w[1]=song w[2]=Bird wl[-1]=play wl[0]=the wl[1]=song wl[2]=bird pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=s p1[2]=B p2[-1]=pl p2[0]=th p2[1]=so p2[2]=Bi p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Bir p4[-1]=play p4[0]= p4[1]=song p4[2]=Bird s1[-1]=y s1[0]=e s1[1]=g s1[2]=d s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=rd s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ird s4[-1]=play s4[0]= s4[1]=song s4[2]=Bird 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Bird pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Bird +O w[-2]=play w[-1]=the w[0]=song w[1]=Bird wl[-2]=play wl[-1]=the wl[0]=song wl[1]=bird pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=t p1[0]=s p1[1]=B p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=Bi p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Bir p4[-2]=play p4[-1]= p4[0]=song p4[1]=Bird s1[-2]=y s1[-1]=e s1[0]=g s1[1]=d s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=rd s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ird s4[-2]=play s4[-1]= s4[0]=song s4[1]=Bird 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Bird pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[1..4]=Bird +song w[-2]=the w[-1]=song w[0]=Bird wl[-2]=the wl[-1]=song wl[0]=bird pos[-2]=DT pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=s p1[0]=B p2[-2]=th p2[-1]=so p2[0]=Bi p3[-2]=the p3[-1]=son p3[0]=Bir p4[-2]= p4[-1]=song p4[0]=Bird s1[-2]=e s1[-1]=g s1[0]=d s2[-2]=he s2[-1]=ng s2[0]=rd s3[-2]=the s3[-1]=ong s3[0]=ird s4[-2]= s4[-1]=song s4[0]=Bird 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Bird pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song __EOS__ + +O w[0]=play w[1]=Maroon w[2]=5 wl[0]=play wl[1]=maroon wl[2]=5 pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLL shape[2]=D shaped[0]=L shaped[1]=UL shaped[2]=D type[0]=AllLetter type[1]=InitUpper type[2]=AllDigit p1[0]=p p1[1]=M p1[2]=5 p2[0]=pl p2[1]=Ma p2[2]= p3[0]=pla p3[1]=Mar p3[2]= p4[0]=play p4[1]=Maro p4[2]= s1[0]=y s1[1]=n s1[2]=5 s2[0]=ay s2[1]=on s2[2]= s3[0]=lay s3[1]=oon s3[2]= s4[0]=play s4[1]=roon s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=yes ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=no cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Maroon w[1]|w[2]=Maroon|5 pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|D type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllDigit w[1..4]=Maroon w[1..4]=5 __BOS__ +artist w[-1]=play w[0]=Maroon w[1]=5 wl[-1]=play wl[0]=maroon wl[1]=5 pos[-1]=VB pos[0]=NN pos[1]=NN chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULLLLL shape[1]=D shaped[-1]=L shaped[0]=UL shaped[1]=D type[-1]=AllLetter type[0]=InitUpper type[1]=AllDigit p1[-1]=p p1[0]=M p1[1]=5 p2[-1]=pl p2[0]=Ma p2[1]= p3[-1]=pla p3[0]=Mar p3[1]= p4[-1]=play p4[0]=Maro p4[1]= s1[-1]=y s1[0]=n s1[1]=5 s2[-1]=ay s2[0]=on s2[1]= s3[-1]=lay s3[0]=oon s3[1]= s4[-1]=play s4[0]=roon s4[1]= 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=yes ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=no ca[-1]=yes ca[0]=yes ca[1]=no cd[-1]=no cd[0]=yes cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|Maroon w[0]|w[1]=Maroon|5 pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|D type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllDigit w[-4..-1]=play w[1..4]=5 +artist w[-2]=play w[-1]=Maroon w[0]=5 wl[-2]=play wl[-1]=maroon wl[0]=5 pos[-2]=VB pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=D shaped[-2]=L shaped[-1]=UL shaped[0]=D type[-2]=AllLetter type[-1]=InitUpper type[0]=AllDigit p1[-2]=p p1[-1]=M p1[0]=5 p2[-2]=pl p2[-1]=Ma p2[0]= p3[-2]=pla p3[-1]=Mar p3[0]= p4[-2]=play p4[-1]=Maro p4[0]= s1[-2]=y s1[-1]=n s1[0]=5 s2[-2]=ay s2[-1]=on s2[0]= s3[-2]=lay s3[-1]=oon s3[0]= s4[-2]=play s4[-1]=roon s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=yes ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=no ca[-2]=yes ca[-1]=yes ca[0]=no cd[-2]=no cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|Maroon w[-1]|w[0]=Maroon|5 pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|D type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllDigit w[-4..-1]=play w[-4..-1]=Maroon __EOS__ + +O w[0]=play w[1]=songs w[2]=from wl[0]=play wl[1]=songs wl[2]=from pos[0]=VBP pos[1]=NNS pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=f p2[0]=pl p2[1]=so p2[2]=fr p3[0]=pla p3[1]=son p3[2]=fro p4[0]=play p4[1]=song p4[2]=from s1[0]=y s1[1]=s s1[2]=m s2[0]=ay s2[1]=gs s2[2]=om s3[0]=lay s3[1]=ngs s3[2]=rom s4[0]=play s4[1]=ongs s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|songs w[1]|w[2]=songs|from pos[0]|pos[1]=VBP|NNS pos[1]|pos[2]=NNS|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=songs w[1..4]=from w[1..4]=playlist w[1..4]=Hot __BOS__ +O w[-1]=play w[0]=songs w[1]=from w[2]=playlist wl[-1]=play wl[0]=songs wl[1]=from wl[2]=playlist pos[-1]=VBP pos[0]=NNS pos[1]=IN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLLL shape[2]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=f p1[2]=p p2[-1]=pl p2[0]=so p2[1]=fr p2[2]=pl p3[-1]=pla p3[0]=son p3[1]=fro p3[2]=pla p4[-1]=play p4[0]=song p4[1]=from p4[2]=play s1[-1]=y s1[0]=s s1[1]=m s1[2]=t s2[-1]=ay s2[0]=gs s2[1]=om s2[2]=st s3[-1]=lay s3[0]=ngs s3[1]=rom s3[2]=ist s4[-1]=play s4[0]=ongs s4[1]=from s4[2]=list 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|songs w[0]|w[1]=songs|from w[1]|w[2]=from|playlist pos[-1]|pos[0]=VBP|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=from w[1..4]=playlist w[1..4]=Hot w[1..4]=Hits +O w[-2]=play w[-1]=songs w[0]=from w[1]=playlist w[2]=Hot wl[-2]=play wl[-1]=songs wl[0]=from wl[1]=playlist wl[2]=hot pos[-2]=VBP pos[-1]=NNS pos[0]=IN pos[1]=NN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLLL shape[1]=LLLLLLLL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=f p1[1]=p p1[2]=H p2[-2]=pl p2[-1]=so p2[0]=fr p2[1]=pl p2[2]=Ho p3[-2]=pla p3[-1]=son p3[0]=fro p3[1]=pla p3[2]=Hot p4[-2]=play p4[-1]=song p4[0]=from p4[1]=play p4[2]= s1[-2]=y s1[-1]=s s1[0]=m s1[1]=t s1[2]=t s2[-2]=ay s2[-1]=gs s2[0]=om s2[1]=st s2[2]=ot s3[-2]=lay s3[-1]=ngs s3[0]=rom s3[1]=ist s3[2]=Hot s4[-2]=play s4[-1]=ongs s4[0]=from s4[1]=list s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|songs w[-1]|w[0]=songs|from w[0]|w[1]=from|playlist w[1]|w[2]=playlist|Hot pos[-2]|pos[-1]=VBP|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NN pos[1]|pos[2]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=songs w[1..4]=playlist w[1..4]=Hot w[1..4]=Hits w[1..4]=UK +O w[-2]=songs w[-1]=from w[0]=playlist w[1]=Hot w[2]=Hits wl[-2]=songs wl[-1]=from wl[0]=playlist wl[1]=hot wl[2]=hits pos[-2]=NNS pos[-1]=IN pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLLL shape[-1]=LLLL shape[0]=LLLLLLLL shape[1]=ULL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=s p1[-1]=f p1[0]=p p1[1]=H p1[2]=H p2[-2]=so p2[-1]=fr p2[0]=pl p2[1]=Ho p2[2]=Hi p3[-2]=son p3[-1]=fro p3[0]=pla p3[1]=Hot p3[2]=Hit p4[-2]=song p4[-1]=from p4[0]=play p4[1]= p4[2]=Hits s1[-2]=s s1[-1]=m s1[0]=t s1[1]=t s1[2]=s s2[-2]=gs s2[-1]=om s2[0]=st s2[1]=ot s2[2]=ts s3[-2]=ngs s3[-1]=rom s3[0]=ist s3[1]=Hot s3[2]=its s4[-2]=ongs s4[-1]=from s4[0]=list s4[1]= s4[2]=Hits 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=songs|from w[-1]|w[0]=from|playlist w[0]|w[1]=playlist|Hot w[1]|w[2]=Hot|Hits pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=songs w[-4..-1]=from w[1..4]=Hot w[1..4]=Hits w[1..4]=UK +playlist w[-2]=from w[-1]=playlist w[0]=Hot w[1]=Hits w[2]=UK wl[-2]=from wl[-1]=playlist wl[0]=hot wl[1]=hits wl[2]=uk pos[-2]=IN pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLLLLL shape[0]=ULL shape[1]=ULLL shape[2]=UU shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=U type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllUpper p1[-2]=f p1[-1]=p p1[0]=H p1[1]=H p1[2]=U p2[-2]=fr p2[-1]=pl p2[0]=Ho p2[1]=Hi p2[2]=UK p3[-2]=fro p3[-1]=pla p3[0]=Hot p3[1]=Hit p3[2]= p4[-2]=from p4[-1]=play p4[0]= p4[1]=Hits p4[2]= s1[-2]=m s1[-1]=t s1[0]=t s1[1]=s s1[2]=K s2[-2]=om s2[-1]=st s2[0]=ot s2[1]=ts s2[2]=UK s3[-2]=rom s3[-1]=ist s3[0]=Hot s3[1]=its s3[2]= s4[-2]=from s4[-1]=list s4[0]= s4[1]=Hits s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=yes al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=from|playlist w[-1]|w[0]=playlist|Hot w[0]|w[1]=Hot|Hits w[1]|w[2]=Hits|UK pos[-2]|pos[-1]=IN|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|U type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllUpper w[-4..-1]=play w[-4..-1]=songs w[-4..-1]=from w[-4..-1]=playlist w[1..4]=Hits w[1..4]=UK +playlist w[-2]=playlist w[-1]=Hot w[0]=Hits w[1]=UK wl[-2]=playlist wl[-1]=hot wl[0]=hits wl[1]=uk pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLLLLLL shape[-1]=ULL shape[0]=ULLL shape[1]=UU shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=U type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllUpper p1[-2]=p p1[-1]=H p1[0]=H p1[1]=U p2[-2]=pl p2[-1]=Ho p2[0]=Hi p2[1]=UK p3[-2]=pla p3[-1]=Hot p3[0]=Hit p3[1]= p4[-2]=play p4[-1]= p4[0]=Hits p4[1]= s1[-2]=t s1[-1]=t s1[0]=s s1[1]=K s2[-2]=st s2[-1]=ot s2[0]=ts s2[1]=UK s3[-2]=ist s3[-1]=Hot s3[0]=its s3[1]= s4[-2]=list s4[-1]= s4[0]=Hits s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=yes al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=no ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=playlist|Hot w[-1]|w[0]=Hot|Hits w[0]|w[1]=Hits|UK pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|U type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllUpper w[-4..-1]=songs w[-4..-1]=from w[-4..-1]=playlist w[-4..-1]=Hot w[1..4]=UK +playlist w[-2]=Hot w[-1]=Hits w[0]=UK wl[-2]=hot wl[-1]=hits wl[0]=uk pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=ULLL shape[0]=UU shaped[-2]=UL shaped[-1]=UL shaped[0]=U type[-2]=InitUpper type[-1]=InitUpper type[0]=AllUpper p1[-2]=H p1[-1]=H p1[0]=U p2[-2]=Ho p2[-1]=Hi p2[0]=UK p3[-2]=Hot p3[-1]=Hit p3[0]= p4[-2]= p4[-1]=Hits p4[0]= s1[-2]=t s1[-1]=s s1[0]=K s2[-2]=ot s2[-1]=ts s2[0]=UK s3[-2]=Hot s3[-1]=its s3[0]= s4[-2]= s4[-1]=Hits s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=yes al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=no ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Hot|Hits w[-1]|w[0]=Hits|UK pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|U type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllUpper w[-4..-1]=from w[-4..-1]=playlist w[-4..-1]=Hot w[-4..-1]=Hits __EOS__ + +O w[0]=play w[1]=some w[2]=relaxing wl[0]=play wl[1]=some wl[2]=relaxing pos[0]=VB pos[1]=DT pos[2]=VBG chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=r p2[0]=pl p2[1]=so p2[2]=re p3[0]=pla p3[1]=som p3[2]=rel p4[0]=play p4[1]=some p4[2]=rela s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=me s2[2]=ng s3[0]=lay s3[1]=ome s3[2]=ing s4[0]=play s4[1]=some s4[2]=xing 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|some w[1]|w[2]=some|relaxing pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|VBG chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=some w[1..4]=relaxing w[1..4]=music __BOS__ +O w[-1]=play w[0]=some w[1]=relaxing w[2]=music wl[-1]=play wl[0]=some wl[1]=relaxing wl[2]=music pos[-1]=VB pos[0]=DT pos[1]=VBG pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLLLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=r p1[2]=m p2[-1]=pl p2[0]=so p2[1]=re p2[2]=mu p3[-1]=pla p3[0]=som p3[1]=rel p3[2]=mus p4[-1]=play p4[0]=some p4[1]=rela p4[2]=musi s1[-1]=y s1[0]=e s1[1]=g s1[2]=c s2[-1]=ay s2[0]=me s2[1]=ng s2[2]=ic s3[-1]=lay s3[0]=ome s3[1]=ing s3[2]=sic s4[-1]=play s4[0]=some s4[1]=xing s4[2]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|some w[0]|w[1]=some|relaxing w[1]|w[2]=relaxing|music pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|VBG pos[1]|pos[2]=VBG|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=relaxing w[1..4]=music +genre w[-2]=play w[-1]=some w[0]=relaxing w[1]=music wl[-2]=play wl[-1]=some wl[0]=relaxing wl[1]=music pos[-2]=VB pos[-1]=DT pos[0]=VBG pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=s p1[0]=r p1[1]=m p2[-2]=pl p2[-1]=so p2[0]=re p2[1]=mu p3[-2]=pla p3[-1]=som p3[0]=rel p3[1]=mus p4[-2]=play p4[-1]=some p4[0]=rela p4[1]=musi s1[-2]=y s1[-1]=e s1[0]=g s1[1]=c s2[-2]=ay s2[-1]=me s2[0]=ng s2[1]=ic s3[-2]=lay s3[-1]=ome s3[0]=ing s3[1]=sic s4[-2]=play s4[-1]=some s4[0]=xing s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|some w[-1]|w[0]=some|relaxing w[0]|w[1]=relaxing|music pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|VBG pos[0]|pos[1]=VBG|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[1..4]=music +O w[-2]=some w[-1]=relaxing w[0]=music wl[-2]=some wl[-1]=relaxing wl[0]=music pos[-2]=DT pos[-1]=VBG pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=LLLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=r p1[0]=m p2[-2]=so p2[-1]=re p2[0]=mu p3[-2]=som p3[-1]=rel p3[0]=mus p4[-2]=some p4[-1]=rela p4[0]=musi s1[-2]=e s1[-1]=g s1[0]=c s2[-2]=me s2[-1]=ng s2[0]=ic s3[-2]=ome s3[-1]=ing s3[0]=sic s4[-2]=some s4[-1]=xing s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|relaxing w[-1]|w[0]=relaxing|music pos[-2]|pos[-1]=DT|VBG pos[-1]|pos[0]=VBG|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=relaxing __EOS__ + +O w[0]=show w[1]=best w[2]=songs wl[0]=show wl[1]=best wl[2]=songs pos[0]=VBP pos[1]=JJS pos[2]=NNS chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=b p1[2]=s p2[0]=sh p2[1]=be p2[2]=so p3[0]=sho p3[1]=bes p3[2]=son p4[0]=show p4[1]=best p4[2]=song s1[0]=w s1[1]=t s1[2]=s s2[0]=ow s2[1]=st s2[2]=gs s3[0]=how s3[1]=est s3[2]=ngs s4[0]=show s4[1]=best s4[2]=ongs 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=show|best w[1]|w[2]=best|songs pos[0]|pos[1]=VBP|JJS pos[1]|pos[2]=JJS|NNS chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=best w[1..4]=songs w[1..4]=by w[1..4]=Rihanna __BOS__ +sort w[-1]=show w[0]=best w[1]=songs w[2]=by wl[-1]=show wl[0]=best wl[1]=songs wl[2]=by pos[-1]=VBP pos[0]=JJS pos[1]=NNS pos[2]=IN chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=s p1[0]=b p1[1]=s p1[2]=b p2[-1]=sh p2[0]=be p2[1]=so p2[2]=by p3[-1]=sho p3[0]=bes p3[1]=son p3[2]= p4[-1]=show p4[0]=best p4[1]=song p4[2]= s1[-1]=w s1[0]=t s1[1]=s s1[2]=y s2[-1]=ow s2[0]=st s2[1]=gs s2[2]=by s3[-1]=how s3[0]=est s3[1]=ngs s3[2]= s4[-1]=show s4[0]=best s4[1]=ongs s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=show|best w[0]|w[1]=best|songs w[1]|w[2]=songs|by pos[-1]|pos[0]=VBP|JJS pos[0]|pos[1]=JJS|NNS pos[1]|pos[2]=NNS|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=show w[1..4]=songs w[1..4]=by w[1..4]=Rihanna +O w[-2]=show w[-1]=best w[0]=songs w[1]=by w[2]=Rihanna wl[-2]=show wl[-1]=best wl[0]=songs wl[1]=by wl[2]=rihanna pos[-2]=VBP pos[-1]=JJS pos[0]=NNS pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=b p1[0]=s p1[1]=b p1[2]=R p2[-2]=sh p2[-1]=be p2[0]=so p2[1]=by p2[2]=Ri p3[-2]=sho p3[-1]=bes p3[0]=son p3[1]= p3[2]=Rih p4[-2]=show p4[-1]=best p4[0]=song p4[1]= p4[2]=Riha s1[-2]=w s1[-1]=t s1[0]=s s1[1]=y s1[2]=a s2[-2]=ow s2[-1]=st s2[0]=gs s2[1]=by s2[2]=na s3[-2]=how s3[-1]=est s3[0]=ngs s3[1]= s3[2]=nna s4[-2]=show s4[-1]=best s4[0]=ongs s4[1]= s4[2]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=show|best w[-1]|w[0]=best|songs w[0]|w[1]=songs|by w[1]|w[2]=by|Rihanna pos[-2]|pos[-1]=VBP|JJS pos[-1]|pos[0]=JJS|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=show w[-4..-1]=best w[1..4]=by w[1..4]=Rihanna +O w[-2]=best w[-1]=songs w[0]=by w[1]=Rihanna wl[-2]=best wl[-1]=songs wl[0]=by wl[1]=rihanna pos[-2]=JJS pos[-1]=NNS pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=b p1[-1]=s p1[0]=b p1[1]=R p2[-2]=be p2[-1]=so p2[0]=by p2[1]=Ri p3[-2]=bes p3[-1]=son p3[0]= p3[1]=Rih p4[-2]=best p4[-1]=song p4[0]= p4[1]=Riha s1[-2]=t s1[-1]=s s1[0]=y s1[1]=a s2[-2]=st s2[-1]=gs s2[0]=by s2[1]=na s3[-2]=est s3[-1]=ngs s3[0]= s3[1]=nna s4[-2]=best s4[-1]=ongs s4[0]= s4[1]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=best|songs w[-1]|w[0]=songs|by w[0]|w[1]=by|Rihanna pos[-2]|pos[-1]=JJS|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=show w[-4..-1]=best w[-4..-1]=songs w[1..4]=Rihanna +artist w[-2]=songs w[-1]=by w[0]=Rihanna wl[-2]=songs wl[-1]=by wl[0]=rihanna pos[-2]=NNS pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=b p1[0]=R p2[-2]=so p2[-1]=by p2[0]=Ri p3[-2]=son p3[-1]= p3[0]=Rih p4[-2]=song p4[-1]= p4[0]=Riha s1[-2]=s s1[-1]=y s1[0]=a s2[-2]=gs s2[-1]=by s2[0]=na s3[-2]=ngs s3[-1]= s3[0]=nna s4[-2]=ongs s4[-1]= s4[0]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=songs|by w[-1]|w[0]=by|Rihanna pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=show w[-4..-1]=best w[-4..-1]=songs w[-4..-1]=by __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=Irreplaceable w[1..4]=by __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=Irreplaceable wl[-1]=can wl[0]=you wl[1]=play wl[2]=irreplaceable pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLLLLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=c p1[0]=y p1[1]=p p1[2]=I p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=Ir p3[-1]=can p3[0]=you p3[1]=pla p3[2]=Irr p4[-1]= p4[0]= p4[1]=play p4[2]=Irre s1[-1]=n s1[0]=u s1[1]=y s1[2]=e s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=le s3[-1]=can s3[0]=you s3[1]=lay s3[2]=ble s4[-1]= s4[0]= s4[1]=play s4[2]=able 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|Irreplaceable pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[1..4]=play w[1..4]=Irreplaceable w[1..4]=by w[1..4]=Beyonce +O w[-2]=can w[-1]=you w[0]=play w[1]=Irreplaceable w[2]=by wl[-2]=can wl[-1]=you wl[0]=play wl[1]=irreplaceable wl[2]=by pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=JJ pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLLLLLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=I p1[2]=b p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=Ir p2[2]=by p3[-2]=can p3[-1]=you p3[0]=pla p3[1]=Irr p3[2]= p4[-2]= p4[-1]= p4[0]=play p4[1]=Irre p4[2]= s1[-2]=n s1[-1]=u s1[0]=y s1[1]=e s1[2]=y s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=le s2[2]=by s3[-2]=can s3[-1]=you s3[0]=lay s3[1]=ble s3[2]= s4[-2]= s4[-1]= s4[0]=play s4[1]=able s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|Irreplaceable w[1]|w[2]=Irreplaceable|by pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|JJ pos[1]|pos[2]=JJ|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=Irreplaceable w[1..4]=by w[1..4]=Beyonce +song w[-2]=you w[-1]=play w[0]=Irreplaceable w[1]=by w[2]=Beyonce wl[-2]=you wl[-1]=play wl[0]=irreplaceable wl[1]=by wl[2]=beyonce pos[-2]=PRP pos[-1]=VB pos[0]=JJ pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLLLLLLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=y p1[-1]=p p1[0]=I p1[1]=b p1[2]=B p2[-2]=yo p2[-1]=pl p2[0]=Ir p2[1]=by p2[2]=Be p3[-2]=you p3[-1]=pla p3[0]=Irr p3[1]= p3[2]=Bey p4[-2]= p4[-1]=play p4[0]=Irre p4[1]= p4[2]=Beyo s1[-2]=u s1[-1]=y s1[0]=e s1[1]=y s1[2]=e s2[-2]=ou s2[-1]=ay s2[0]=le s2[1]=by s2[2]=ce s3[-2]=you s3[-1]=lay s3[0]=ble s3[1]= s3[2]=nce s4[-2]= s4[-1]=play s4[0]=able s4[1]= s4[2]=once 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|Irreplaceable w[0]|w[1]=Irreplaceable|by w[1]|w[2]=by|Beyonce pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|JJ pos[0]|pos[1]=JJ|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[1..4]=by w[1..4]=Beyonce +O w[-2]=play w[-1]=Irreplaceable w[0]=by w[1]=Beyonce wl[-2]=play wl[-1]=irreplaceable wl[0]=by wl[1]=beyonce pos[-2]=VB pos[-1]=JJ pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=ULLLLLLLLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=I p1[0]=b p1[1]=B p2[-2]=pl p2[-1]=Ir p2[0]=by p2[1]=Be p3[-2]=pla p3[-1]=Irr p3[0]= p3[1]=Bey p4[-2]=play p4[-1]=Irre p4[0]= p4[1]=Beyo s1[-2]=y s1[-1]=e s1[0]=y s1[1]=e s2[-2]=ay s2[-1]=le s2[0]=by s2[1]=ce s3[-2]=lay s3[-1]=ble s3[0]= s3[1]=nce s4[-2]=play s4[-1]=able s4[0]= s4[1]=once 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Irreplaceable w[-1]|w[0]=Irreplaceable|by w[0]|w[1]=by|Beyonce pos[-2]|pos[-1]=VB|JJ pos[-1]|pos[0]=JJ|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[-4..-1]=Irreplaceable w[1..4]=Beyonce +artist w[-2]=Irreplaceable w[-1]=by w[0]=Beyonce wl[-2]=irreplaceable wl[-1]=by wl[0]=beyonce pos[-2]=JJ pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLLLLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=I p1[-1]=b p1[0]=B p2[-2]=Ir p2[-1]=by p2[0]=Be p3[-2]=Irr p3[-1]= p3[0]=Bey p4[-2]=Irre p4[-1]= p4[0]=Beyo s1[-2]=e s1[-1]=y s1[0]=e s2[-2]=le s2[-1]=by s2[0]=ce s3[-2]=ble s3[-1]= s3[0]=nce s4[-2]=able s4[-1]= s4[0]=once 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Irreplaceable|by w[-1]|w[0]=by|Beyonce pos[-2]|pos[-1]=JJ|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=you w[-4..-1]=play w[-4..-1]=Irreplaceable w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=my w[2]=faves wl[0]=play wl[1]=my wl[2]=faves pos[0]=VB pos[1]=PRP$ pos[2]=PRP$ chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=LL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=f p2[0]=pl p2[1]=my p2[2]=fa p3[0]=pla p3[1]= p3[2]=fav p4[0]=play p4[1]= p4[2]=fave s1[0]=y s1[1]=y s1[2]=s s2[0]=ay s2[1]=my s2[2]=es s3[0]=lay s3[1]= s3[2]=ves s4[0]=play s4[1]= s4[2]=aves 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|my w[1]|w[2]=my|faves pos[0]|pos[1]=VB|PRP$ pos[1]|pos[2]=PRP$|PRP$ chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=my w[1..4]=faves w[1..4]=playlist __BOS__ +playlist w[-1]=play w[0]=my w[1]=faves w[2]=playlist wl[-1]=play wl[0]=my wl[1]=faves wl[2]=playlist pos[-1]=VB pos[0]=PRP$ pos[1]=PRP$ pos[2]=NN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLL shape[2]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=m p1[1]=f p1[2]=p p2[-1]=pl p2[0]=my p2[1]=fa p2[2]=pl p3[-1]=pla p3[0]= p3[1]=fav p3[2]=pla p4[-1]=play p4[0]= p4[1]=fave p4[2]=play s1[-1]=y s1[0]=y s1[1]=s s1[2]=t s2[-1]=ay s2[0]=my s2[1]=es s2[2]=st s3[-1]=lay s3[0]= s3[1]=ves s3[2]=ist s4[-1]=play s4[0]= s4[1]=aves s4[2]=list 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|my w[0]|w[1]=my|faves w[1]|w[2]=faves|playlist pos[-1]|pos[0]=VB|PRP$ pos[0]|pos[1]=PRP$|PRP$ pos[1]|pos[2]=PRP$|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=faves w[1..4]=playlist +playlist w[-2]=play w[-1]=my w[0]=faves w[1]=playlist wl[-2]=play wl[-1]=my wl[0]=faves wl[1]=playlist pos[-2]=VB pos[-1]=PRP$ pos[0]=PRP$ pos[1]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=m p1[0]=f p1[1]=p p2[-2]=pl p2[-1]=my p2[0]=fa p2[1]=pl p3[-2]=pla p3[-1]= p3[0]=fav p3[1]=pla p4[-2]=play p4[-1]= p4[0]=fave p4[1]=play s1[-2]=y s1[-1]=y s1[0]=s s1[1]=t s2[-2]=ay s2[-1]=my s2[0]=es s2[1]=st s3[-2]=lay s3[-1]= s3[0]=ves s3[1]=ist s4[-2]=play s4[-1]= s4[0]=aves s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|my w[-1]|w[0]=my|faves w[0]|w[1]=faves|playlist pos[-2]|pos[-1]=VB|PRP$ pos[-1]|pos[0]=PRP$|PRP$ pos[0]|pos[1]=PRP$|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=my w[1..4]=playlist +O w[-2]=my w[-1]=faves w[0]=playlist wl[-2]=my wl[-1]=faves wl[0]=playlist pos[-2]=PRP$ pos[-1]=PRP$ pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=LL shape[-1]=LLLLL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=f p1[0]=p p2[-2]=my p2[-1]=fa p2[0]=pl p3[-2]= p3[-1]=fav p3[0]=pla p4[-2]= p4[-1]=fave p4[0]=play s1[-2]=y s1[-1]=s s1[0]=t s2[-2]=my s2[-1]=es s2[0]=st s3[-2]= s3[-1]=ves s3[0]=ist s4[-2]= s4[-1]=aves s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=my|faves w[-1]|w[0]=faves|playlist pos[-2]|pos[-1]=PRP$|PRP$ pos[-1]|pos[0]=PRP$|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=my w[-4..-1]=faves __EOS__ + +O w[0]=put w[1]=on w[2]=some wl[0]=put wl[1]=on wl[2]=some pos[0]=VBN pos[1]=RP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=o p1[2]=s p2[0]=pu p2[1]=on p2[2]=so p3[0]=put p3[1]= p3[2]=som p4[0]= p4[1]= p4[2]=some s1[0]=t s1[1]=n s1[2]=e s2[0]=ut s2[1]=on s2[2]=me s3[0]=put s3[1]= s3[2]=ome s4[0]= s4[1]= s4[2]=some 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|on w[1]|w[2]=on|some pos[0]|pos[1]=VBN|RP pos[1]|pos[2]=RP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=some w[1..4]=Rolling w[1..4]=Stones __BOS__ +O w[-1]=put w[0]=on w[1]=some w[2]=Rolling wl[-1]=put wl[0]=on wl[1]=some wl[2]=rolling pos[-1]=VBN pos[0]=RP pos[1]=DT pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LL shape[1]=LLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=o p1[1]=s p1[2]=R p2[-1]=pu p2[0]=on p2[1]=so p2[2]=Ro p3[-1]=put p3[0]= p3[1]=som p3[2]=Rol p4[-1]= p4[0]= p4[1]=some p4[2]=Roll s1[-1]=t s1[0]=n s1[1]=e s1[2]=g s2[-1]=ut s2[0]=on s2[1]=me s2[2]=ng s3[-1]=put s3[0]= s3[1]=ome s3[2]=ing s4[-1]= s4[0]= s4[1]=some s4[2]=ling 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|on w[0]|w[1]=on|some w[1]|w[2]=some|Rolling pos[-1]|pos[0]=VBN|RP pos[0]|pos[1]=RP|DT pos[1]|pos[2]=DT|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=put w[1..4]=some w[1..4]=Rolling w[1..4]=Stones +O w[-2]=put w[-1]=on w[0]=some w[1]=Rolling w[2]=Stones wl[-2]=put wl[-1]=on wl[0]=some wl[1]=rolling wl[2]=stones pos[-2]=VBN pos[-1]=RP pos[0]=DT pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LL shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=o p1[0]=s p1[1]=R p1[2]=S p2[-2]=pu p2[-1]=on p2[0]=so p2[1]=Ro p2[2]=St p3[-2]=put p3[-1]= p3[0]=som p3[1]=Rol p3[2]=Sto p4[-2]= p4[-1]= p4[0]=some p4[1]=Roll p4[2]=Ston s1[-2]=t s1[-1]=n s1[0]=e s1[1]=g s1[2]=s s2[-2]=ut s2[-1]=on s2[0]=me s2[1]=ng s2[2]=es s3[-2]=put s3[-1]= s3[0]=ome s3[1]=ing s3[2]=nes s4[-2]= s4[-1]= s4[0]=some s4[1]=ling s4[2]=ones 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=put|on w[-1]|w[0]=on|some w[0]|w[1]=some|Rolling w[1]|w[2]=Rolling|Stones pos[-2]|pos[-1]=VBN|RP pos[-1]|pos[0]=RP|DT pos[0]|pos[1]=DT|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=put w[-4..-1]=on w[1..4]=Rolling w[1..4]=Stones +artist w[-2]=on w[-1]=some w[0]=Rolling w[1]=Stones wl[-2]=on wl[-1]=some wl[0]=rolling wl[1]=stones pos[-2]=RP pos[-1]=DT pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LL shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=o p1[-1]=s p1[0]=R p1[1]=S p2[-2]=on p2[-1]=so p2[0]=Ro p2[1]=St p3[-2]= p3[-1]=som p3[0]=Rol p3[1]=Sto p4[-2]= p4[-1]=some p4[0]=Roll p4[1]=Ston s1[-2]=n s1[-1]=e s1[0]=g s1[1]=s s2[-2]=on s2[-1]=me s2[0]=ng s2[1]=es s3[-2]= s3[-1]=ome s3[0]=ing s3[1]=nes s4[-2]= s4[-1]=some s4[0]=ling s4[1]=ones 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=on|some w[-1]|w[0]=some|Rolling w[0]|w[1]=Rolling|Stones pos[-2]|pos[-1]=RP|DT pos[-1]|pos[0]=DT|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=put w[-4..-1]=on w[-4..-1]=some w[1..4]=Stones +artist w[-2]=some w[-1]=Rolling w[0]=Stones wl[-2]=some wl[-1]=rolling wl[0]=stones pos[-2]=DT pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=s p1[-1]=R p1[0]=S p2[-2]=so p2[-1]=Ro p2[0]=St p3[-2]=som p3[-1]=Rol p3[0]=Sto p4[-2]=some p4[-1]=Roll p4[0]=Ston s1[-2]=e s1[-1]=g s1[0]=s s2[-2]=me s2[-1]=ng s2[0]=es s3[-2]=ome s3[-1]=ing s3[0]=nes s4[-2]=some s4[-1]=ling s4[0]=ones 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|Rolling w[-1]|w[0]=Rolling|Stones pos[-2]|pos[-1]=DT|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=put w[-4..-1]=on w[-4..-1]=some w[-4..-1]=Rolling __EOS__ + +O w[0]=music w[1]=Grenade w[2]=in wl[0]=music wl[1]=grenade wl[2]=in pos[0]=NN pos[1]=NNP pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLLL shape[1]=ULLLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=m p1[1]=G p1[2]=i p2[0]=mu p2[1]=Gr p2[2]=in p3[0]=mus p3[1]=Gre p3[2]= p4[0]=musi p4[1]=Gren p4[2]= s1[0]=c s1[1]=e s1[2]=n s2[0]=ic s2[1]=de s2[2]=in s3[0]=sic s3[1]=ade s3[2]= s4[0]=usic s4[1]=nade s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=music|Grenade w[1]|w[2]=Grenade|in pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Grenade w[1..4]=in w[1..4]=my w[1..4]=library __BOS__ +song w[-1]=music w[0]=Grenade w[1]=in w[2]=my wl[-1]=music wl[0]=grenade wl[1]=in wl[2]=my pos[-1]=NN pos[0]=NNP pos[1]=IN pos[2]=PRP$ chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-1]=LLLLL shape[0]=ULLLLLL shape[1]=LL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=m p1[0]=G p1[1]=i p1[2]=m p2[-1]=mu p2[0]=Gr p2[1]=in p2[2]=my p3[-1]=mus p3[0]=Gre p3[1]= p3[2]= p4[-1]=musi p4[0]=Gren p4[1]= p4[2]= s1[-1]=c s1[0]=e s1[1]=n s1[2]=y s2[-1]=ic s2[0]=de s2[1]=in s2[2]=my s3[-1]=sic s3[0]=ade s3[1]= s3[2]= s4[-1]=usic s4[0]=nade s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=music|Grenade w[0]|w[1]=Grenade|in w[1]|w[2]=in|my pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|PRP$ chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=music w[1..4]=in w[1..4]=my w[1..4]=library +O w[-2]=music w[-1]=Grenade w[0]=in w[1]=my w[2]=library wl[-2]=music wl[-1]=grenade wl[0]=in wl[1]=my wl[2]=library pos[-2]=NN pos[-1]=NNP pos[0]=IN pos[1]=PRP$ pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLL shape[-1]=ULLLLLL shape[0]=LL shape[1]=LL shape[2]=LLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=m p1[-1]=G p1[0]=i p1[1]=m p1[2]=l p2[-2]=mu p2[-1]=Gr p2[0]=in p2[1]=my p2[2]=li p3[-2]=mus p3[-1]=Gre p3[0]= p3[1]= p3[2]=lib p4[-2]=musi p4[-1]=Gren p4[0]= p4[1]= p4[2]=libr s1[-2]=c s1[-1]=e s1[0]=n s1[1]=y s1[2]=y s2[-2]=ic s2[-1]=de s2[0]=in s2[1]=my s2[2]=ry s3[-2]=sic s3[-1]=ade s3[0]= s3[1]= s3[2]=ary s4[-2]=usic s4[-1]=nade s4[0]= s4[1]= s4[2]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=music|Grenade w[-1]|w[0]=Grenade|in w[0]|w[1]=in|my w[1]|w[2]=my|library pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=music w[-4..-1]=Grenade w[1..4]=my w[1..4]=library +O w[-2]=Grenade w[-1]=in w[0]=my w[1]=library wl[-2]=grenade wl[-1]=in wl[0]=my wl[1]=library pos[-2]=NNP pos[-1]=IN pos[0]=PRP$ pos[1]=NN chk[-2]=I chk[-1]=O chk[0]=O chk[1]=O shape[-2]=ULLLLLL shape[-1]=LL shape[0]=LL shape[1]=LLLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=G p1[-1]=i p1[0]=m p1[1]=l p2[-2]=Gr p2[-1]=in p2[0]=my p2[1]=li p3[-2]=Gre p3[-1]= p3[0]= p3[1]=lib p4[-2]=Gren p4[-1]= p4[0]= p4[1]=libr s1[-2]=e s1[-1]=n s1[0]=y s1[1]=y s2[-2]=de s2[-1]=in s2[0]=my s2[1]=ry s3[-2]=ade s3[-1]= s3[0]= s3[1]=ary s4[-2]=nade s4[-1]= s4[0]= s4[1]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Grenade|in w[-1]|w[0]=in|my w[0]|w[1]=my|library pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=music w[-4..-1]=Grenade w[-4..-1]=in w[1..4]=library +O w[-2]=in w[-1]=my w[0]=library wl[-2]=in wl[-1]=my wl[0]=library pos[-2]=IN pos[-1]=PRP$ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=i p1[-1]=m p1[0]=l p2[-2]=in p2[-1]=my p2[0]=li p3[-2]= p3[-1]= p3[0]=lib p4[-2]= p4[-1]= p4[0]=libr s1[-2]=n s1[-1]=y s1[0]=y s2[-2]=in s2[-1]=my s2[0]=ry s3[-2]= s3[-1]= s3[0]=ary s4[-2]= s4[-1]= s4[0]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=in|my w[-1]|w[0]=my|library pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=music w[-4..-1]=Grenade w[-4..-1]=in w[-4..-1]=my __EOS__ + +O w[0]=play w[1]=Guns w[2]=N wl[0]=play wl[1]=guns wl[2]=n pos[0]=VB pos[1]=NNPS pos[2]=NNPS chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLL shape[2]=U shaped[0]=L shaped[1]=UL shaped[2]=U type[0]=AllLetter type[1]=InitUpper type[2]=AllUpper p1[0]=p p1[1]=G p1[2]=N p2[0]=pl p2[1]=Gu p2[2]= p3[0]=pla p3[1]=Gun p3[2]= p4[0]=play p4[1]=Guns p4[2]= s1[0]=y s1[1]=s s1[2]=N s2[0]=ay s2[1]=ns s2[2]= s3[0]=lay s3[1]=uns s3[2]= s4[0]=play s4[1]=Guns s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=yes al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Guns w[1]|w[2]=Guns|N pos[0]|pos[1]=VB|NNPS pos[1]|pos[2]=NNPS|NNPS chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|U type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllUpper w[1..4]=Guns w[1..4]=N w[1..4]=Roses __BOS__ +artist w[-1]=play w[0]=Guns w[1]=N w[2]=Roses wl[-1]=play wl[0]=guns wl[1]=n wl[2]=roses pos[-1]=VB pos[0]=NNPS pos[1]=NNPS pos[2]=NNPS chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLL shape[1]=U shape[2]=ULLLL shaped[-1]=L shaped[0]=UL shaped[1]=U shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllUpper type[2]=InitUpper p1[-1]=p p1[0]=G p1[1]=N p1[2]=R p2[-1]=pl p2[0]=Gu p2[1]= p2[2]=Ro p3[-1]=pla p3[0]=Gun p3[1]= p3[2]=Ros p4[-1]=play p4[0]=Guns p4[1]= p4[2]=Rose s1[-1]=y s1[0]=s s1[1]=N s1[2]=s s2[-1]=ay s2[0]=ns s2[1]= s2[2]=es s3[-1]=lay s3[0]=uns s3[1]= s3[2]=ses s4[-1]=play s4[0]=Guns s4[1]= s4[2]=oses 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=yes au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Guns w[0]|w[1]=Guns|N w[1]|w[2]=N|Roses pos[-1]|pos[0]=VB|NNPS pos[0]|pos[1]=NNPS|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|U shaped[1]|shaped[2]=U|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllUpper type[1]|type[2]=AllUpper|InitUpper w[-4..-1]=play w[1..4]=N w[1..4]=Roses +artist w[-2]=play w[-1]=Guns w[0]=N w[1]=Roses wl[-2]=play wl[-1]=guns wl[0]=n wl[1]=roses pos[-2]=VB pos[-1]=NNPS pos[0]=NNPS pos[1]=NNPS chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=U shape[1]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=U shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllUpper type[1]=InitUpper p1[-2]=p p1[-1]=G p1[0]=N p1[1]=R p2[-2]=pl p2[-1]=Gu p2[0]= p2[1]=Ro p3[-2]=pla p3[-1]=Gun p3[0]= p3[1]=Ros p4[-2]=play p4[-1]=Guns p4[0]= p4[1]=Rose s1[-2]=y s1[-1]=s s1[0]=N s1[1]=s s2[-2]=ay s2[-1]=ns s2[0]= s2[1]=es s3[-2]=lay s3[-1]=uns s3[0]= s3[1]=ses s4[-2]=play s4[-1]=Guns s4[0]= s4[1]=oses 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=yes au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Guns w[-1]|w[0]=Guns|N w[0]|w[1]=N|Roses pos[-2]|pos[-1]=VB|NNPS pos[-1]|pos[0]=NNPS|NNPS pos[0]|pos[1]=NNPS|NNPS chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|U shaped[0]|shaped[1]=U|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllUpper type[0]|type[1]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=Guns w[1..4]=Roses +artist w[-2]=Guns w[-1]=N w[0]=Roses wl[-2]=guns wl[-1]=n wl[0]=roses pos[-2]=NNPS pos[-1]=NNPS pos[0]=NNPS chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=U shape[0]=ULLLL shaped[-2]=UL shaped[-1]=U shaped[0]=UL type[-2]=InitUpper type[-1]=AllUpper type[0]=InitUpper p1[-2]=G p1[-1]=N p1[0]=R p2[-2]=Gu p2[-1]= p2[0]=Ro p3[-2]=Gun p3[-1]= p3[0]=Ros p4[-2]=Guns p4[-1]= p4[0]=Rose s1[-2]=s s1[-1]=N s1[0]=s s2[-2]=ns s2[-1]= s2[0]=es s3[-2]=uns s3[-1]= s3[0]=ses s4[-2]=Guns s4[-1]= s4[0]=oses 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=yes au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=no cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Guns|N w[-1]|w[0]=N|Roses pos[-2]|pos[-1]=NNPS|NNPS pos[-1]|pos[0]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|U shaped[-1]|shaped[0]=U|UL type[-2]|type[-1]=InitUpper|AllUpper type[-1]|type[0]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=Guns w[-4..-1]=N __EOS__ + +O w[0]=Play w[1]=chill w[2]=playlist wl[0]=play wl[1]=chill wl[2]=playlist pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=O shape[0]=ULLL shape[1]=LLLLL shape[2]=LLLLLLLL shaped[0]=UL shaped[1]=L shaped[2]=L type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[0]=P p1[1]=c p1[2]=p p2[0]=Pl p2[1]=ch p2[2]=pl p3[0]=Pla p3[1]=chi p3[2]=pla p4[0]=Play p4[1]=chil p4[2]=play s1[0]=y s1[1]=l s1[2]=t s2[0]=ay s2[1]=ll s2[2]=st s3[0]=lay s3[1]=ill s3[2]=ist s4[0]=Play s4[1]=hill s4[2]=list 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=Play|chill w[1]|w[2]=chill|playlist pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=chill w[1..4]=playlist __BOS__ +playlist w[-1]=Play w[0]=chill w[1]=playlist wl[-1]=play wl[0]=chill wl[1]=playlist pos[-1]=VB pos[0]=NN pos[1]=NN chk[-1]=O chk[0]=I chk[1]=O shape[-1]=ULLL shape[0]=LLLLL shape[1]=LLLLLLLL shaped[-1]=UL shaped[0]=L shaped[1]=L type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter p1[-1]=P p1[0]=c p1[1]=p p2[-1]=Pl p2[0]=ch p2[1]=pl p3[-1]=Pla p3[0]=chi p3[1]=pla p4[-1]=Play p4[0]=chil p4[1]=play s1[-1]=y s1[0]=l s1[1]=t s2[-1]=ay s2[0]=ll s2[1]=st s3[-1]=lay s3[0]=ill s3[1]=ist s4[-1]=Play s4[0]=hill s4[1]=list 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=yes iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=no al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=yes cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=yes cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=Play|chill w[0]|w[1]=chill|playlist pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=Play w[1..4]=playlist +O w[-2]=Play w[-1]=chill w[0]=playlist wl[-2]=play wl[-1]=chill wl[0]=playlist pos[-2]=VB pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=ULLL shape[-1]=LLLLL shape[0]=LLLLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter p1[-2]=P p1[-1]=c p1[0]=p p2[-2]=Pl p2[-1]=ch p2[0]=pl p3[-2]=Pla p3[-1]=chi p3[0]=pla p4[-2]=Play p4[-1]=chil p4[0]=play s1[-2]=y s1[-1]=l s1[0]=t s2[-2]=ay s2[-1]=ll s2[0]=st s3[-2]=lay s3[-1]=ill s3[0]=ist s4[-2]=Play s4[-1]=hill s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Play|chill w[-1]|w[0]=chill|playlist pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=Play w[-4..-1]=chill __EOS__ + +O w[0]=let's w[1]=hear w[2]=Wilco wl[0]=let's wl[1]=hear wl[2]=wilco pos[0]=VB pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=I shape[0]=LLL'L shape[1]=LLLL shape[2]=ULLLL shaped[0]=L'L shaped[1]=L shaped[2]=UL type[0]=NO type[1]=AllLetter type[2]=InitUpper p1[0]=l p1[1]=h p1[2]=W p2[0]=le p2[1]=he p2[2]=Wi p3[0]=let p3[1]=hea p3[2]=Wil p4[0]=let' p4[1]=hear p4[2]=Wilc s1[0]=s s1[1]=r s1[2]=o s2[0]='s s2[1]=ar s2[2]=co s3[0]=t's s3[1]=ear s3[2]=lco s4[0]=et's s4[1]=hear s4[2]=ilco 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=let's|hear w[1]|w[2]=hear|Wilco pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L'L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=NO|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=hear w[1..4]=Wilco __BOS__ +O w[-1]=let's w[0]=hear w[1]=Wilco wl[-1]=let's wl[0]=hear wl[1]=wilco pos[-1]=VB pos[0]=PRP pos[1]=VB chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLL'L shape[0]=LLLL shape[1]=ULLLL shaped[-1]=L'L shaped[0]=L shaped[1]=UL type[-1]=NO type[0]=AllLetter type[1]=InitUpper p1[-1]=l p1[0]=h p1[1]=W p2[-1]=le p2[0]=he p2[1]=Wi p3[-1]=let p3[0]=hea p3[1]=Wil p4[-1]=let' p4[0]=hear p4[1]=Wilc s1[-1]=s s1[0]=r s1[1]=o s2[-1]='s s2[0]=ar s2[1]=co s3[-1]=t's s3[0]=ear s3[1]=lco s4[-1]=et's s4[0]=hear s4[1]=ilco 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=no al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-1]=yes cs[0]=no cs[1]=no w[-1]|w[0]=let's|hear w[0]|w[1]=hear|Wilco pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L'L|L shaped[0]|shaped[1]=L|UL type[-1]|type[0]=NO|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=let's w[1..4]=Wilco +artist w[-2]=let's w[-1]=hear w[0]=Wilco wl[-2]=let's wl[-1]=hear wl[0]=wilco pos[-2]=VB pos[-1]=PRP pos[0]=VB chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL'L shape[-1]=LLLL shape[0]=ULLLL shaped[-2]=L'L shaped[-1]=L shaped[0]=UL type[-2]=NO type[-1]=AllLetter type[0]=InitUpper p1[-2]=l p1[-1]=h p1[0]=W p2[-2]=le p2[-1]=he p2[0]=Wi p3[-2]=let p3[-1]=hea p3[0]=Wil p4[-2]=let' p4[-1]=hear p4[0]=Wilc s1[-2]=s s1[-1]=r s1[0]=o s2[-2]='s s2[-1]=ar s2[0]=co s3[-2]=t's s3[-1]=ear s3[0]=lco s4[-2]=et's s4[-1]=hear s4[0]=ilco 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=yes cs[-1]=no cs[0]=no w[-2]|w[-1]=let's|hear w[-1]|w[0]=hear|Wilco pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L'L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=NO|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=let's w[-4..-1]=hear __EOS__ + +O w[0]=play w[1]=What w[2]=Does wl[0]=play wl[1]=what wl[2]=does pos[0]=VB pos[1]=WP pos[2]=WP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLL shape[2]=ULLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=W p1[2]=D p2[0]=pl p2[1]=Wh p2[2]=Do p3[0]=pla p3[1]=Wha p3[2]=Doe p4[0]=play p4[1]=What p4[2]=Does s1[0]=y s1[1]=t s1[2]=s s2[0]=ay s2[1]=at s2[2]=es s3[0]=lay s3[1]=hat s3[2]=oes s4[0]=play s4[1]=What s4[2]=Does 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|What w[1]|w[2]=What|Does pos[0]|pos[1]=VB|WP pos[1]|pos[2]=WP|WP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=What w[1..4]=Does w[1..4]=the w[1..4]=Fox __BOS__ +song w[-1]=play w[0]=What w[1]=Does w[2]=the wl[-1]=play wl[0]=what wl[1]=does wl[2]=the pos[-1]=VB pos[0]=WP pos[1]=WP pos[2]=WP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLL shape[1]=ULLL shape[2]=LLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=W p1[1]=D p1[2]=t p2[-1]=pl p2[0]=Wh p2[1]=Do p2[2]=th p3[-1]=pla p3[0]=Wha p3[1]=Doe p3[2]=the p4[-1]=play p4[0]=What p4[1]=Does p4[2]= s1[-1]=y s1[0]=t s1[1]=s s1[2]=e s2[-1]=ay s2[0]=at s2[1]=es s2[2]=he s3[-1]=lay s3[0]=hat s3[1]=oes s3[2]=the s4[-1]=play s4[0]=What s4[1]=Does s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|What w[0]|w[1]=What|Does w[1]|w[2]=Does|the pos[-1]|pos[0]=VB|WP pos[0]|pos[1]=WP|WP pos[1]|pos[2]=WP|WP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Does w[1..4]=the w[1..4]=Fox w[1..4]=Say +song w[-2]=play w[-1]=What w[0]=Does w[1]=the w[2]=Fox wl[-2]=play wl[-1]=what wl[0]=does wl[1]=the wl[2]=fox pos[-2]=VB pos[-1]=WP pos[0]=WP pos[1]=WP pos[2]=WP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=ULLL shape[1]=LLL shape[2]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=W p1[0]=D p1[1]=t p1[2]=F p2[-2]=pl p2[-1]=Wh p2[0]=Do p2[1]=th p2[2]=Fo p3[-2]=pla p3[-1]=Wha p3[0]=Doe p3[1]=the p3[2]=Fox p4[-2]=play p4[-1]=What p4[0]=Does p4[1]= p4[2]= s1[-2]=y s1[-1]=t s1[0]=s s1[1]=e s1[2]=x s2[-2]=ay s2[-1]=at s2[0]=es s2[1]=he s2[2]=ox s3[-2]=lay s3[-1]=hat s3[0]=oes s3[1]=the s3[2]=Fox s4[-2]=play s4[-1]=What s4[0]=Does s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|What w[-1]|w[0]=What|Does w[0]|w[1]=Does|the w[1]|w[2]=the|Fox pos[-2]|pos[-1]=VB|WP pos[-1]|pos[0]=WP|WP pos[0]|pos[1]=WP|WP pos[1]|pos[2]=WP|WP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=What w[1..4]=the w[1..4]=Fox w[1..4]=Say +song w[-2]=What w[-1]=Does w[0]=the w[1]=Fox w[2]=Say wl[-2]=what wl[-1]=does wl[0]=the wl[1]=fox wl[2]=say pos[-2]=WP pos[-1]=WP pos[0]=WP pos[1]=WP pos[2]=WP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=ULLL shape[0]=LLL shape[1]=ULL shape[2]=ULL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=W p1[-1]=D p1[0]=t p1[1]=F p1[2]=S p2[-2]=Wh p2[-1]=Do p2[0]=th p2[1]=Fo p2[2]=Sa p3[-2]=Wha p3[-1]=Doe p3[0]=the p3[1]=Fox p3[2]=Say p4[-2]=What p4[-1]=Does p4[0]= p4[1]= p4[2]= s1[-2]=t s1[-1]=s s1[0]=e s1[1]=x s1[2]=y s2[-2]=at s2[-1]=es s2[0]=he s2[1]=ox s2[2]=ay s3[-2]=hat s3[-1]=oes s3[0]=the s3[1]=Fox s3[2]=Say s4[-2]=What s4[-1]=Does s4[0]= s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=What|Does w[-1]|w[0]=Does|the w[0]|w[1]=the|Fox w[1]|w[2]=Fox|Say pos[-2]|pos[-1]=WP|WP pos[-1]|pos[0]=WP|WP pos[0]|pos[1]=WP|WP pos[1]|pos[2]=WP|WP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=What w[-4..-1]=Does w[1..4]=Fox w[1..4]=Say +song w[-2]=Does w[-1]=the w[0]=Fox w[1]=Say wl[-2]=does wl[-1]=the wl[0]=fox wl[1]=say pos[-2]=WP pos[-1]=WP pos[0]=WP pos[1]=WP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=LLL shape[0]=ULL shape[1]=ULL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=D p1[-1]=t p1[0]=F p1[1]=S p2[-2]=Do p2[-1]=th p2[0]=Fo p2[1]=Sa p3[-2]=Doe p3[-1]=the p3[0]=Fox p3[1]=Say p4[-2]=Does p4[-1]= p4[0]= p4[1]= s1[-2]=s s1[-1]=e s1[0]=x s1[1]=y s2[-2]=es s2[-1]=he s2[0]=ox s2[1]=ay s3[-2]=oes s3[-1]=the s3[0]=Fox s3[1]=Say s4[-2]=Does s4[-1]= s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Does|the w[-1]|w[0]=the|Fox w[0]|w[1]=Fox|Say pos[-2]|pos[-1]=WP|WP pos[-1]|pos[0]=WP|WP pos[0]|pos[1]=WP|WP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=What w[-4..-1]=Does w[-4..-1]=the w[1..4]=Say +song w[-2]=the w[-1]=Fox w[0]=Say wl[-2]=the wl[-1]=fox wl[0]=say pos[-2]=WP pos[-1]=WP pos[0]=WP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLL shape[-1]=ULL shape[0]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=t p1[-1]=F p1[0]=S p2[-2]=th p2[-1]=Fo p2[0]=Sa p3[-2]=the p3[-1]=Fox p3[0]=Say p4[-2]= p4[-1]= p4[0]= s1[-2]=e s1[-1]=x s1[0]=y s2[-2]=he s2[-1]=ox s2[0]=ay s3[-2]=the s3[-1]=Fox s3[0]=Say s4[-2]= s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|Fox w[-1]|w[0]=Fox|Say pos[-2]|pos[-1]=WP|WP pos[-1]|pos[0]=WP|WP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=What w[-4..-1]=Does w[-4..-1]=the w[-4..-1]=Fox __EOS__ + +O w[0]=play w[1]=the w[2]=Mean wl[0]=play wl[1]=the wl[2]=mean pos[0]=VB pos[1]=DT pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLL shape[2]=ULLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=t p1[2]=M p2[0]=pl p2[1]=th p2[2]=Me p3[0]=pla p3[1]=the p3[2]=Mea p4[0]=play p4[1]= p4[2]=Mean s1[0]=y s1[1]=e s1[2]=n s2[0]=ay s2[1]=he s2[2]=an s3[0]=lay s3[1]=the s3[2]=ean s4[0]=play s4[1]= s4[2]=Mean 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|Mean pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=the w[1..4]=Mean w[1..4]=Kitty w[1..4]=song __BOS__ +O w[-1]=play w[0]=the w[1]=Mean w[2]=Kitty wl[-1]=play wl[0]=the wl[1]=mean wl[2]=kitty pos[-1]=VB pos[0]=DT pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=ULLL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=M p1[2]=K p2[-1]=pl p2[0]=th p2[1]=Me p2[2]=Ki p3[-1]=pla p3[0]=the p3[1]=Mea p3[2]=Kit p4[-1]=play p4[0]= p4[1]=Mean p4[2]=Kitt s1[-1]=y s1[0]=e s1[1]=n s1[2]=y s2[-1]=ay s2[0]=he s2[1]=an s2[2]=ty s3[-1]=lay s3[0]=the s3[1]=ean s3[2]=tty s4[-1]=play s4[0]= s4[1]=Mean s4[2]=itty 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|Mean w[1]|w[2]=Mean|Kitty pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Mean w[1..4]=Kitty w[1..4]=song +song w[-2]=play w[-1]=the w[0]=Mean w[1]=Kitty w[2]=song wl[-2]=play wl[-1]=the wl[0]=mean wl[1]=kitty wl[2]=song pos[-2]=VB pos[-1]=DT pos[0]=NNP pos[1]=NNP pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=ULLL shape[1]=ULLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=M p1[1]=K p1[2]=s p2[-2]=pl p2[-1]=th p2[0]=Me p2[1]=Ki p2[2]=so p3[-2]=pla p3[-1]=the p3[0]=Mea p3[1]=Kit p3[2]=son p4[-2]=play p4[-1]= p4[0]=Mean p4[1]=Kitt p4[2]=song s1[-2]=y s1[-1]=e s1[0]=n s1[1]=y s1[2]=g s2[-2]=ay s2[-1]=he s2[0]=an s2[1]=ty s2[2]=ng s3[-2]=lay s3[-1]=the s3[0]=ean s3[1]=tty s3[2]=ong s4[-2]=play s4[-1]= s4[0]=Mean s4[1]=itty s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|Mean w[0]|w[1]=Mean|Kitty w[1]|w[2]=Kitty|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=Kitty w[1..4]=song +song w[-2]=the w[-1]=Mean w[0]=Kitty w[1]=song wl[-2]=the wl[-1]=mean wl[0]=kitty wl[1]=song pos[-2]=DT pos[-1]=NNP pos[0]=NNP pos[1]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O shape[-2]=LLL shape[-1]=ULLL shape[0]=ULLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-2]=t p1[-1]=M p1[0]=K p1[1]=s p2[-2]=th p2[-1]=Me p2[0]=Ki p2[1]=so p3[-2]=the p3[-1]=Mea p3[0]=Kit p3[1]=son p4[-2]= p4[-1]=Mean p4[0]=Kitt p4[1]=song s1[-2]=e s1[-1]=n s1[0]=y s1[1]=g s2[-2]=he s2[-1]=an s2[0]=ty s2[1]=ng s3[-2]=the s3[-1]=ean s3[0]=tty s3[1]=ong s4[-2]= s4[-1]=Mean s4[0]=itty s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=the|Mean w[-1]|w[0]=Mean|Kitty w[0]|w[1]=Kitty|song pos[-2]|pos[-1]=DT|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=Mean w[1..4]=song +O w[-2]=Mean w[-1]=Kitty w[0]=song wl[-2]=mean wl[-1]=kitty wl[0]=song pos[-2]=NNP pos[-1]=NNP pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULLL shape[-1]=ULLLL shape[0]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=M p1[-1]=K p1[0]=s p2[-2]=Me p2[-1]=Ki p2[0]=so p3[-2]=Mea p3[-1]=Kit p3[0]=son p4[-2]=Mean p4[-1]=Kitt p4[0]=song s1[-2]=n s1[-1]=y s1[0]=g s2[-2]=an s2[-1]=ty s2[0]=ng s3[-2]=ean s3[-1]=tty s3[0]=ong s4[-2]=Mean s4[-1]=itty s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Mean|Kitty w[-1]|w[0]=Kitty|song pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=Mean w[-4..-1]=Kitty __EOS__ + +O w[0]=play w[1]=song w[2]=Thriller wl[0]=play wl[1]=song wl[2]=thriller pos[0]=VBP pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=T p2[0]=pl p2[1]=so p2[2]=Th p3[0]=pla p3[1]=son p3[2]=Thr p4[0]=play p4[1]=song p4[2]=Thri s1[0]=y s1[1]=g s1[2]=r s2[0]=ay s2[1]=ng s2[2]=er s3[0]=lay s3[1]=ong s3[2]=ler s4[0]=play s4[1]=song s4[2]=ller 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|Thriller pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=Thriller __BOS__ +O w[-1]=play w[0]=song w[1]=Thriller wl[-1]=play wl[0]=song wl[1]=thriller pos[-1]=VBP pos[0]=NN pos[1]=NNP chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-1]=p p1[0]=s p1[1]=T p2[-1]=pl p2[0]=so p2[1]=Th p3[-1]=pla p3[0]=son p3[1]=Thr p4[-1]=play p4[0]=song p4[1]=Thri s1[-1]=y s1[0]=g s1[1]=r s2[-1]=ay s2[0]=ng s2[1]=er s3[-1]=lay s3[0]=ong s3[1]=ler s4[-1]=play s4[0]=song s4[1]=ller 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|song w[0]|w[1]=song|Thriller pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=Thriller +song w[-2]=play w[-1]=song w[0]=Thriller wl[-2]=play wl[-1]=song wl[0]=thriller pos[-2]=VBP pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=s p1[0]=T p2[-2]=pl p2[-1]=so p2[0]=Th p3[-2]=pla p3[-1]=son p3[0]=Thr p4[-2]=play p4[-1]=song p4[0]=Thri s1[-2]=y s1[-1]=g s1[0]=r s2[-2]=ay s2[-1]=ng s2[0]=er s3[-2]=lay s3[-1]=ong s3[0]=ler s4[-2]=play s4[-1]=song s4[0]=ller 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Thriller pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song __EOS__ + +O w[0]=play w[1]=song w[2]=The wl[0]=play wl[1]=song wl[2]=the pos[0]=VBP pos[1]=NN pos[2]=DT chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=T p2[0]=pl p2[1]=so p2[2]=Th p3[0]=pla p3[1]=son p3[2]=The p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=e s2[0]=ay s2[1]=ng s2[2]=he s3[0]=lay s3[1]=ong s3[2]=The s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|The pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=The w[1..4]=Cantos w[1..4]=de __BOS__ +O w[-1]=play w[0]=song w[1]=The w[2]=Cantos wl[-1]=play wl[0]=song wl[1]=the wl[2]=cantos pos[-1]=VBP pos[0]=NN pos[1]=DT pos[2]=DT chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=T p1[2]=C p2[-1]=pl p2[0]=so p2[1]=Th p2[2]=Ca p3[-1]=pla p3[0]=son p3[1]=The p3[2]=Can p4[-1]=play p4[0]=song p4[1]= p4[2]=Cant s1[-1]=y s1[0]=g s1[1]=e s1[2]=s s2[-1]=ay s2[0]=ng s2[1]=he s2[2]=os s3[-1]=lay s3[0]=ong s3[1]=The s3[2]=tos s4[-1]=play s4[0]=song s4[1]= s4[2]=ntos 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|The w[1]|w[2]=The|Cantos pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|DT pos[1]|pos[2]=DT|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=The w[1..4]=Cantos w[1..4]=de w[1..4]=Mallorca +song w[-2]=play w[-1]=song w[0]=The w[1]=Cantos w[2]=de wl[-2]=play wl[-1]=song wl[0]=the wl[1]=cantos wl[2]=de pos[-2]=VBP pos[-1]=NN pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=s p1[0]=T p1[1]=C p1[2]=d p2[-2]=pl p2[-1]=so p2[0]=Th p2[1]=Ca p2[2]=de p3[-2]=pla p3[-1]=son p3[0]=The p3[1]=Can p3[2]= p4[-2]=play p4[-1]=song p4[0]= p4[1]=Cant p4[2]= s1[-2]=y s1[-1]=g s1[0]=e s1[1]=s s1[2]=e s2[-2]=ay s2[-1]=ng s2[0]=he s2[1]=os s2[2]=de s3[-2]=lay s3[-1]=ong s3[0]=The s3[1]=tos s3[2]= s4[-2]=play s4[-1]=song s4[0]= s4[1]=ntos s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|The w[0]|w[1]=The|Cantos w[1]|w[2]=Cantos|de pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=song w[1..4]=Cantos w[1..4]=de w[1..4]=Mallorca +song w[-2]=song w[-1]=The w[0]=Cantos w[1]=de w[2]=Mallorca wl[-2]=song wl[-1]=the wl[0]=cantos wl[1]=de wl[2]=mallorca pos[-2]=NN pos[-1]=DT pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLL shape[1]=LL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=T p1[0]=C p1[1]=d p1[2]=M p2[-2]=so p2[-1]=Th p2[0]=Ca p2[1]=de p2[2]=Ma p3[-2]=son p3[-1]=The p3[0]=Can p3[1]= p3[2]=Mal p4[-2]=song p4[-1]= p4[0]=Cant p4[1]= p4[2]=Mall s1[-2]=g s1[-1]=e s1[0]=s s1[1]=e s1[2]=a s2[-2]=ng s2[-1]=he s2[0]=os s2[1]=de s2[2]=ca s3[-2]=ong s3[-1]=The s3[0]=tos s3[1]= s3[2]=rca s4[-2]=song s4[-1]= s4[0]=ntos s4[1]= s4[2]=orca 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|The w[-1]|w[0]=The|Cantos w[0]|w[1]=Cantos|de w[1]|w[2]=de|Mallorca pos[-2]|pos[-1]=NN|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=The w[1..4]=de w[1..4]=Mallorca +song w[-2]=The w[-1]=Cantos w[0]=de w[1]=Mallorca wl[-2]=the wl[-1]=cantos wl[0]=de wl[1]=mallorca pos[-2]=DT pos[-1]=DT pos[0]=DT pos[1]=DT chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=ULLLLL shape[0]=LL shape[1]=ULLLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=T p1[-1]=C p1[0]=d p1[1]=M p2[-2]=Th p2[-1]=Ca p2[0]=de p2[1]=Ma p3[-2]=The p3[-1]=Can p3[0]= p3[1]=Mal p4[-2]= p4[-1]=Cant p4[0]= p4[1]=Mall s1[-2]=e s1[-1]=s s1[0]=e s1[1]=a s2[-2]=he s2[-1]=os s2[0]=de s2[1]=ca s3[-2]=The s3[-1]=tos s3[0]= s3[1]=rca s4[-2]= s4[-1]=ntos s4[0]= s4[1]=orca 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=The|Cantos w[-1]|w[0]=Cantos|de w[0]|w[1]=de|Mallorca pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=The w[-4..-1]=Cantos w[1..4]=Mallorca +song w[-2]=Cantos w[-1]=de w[0]=Mallorca wl[-2]=cantos wl[-1]=de wl[0]=mallorca pos[-2]=DT pos[-1]=DT pos[0]=DT chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=ULLLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=C p1[-1]=d p1[0]=M p2[-2]=Ca p2[-1]=de p2[0]=Ma p3[-2]=Can p3[-1]= p3[0]=Mal p4[-2]=Cant p4[-1]= p4[0]=Mall s1[-2]=s s1[-1]=e s1[0]=a s2[-2]=os s2[-1]=de s2[0]=ca s3[-2]=tos s3[-1]= s3[0]=rca s4[-2]=ntos s4[-1]= s4[0]=orca 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Cantos|de w[-1]|w[0]=de|Mallorca pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=song w[-4..-1]=The w[-4..-1]=Cantos w[-4..-1]=de __EOS__ + +O w[0]=play w[1]=Experimental w[2]=songs wl[0]=play wl[1]=experimental wl[2]=songs pos[0]=VB pos[1]=JJ pos[2]=NNS chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLLLLLL shape[2]=LLLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=E p1[2]=s p2[0]=pl p2[1]=Ex p2[2]=so p3[0]=pla p3[1]=Exp p3[2]=son p4[0]=play p4[1]=Expe p4[2]=song s1[0]=y s1[1]=l s1[2]=s s2[0]=ay s2[1]=al s2[2]=gs s3[0]=lay s3[1]=tal s3[2]=ngs s4[0]=play s4[1]=ntal s4[2]=ongs 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Experimental w[1]|w[2]=Experimental|songs pos[0]|pos[1]=VB|JJ pos[1]|pos[2]=JJ|NNS chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Experimental w[1..4]=songs w[1..4]=on w[1..4]=Spotify __BOS__ +genre w[-1]=play w[0]=Experimental w[1]=songs w[2]=on wl[-1]=play wl[0]=experimental wl[1]=songs wl[2]=on pos[-1]=VB pos[0]=JJ pos[1]=NNS pos[2]=IN chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=ULLLLLLLLLLL shape[1]=LLLLL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=E p1[1]=s p1[2]=o p2[-1]=pl p2[0]=Ex p2[1]=so p2[2]=on p3[-1]=pla p3[0]=Exp p3[1]=son p3[2]= p4[-1]=play p4[0]=Expe p4[1]=song p4[2]= s1[-1]=y s1[0]=l s1[1]=s s1[2]=n s2[-1]=ay s2[0]=al s2[1]=gs s2[2]=on s3[-1]=lay s3[0]=tal s3[1]=ngs s3[2]= s4[-1]=play s4[0]=ntal s4[1]=ongs s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Experimental w[0]|w[1]=Experimental|songs w[1]|w[2]=songs|on pos[-1]|pos[0]=VB|JJ pos[0]|pos[1]=JJ|NNS pos[1]|pos[2]=NNS|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=songs w[1..4]=on w[1..4]=Spotify +O w[-2]=play w[-1]=Experimental w[0]=songs w[1]=on w[2]=Spotify wl[-2]=play wl[-1]=experimental wl[0]=songs wl[1]=on wl[2]=spotify pos[-2]=VB pos[-1]=JJ pos[0]=NNS pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLLLLLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=E p1[0]=s p1[1]=o p1[2]=S p2[-2]=pl p2[-1]=Ex p2[0]=so p2[1]=on p2[2]=Sp p3[-2]=pla p3[-1]=Exp p3[0]=son p3[1]= p3[2]=Spo p4[-2]=play p4[-1]=Expe p4[0]=song p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=l s1[0]=s s1[1]=n s1[2]=y s2[-2]=ay s2[-1]=al s2[0]=gs s2[1]=on s2[2]=fy s3[-2]=lay s3[-1]=tal s3[0]=ngs s3[1]= s3[2]=ify s4[-2]=play s4[-1]=ntal s4[0]=ongs s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Experimental w[-1]|w[0]=Experimental|songs w[0]|w[1]=songs|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=VB|JJ pos[-1]|pos[0]=JJ|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Experimental w[1..4]=on w[1..4]=Spotify +O w[-2]=Experimental w[-1]=songs w[0]=on w[1]=Spotify wl[-2]=experimental wl[-1]=songs wl[0]=on wl[1]=spotify pos[-2]=JJ pos[-1]=NNS pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLLLLLLLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=E p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Ex p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=Exp p3[-1]=son p3[0]= p3[1]=Spo p4[-2]=Expe p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=l s1[-1]=s s1[0]=n s1[1]=y s2[-2]=al s2[-1]=gs s2[0]=on s2[1]=fy s3[-2]=tal s3[-1]=ngs s3[0]= s3[1]=ify s4[-2]=ntal s4[-1]=ongs s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Experimental|songs w[-1]|w[0]=songs|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=JJ|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Experimental w[-4..-1]=songs w[1..4]=Spotify +service w[-2]=songs w[-1]=on w[0]=Spotify wl[-2]=songs wl[-1]=on wl[0]=spotify pos[-2]=NNS pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=s s1[-1]=n s1[0]=y s2[-2]=gs s2[-1]=on s2[0]=fy s3[-2]=ngs s3[-1]= s3[0]=ify s4[-2]=ongs s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=songs|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Experimental w[-4..-1]=songs w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=song w[2]=Poker wl[0]=play wl[1]=song wl[2]=poker pos[0]=VBP pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=P p2[0]=pl p2[1]=so p2[2]=Po p3[0]=pla p3[1]=son p3[2]=Pok p4[0]=play p4[1]=song p4[2]=Poke s1[0]=y s1[1]=g s1[2]=r s2[0]=ay s2[1]=ng s2[2]=er s3[0]=lay s3[1]=ong s3[2]=ker s4[0]=play s4[1]=song s4[2]=oker 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|Poker pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=Poker w[1..4]=Face w[1..4]=by __BOS__ +O w[-1]=play w[0]=song w[1]=Poker w[2]=Face wl[-1]=play wl[0]=song wl[1]=poker wl[2]=face pos[-1]=VBP pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=P p1[2]=F p2[-1]=pl p2[0]=so p2[1]=Po p2[2]=Fa p3[-1]=pla p3[0]=son p3[1]=Pok p3[2]=Fac p4[-1]=play p4[0]=song p4[1]=Poke p4[2]=Face s1[-1]=y s1[0]=g s1[1]=r s1[2]=e s2[-1]=ay s2[0]=ng s2[1]=er s2[2]=ce s3[-1]=lay s3[0]=ong s3[1]=ker s3[2]=ace s4[-1]=play s4[0]=song s4[1]=oker s4[2]=Face 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|Poker w[1]|w[2]=Poker|Face pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Poker w[1..4]=Face w[1..4]=by w[1..4]=Lady +song w[-2]=play w[-1]=song w[0]=Poker w[1]=Face w[2]=by wl[-2]=play wl[-1]=song wl[0]=poker wl[1]=face wl[2]=by pos[-2]=VBP pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=s p1[0]=P p1[1]=F p1[2]=b p2[-2]=pl p2[-1]=so p2[0]=Po p2[1]=Fa p2[2]=by p3[-2]=pla p3[-1]=son p3[0]=Pok p3[1]=Fac p3[2]= p4[-2]=play p4[-1]=song p4[0]=Poke p4[1]=Face p4[2]= s1[-2]=y s1[-1]=g s1[0]=r s1[1]=e s1[2]=y s2[-2]=ay s2[-1]=ng s2[0]=er s2[1]=ce s2[2]=by s3[-2]=lay s3[-1]=ong s3[0]=ker s3[1]=ace s3[2]= s4[-2]=play s4[-1]=song s4[0]=oker s4[1]=Face s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Poker w[0]|w[1]=Poker|Face w[1]|w[2]=Face|by pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=song w[1..4]=Face w[1..4]=by w[1..4]=Lady w[1..4]=Gaga +song w[-2]=song w[-1]=Poker w[0]=Face w[1]=by w[2]=Lady wl[-2]=song wl[-1]=poker wl[0]=face wl[1]=by wl[2]=lady pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULLL shape[1]=LL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=P p1[0]=F p1[1]=b p1[2]=L p2[-2]=so p2[-1]=Po p2[0]=Fa p2[1]=by p2[2]=La p3[-2]=son p3[-1]=Pok p3[0]=Fac p3[1]= p3[2]=Lad p4[-2]=song p4[-1]=Poke p4[0]=Face p4[1]= p4[2]=Lady s1[-2]=g s1[-1]=r s1[0]=e s1[1]=y s1[2]=y s2[-2]=ng s2[-1]=er s2[0]=ce s2[1]=by s2[2]=dy s3[-2]=ong s3[-1]=ker s3[0]=ace s3[1]= s3[2]=ady s4[-2]=song s4[-1]=oker s4[0]=Face s4[1]= s4[2]=Lady 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Poker w[-1]|w[0]=Poker|Face w[0]|w[1]=Face|by w[1]|w[2]=by|Lady pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Poker w[1..4]=by w[1..4]=Lady w[1..4]=Gaga +O w[-2]=Poker w[-1]=Face w[0]=by w[1]=Lady w[2]=Gaga wl[-2]=poker wl[-1]=face wl[0]=by wl[1]=lady wl[2]=gaga pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULLL shape[2]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=P p1[-1]=F p1[0]=b p1[1]=L p1[2]=G p2[-2]=Po p2[-1]=Fa p2[0]=by p2[1]=La p2[2]=Ga p3[-2]=Pok p3[-1]=Fac p3[0]= p3[1]=Lad p3[2]=Gag p4[-2]=Poke p4[-1]=Face p4[0]= p4[1]=Lady p4[2]=Gaga s1[-2]=r s1[-1]=e s1[0]=y s1[1]=y s1[2]=a s2[-2]=er s2[-1]=ce s2[0]=by s2[1]=dy s2[2]=ga s3[-2]=ker s3[-1]=ace s3[0]= s3[1]=ady s3[2]=aga s4[-2]=oker s4[-1]=Face s4[0]= s4[1]=Lady s4[2]=Gaga 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Poker|Face w[-1]|w[0]=Face|by w[0]|w[1]=by|Lady w[1]|w[2]=Lady|Gaga pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Poker w[-4..-1]=Face w[1..4]=Lady w[1..4]=Gaga +artist w[-2]=Face w[-1]=by w[0]=Lady w[1]=Gaga wl[-2]=face wl[-1]=by wl[0]=lady wl[1]=gaga pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=F p1[-1]=b p1[0]=L p1[1]=G p2[-2]=Fa p2[-1]=by p2[0]=La p2[1]=Ga p3[-2]=Fac p3[-1]= p3[0]=Lad p3[1]=Gag p4[-2]=Face p4[-1]= p4[0]=Lady p4[1]=Gaga s1[-2]=e s1[-1]=y s1[0]=y s1[1]=a s2[-2]=ce s2[-1]=by s2[0]=dy s2[1]=ga s3[-2]=ace s3[-1]= s3[0]=ady s3[1]=aga s4[-2]=Face s4[-1]= s4[0]=Lady s4[1]=Gaga 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Face|by w[-1]|w[0]=by|Lady w[0]|w[1]=Lady|Gaga pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=song w[-4..-1]=Poker w[-4..-1]=Face w[-4..-1]=by w[1..4]=Gaga +artist w[-2]=by w[-1]=Lady w[0]=Gaga wl[-2]=by wl[-1]=lady wl[0]=gaga pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLL shape[0]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=L p1[0]=G p2[-2]=by p2[-1]=La p2[0]=Ga p3[-2]= p3[-1]=Lad p3[0]=Gag p4[-2]= p4[-1]=Lady p4[0]=Gaga s1[-2]=y s1[-1]=y s1[0]=a s2[-2]=by s2[-1]=dy s2[0]=ga s3[-2]= s3[-1]=ady s3[0]=aga s4[-2]= s4[-1]=Lady s4[0]=Gaga 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Lady w[-1]|w[0]=Lady|Gaga pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Poker w[-4..-1]=Face w[-4..-1]=by w[-4..-1]=Lady __EOS__ + +O w[0]=I'd w[1]=like w[2]=to wl[0]=i'd wl[1]=like wl[2]=to pos[0]=PRP pos[1]=MD pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=U'L shape[1]=LLLL shape[2]=LL shaped[0]=U'L shaped[1]=L shaped[2]=L type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=l p1[2]=t p2[0]=I' p2[1]=li p2[2]=to p3[0]=I'd p3[1]=lik p3[2]= p4[0]= p4[1]=like p4[2]= s1[0]=d s1[1]=e s1[2]=o s2[0]='d s2[1]=ke s2[2]=to s3[0]=I'd s3[1]=ike s3[2]= s4[0]= s4[1]=like s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=I'd|like w[1]|w[2]=like|to pos[0]|pos[1]=PRP|MD pos[1]|pos[2]=MD|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=like w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I'd w[0]=like w[1]=to w[2]=listen wl[-1]=i'd wl[0]=like wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=MD pos[1]=VB pos[2]=TO chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U'L shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U'L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=l p1[1]=t p1[2]=l p2[-1]=I' p2[0]=li p2[1]=to p2[2]=li p3[-1]=I'd p3[0]=lik p3[1]= p3[2]=lis p4[-1]= p4[0]=like p4[1]= p4[2]=list s1[-1]=d s1[0]=e s1[1]=o s1[2]=n s2[-1]='d s2[0]=ke s2[1]=to s2[2]=en s3[-1]=I'd s3[0]=ike s3[1]= s3[2]=ten s4[-1]= s4[0]=like s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I'd|like w[0]|w[1]=like|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|MD pos[0]|pos[1]=MD|VB pos[1]|pos[2]=VB|TO chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U'L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=music +O w[-2]=I'd w[-1]=like w[0]=to w[1]=listen w[2]=to wl[-2]=i'd wl[-1]=like wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=MD pos[0]=VB pos[1]=TO pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U'L shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U'L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=l p1[0]=t p1[1]=l p1[2]=t p2[-2]=I' p2[-1]=li p2[0]=to p2[1]=li p2[2]=to p3[-2]=I'd p3[-1]=lik p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=like p4[0]= p4[1]=list p4[2]= s1[-2]=d s1[-1]=e s1[0]=o s1[1]=n s1[2]=o s2[-2]='d s2[-1]=ke s2[0]=to s2[1]=en s2[2]=to s3[-2]=I'd s3[-1]=ike s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=like s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I'd|like w[-1]|w[0]=like|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|MD pos[-1]|pos[0]=MD|VB pos[0]|pos[1]=VB|TO pos[1]|pos[2]=TO|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U'L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[1..4]=listen w[1..4]=to w[1..4]=music +O w[-2]=like w[-1]=to w[0]=listen w[1]=to w[2]=music wl[-2]=like wl[-1]=to wl[0]=listen wl[1]=to wl[2]=music pos[-2]=MD pos[-1]=VB pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=l p1[1]=t p1[2]=m p2[-2]=li p2[-1]=to p2[0]=li p2[1]=to p2[2]=mu p3[-2]=lik p3[-1]= p3[0]=lis p3[1]= p3[2]=mus p4[-2]=like p4[-1]= p4[0]=list p4[1]= p4[2]=musi s1[-2]=e s1[-1]=o s1[0]=n s1[1]=o s1[2]=c s2[-2]=ke s2[-1]=to s2[0]=en s2[1]=to s2[2]=ic s3[-2]=ike s3[-1]= s3[0]=ten s3[1]= s3[2]=sic s4[-2]=like s4[-1]= s4[0]=sten s4[1]= s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=like|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|music pos[-2]|pos[-1]=MD|VB pos[-1]|pos[0]=VB|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[-4..-1]=to w[1..4]=to w[1..4]=music +O w[-2]=to w[-1]=listen w[0]=to w[1]=music wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=music pos[-2]=VB pos[-1]=TO pos[0]=VB pos[1]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=m p2[-2]=to p2[-1]=li p2[0]=to p2[1]=mu p3[-2]= p3[-1]=lis p3[0]= p3[1]=mus p4[-2]= p4[-1]=list p4[0]= p4[1]=musi s1[-2]=o s1[-1]=n s1[0]=o s1[1]=c s2[-2]=to s2[-1]=en s2[0]=to s2[1]=ic s3[-2]= s3[-1]=ten s3[0]= s3[1]=sic s4[-2]= s4[-1]=sten s4[0]= s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|music pos[-2]|pos[-1]=VB|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[-4..-1]=to w[-4..-1]=listen w[1..4]=music +O w[-2]=listen w[-1]=to w[0]=music wl[-2]=listen wl[-1]=to wl[0]=music pos[-2]=TO pos[-1]=VB pos[0]=IN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=l p1[-1]=t p1[0]=m p2[-2]=li p2[-1]=to p2[0]=mu p3[-2]=lis p3[-1]= p3[0]=mus p4[-2]=list p4[-1]= p4[0]=musi s1[-2]=n s1[-1]=o s1[0]=c s2[-2]=en s2[-1]=to s2[0]=ic s3[-2]=ten s3[-1]= s3[0]=sic s4[-2]=sten s4[-1]= s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|music pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=like w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to __EOS__ + +O w[0]=turn w[1]=on w[2]=the wl[0]=turn wl[1]=on wl[2]=the pos[0]=VB pos[1]=RP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=o p1[2]=t p2[0]=tu p2[1]=on p2[2]=th p3[0]=tur p3[1]= p3[2]=the p4[0]=turn p4[1]= p4[2]= s1[0]=n s1[1]=n s1[2]=e s2[0]=rn s2[1]=on s2[2]=he s3[0]=urn s3[1]= s3[2]=the s4[0]=turn s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=turn|on w[1]|w[2]=on|the pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=the w[1..4]=music __BOS__ +O w[-1]=turn w[0]=on w[1]=the w[2]=music wl[-1]=turn wl[0]=on wl[1]=the wl[2]=music pos[-1]=VB pos[0]=RP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=t p1[0]=o p1[1]=t p1[2]=m p2[-1]=tu p2[0]=on p2[1]=th p2[2]=mu p3[-1]=tur p3[0]= p3[1]=the p3[2]=mus p4[-1]=turn p4[0]= p4[1]= p4[2]=musi s1[-1]=n s1[0]=n s1[1]=e s1[2]=c s2[-1]=rn s2[0]=on s2[1]=he s2[2]=ic s3[-1]=urn s3[0]= s3[1]=the s3[2]=sic s4[-1]=turn s4[0]= s4[1]= s4[2]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=turn|on w[0]|w[1]=on|the w[1]|w[2]=the|music pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[1..4]=the w[1..4]=music +O w[-2]=turn w[-1]=on w[0]=the w[1]=music wl[-2]=turn wl[-1]=on wl[0]=the wl[1]=music pos[-2]=VB pos[-1]=RP pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=o p1[0]=t p1[1]=m p2[-2]=tu p2[-1]=on p2[0]=th p2[1]=mu p3[-2]=tur p3[-1]= p3[0]=the p3[1]=mus p4[-2]=turn p4[-1]= p4[0]= p4[1]=musi s1[-2]=n s1[-1]=n s1[0]=e s1[1]=c s2[-2]=rn s2[-1]=on s2[0]=he s2[1]=ic s3[-2]=urn s3[-1]= s3[0]=the s3[1]=sic s4[-2]=turn s4[-1]= s4[0]= s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=turn|on w[-1]|w[0]=on|the w[0]|w[1]=the|music pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[1..4]=music +O w[-2]=on w[-1]=the w[0]=music wl[-2]=on wl[-1]=the wl[0]=music pos[-2]=RP pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=t p1[0]=m p2[-2]=on p2[-1]=th p2[0]=mu p3[-2]= p3[-1]=the p3[0]=mus p4[-2]= p4[-1]= p4[0]=musi s1[-2]=n s1[-1]=e s1[0]=c s2[-2]=on s2[-1]=he s2[0]=ic s3[-2]= s3[-1]=the s3[0]=sic s4[-2]= s4[-1]= s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=on|the w[-1]|w[0]=the|music pos[-2]|pos[-1]=RP|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=the __EOS__ + +O w[0]=play w[1]=Anaconda w[2]=by wl[0]=play wl[1]=anaconda wl[2]=by pos[0]=VB pos[1]=NNP pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=A p1[2]=b p2[0]=pl p2[1]=An p2[2]=by p3[0]=pla p3[1]=Ana p3[2]= p4[0]=play p4[1]=Anac p4[2]= s1[0]=y s1[1]=a s1[2]=y s2[0]=ay s2[1]=da s2[2]=by s3[0]=lay s3[1]=nda s3[2]= s4[0]=play s4[1]=onda s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Anaconda w[1]|w[2]=Anaconda|by pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Anaconda w[1..4]=by w[1..4]=Nicki w[1..4]=Minaj __BOS__ +song w[-1]=play w[0]=Anaconda w[1]=by w[2]=Nicki wl[-1]=play wl[0]=anaconda wl[1]=by wl[2]=nicki pos[-1]=VB pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=LL shape[2]=ULLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=A p1[1]=b p1[2]=N p2[-1]=pl p2[0]=An p2[1]=by p2[2]=Ni p3[-1]=pla p3[0]=Ana p3[1]= p3[2]=Nic p4[-1]=play p4[0]=Anac p4[1]= p4[2]=Nick s1[-1]=y s1[0]=a s1[1]=y s1[2]=i s2[-1]=ay s2[0]=da s2[1]=by s2[2]=ki s3[-1]=lay s3[0]=nda s3[1]= s3[2]=cki s4[-1]=play s4[0]=onda s4[1]= s4[2]=icki 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Anaconda w[0]|w[1]=Anaconda|by w[1]|w[2]=by|Nicki pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Nicki w[1..4]=Minaj +O w[-2]=play w[-1]=Anaconda w[0]=by w[1]=Nicki w[2]=Minaj wl[-2]=play wl[-1]=anaconda wl[0]=by wl[1]=nicki wl[2]=minaj pos[-2]=VB pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=A p1[0]=b p1[1]=N p1[2]=M p2[-2]=pl p2[-1]=An p2[0]=by p2[1]=Ni p2[2]=Mi p3[-2]=pla p3[-1]=Ana p3[0]= p3[1]=Nic p3[2]=Min p4[-2]=play p4[-1]=Anac p4[0]= p4[1]=Nick p4[2]=Mina s1[-2]=y s1[-1]=a s1[0]=y s1[1]=i s1[2]=j s2[-2]=ay s2[-1]=da s2[0]=by s2[1]=ki s2[2]=aj s3[-2]=lay s3[-1]=nda s3[0]= s3[1]=cki s3[2]=naj s4[-2]=play s4[-1]=onda s4[0]= s4[1]=icki s4[2]=inaj 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Anaconda w[-1]|w[0]=Anaconda|by w[0]|w[1]=by|Nicki w[1]|w[2]=Nicki|Minaj pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Anaconda w[1..4]=Nicki w[1..4]=Minaj +artist w[-2]=Anaconda w[-1]=by w[0]=Nicki w[1]=Minaj wl[-2]=anaconda wl[-1]=by wl[0]=nicki wl[1]=minaj pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=A p1[-1]=b p1[0]=N p1[1]=M p2[-2]=An p2[-1]=by p2[0]=Ni p2[1]=Mi p3[-2]=Ana p3[-1]= p3[0]=Nic p3[1]=Min p4[-2]=Anac p4[-1]= p4[0]=Nick p4[1]=Mina s1[-2]=a s1[-1]=y s1[0]=i s1[1]=j s2[-2]=da s2[-1]=by s2[0]=ki s2[1]=aj s3[-2]=nda s3[-1]= s3[0]=cki s3[1]=naj s4[-2]=onda s4[-1]= s4[0]=icki s4[1]=inaj 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Anaconda|by w[-1]|w[0]=by|Nicki w[0]|w[1]=Nicki|Minaj pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Anaconda w[-4..-1]=by w[1..4]=Minaj +artist w[-2]=by w[-1]=Nicki w[0]=Minaj wl[-2]=by wl[-1]=nicki wl[0]=minaj pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=N p1[0]=M p2[-2]=by p2[-1]=Ni p2[0]=Mi p3[-2]= p3[-1]=Nic p3[0]=Min p4[-2]= p4[-1]=Nick p4[0]=Mina s1[-2]=y s1[-1]=i s1[0]=j s2[-2]=by s2[-1]=ki s2[0]=aj s3[-2]= s3[-1]=cki s3[0]=naj s4[-2]= s4[-1]=icki s4[0]=inaj 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Nicki w[-1]|w[0]=Nicki|Minaj pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Anaconda w[-4..-1]=by w[-4..-1]=Nicki __EOS__ + +O w[0]=play w[1]=Apparently w[2]=by wl[0]=play wl[1]=apparently wl[2]=by pos[0]=VB pos[1]=RB pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=A p1[2]=b p2[0]=pl p2[1]=Ap p2[2]=by p3[0]=pla p3[1]=App p3[2]= p4[0]=play p4[1]=Appa p4[2]= s1[0]=y s1[1]=y s1[2]=y s2[0]=ay s2[1]=ly s2[2]=by s3[0]=lay s3[1]=tly s3[2]= s4[0]=play s4[1]=ntly s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Apparently w[1]|w[2]=Apparently|by pos[0]|pos[1]=VB|RB pos[1]|pos[2]=RB|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Apparently w[1..4]=by w[1..4]=J w[1..4]=Cole __BOS__ +song w[-1]=play w[0]=Apparently w[1]=by w[2]=J wl[-1]=play wl[0]=apparently wl[1]=by wl[2]=j pos[-1]=VB pos[0]=RB pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLLLLL shape[1]=LL shape[2]=U shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=U type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllUpper p1[-1]=p p1[0]=A p1[1]=b p1[2]=J p2[-1]=pl p2[0]=Ap p2[1]=by p2[2]= p3[-1]=pla p3[0]=App p3[1]= p3[2]= p4[-1]=play p4[0]=Appa p4[1]= p4[2]= s1[-1]=y s1[0]=y s1[1]=y s1[2]=J s2[-1]=ay s2[0]=ly s2[1]=by s2[2]= s3[-1]=lay s3[0]=tly s3[1]= s3[2]= s4[-1]=play s4[0]=ntly s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Apparently w[0]|w[1]=Apparently|by w[1]|w[2]=by|J pos[-1]|pos[0]=VB|RB pos[0]|pos[1]=RB|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|U type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllUpper w[-4..-1]=play w[1..4]=by w[1..4]=J w[1..4]=Cole +O w[-2]=play w[-1]=Apparently w[0]=by w[1]=J w[2]=Cole wl[-2]=play wl[-1]=apparently wl[0]=by wl[1]=j wl[2]=cole pos[-2]=VB pos[-1]=RB pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLLLLL shape[0]=LL shape[1]=U shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=U shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllUpper type[2]=InitUpper p1[-2]=p p1[-1]=A p1[0]=b p1[1]=J p1[2]=C p2[-2]=pl p2[-1]=Ap p2[0]=by p2[1]= p2[2]=Co p3[-2]=pla p3[-1]=App p3[0]= p3[1]= p3[2]=Col p4[-2]=play p4[-1]=Appa p4[0]= p4[1]= p4[2]=Cole s1[-2]=y s1[-1]=y s1[0]=y s1[1]=J s1[2]=e s2[-2]=ay s2[-1]=ly s2[0]=by s2[1]= s2[2]=le s3[-2]=lay s3[-1]=tly s3[0]= s3[1]= s3[2]=ole s4[-2]=play s4[-1]=ntly s4[0]= s4[1]= s4[2]=Cole 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=yes au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Apparently w[-1]|w[0]=Apparently|by w[0]|w[1]=by|J w[1]|w[2]=J|Cole pos[-2]|pos[-1]=VB|RB pos[-1]|pos[0]=RB|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=Apparently w[1..4]=J w[1..4]=Cole +artist w[-2]=Apparently w[-1]=by w[0]=J w[1]=Cole wl[-2]=apparently wl[-1]=by wl[0]=j wl[1]=cole pos[-2]=RB pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLLLLL shape[-1]=LL shape[0]=U shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=U shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllUpper type[1]=InitUpper p1[-2]=A p1[-1]=b p1[0]=J p1[1]=C p2[-2]=Ap p2[-1]=by p2[0]= p2[1]=Co p3[-2]=App p3[-1]= p3[0]= p3[1]=Col p4[-2]=Appa p4[-1]= p4[0]= p4[1]=Cole s1[-2]=y s1[-1]=y s1[0]=J s1[1]=e s2[-2]=ly s2[-1]=by s2[0]= s2[1]=le s3[-2]=tly s3[-1]= s3[0]= s3[1]=ole s4[-2]=ntly s4[-1]= s4[0]= s4[1]=Cole 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=yes au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Apparently|by w[-1]|w[0]=by|J w[0]|w[1]=J|Cole pos[-2]|pos[-1]=RB|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=Apparently w[-4..-1]=by w[1..4]=Cole +artist w[-2]=by w[-1]=J w[0]=Cole wl[-2]=by wl[-1]=j wl[0]=cole pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=U shape[0]=ULLL shaped[-2]=L shaped[-1]=U shaped[0]=UL type[-2]=AllLetter type[-1]=AllUpper type[0]=InitUpper p1[-2]=b p1[-1]=J p1[0]=C p2[-2]=by p2[-1]= p2[0]=Co p3[-2]= p3[-1]= p3[0]=Col p4[-2]= p4[-1]= p4[0]=Cole s1[-2]=y s1[-1]=J s1[0]=e s2[-2]=by s2[-1]= s2[0]=le s3[-2]= s3[-1]= s3[0]=ole s4[-2]= s4[-1]= s4[0]=Cole 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=yes au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=no cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|J w[-1]|w[0]=J|Cole pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|UL type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=Apparently w[-4..-1]=by w[-4..-1]=J __EOS__ + +O w[0]=play w[1]=Thriller w[2]=Michael wl[0]=play wl[1]=thriller wl[2]=michael pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=T p1[2]=M p2[0]=pl p2[1]=Th p2[2]=Mi p3[0]=pla p3[1]=Thr p3[2]=Mic p4[0]=play p4[1]=Thri p4[2]=Mich s1[0]=y s1[1]=r s1[2]=l s2[0]=ay s2[1]=er s2[2]=el s3[0]=lay s3[1]=ler s3[2]=ael s4[0]=play s4[1]=ller s4[2]=hael 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Thriller w[1]|w[2]=Thriller|Michael pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Thriller w[1..4]=Michael w[1..4]=Jackson __BOS__ +song w[-1]=play w[0]=Thriller w[1]=Michael w[2]=Jackson wl[-1]=play wl[0]=thriller wl[1]=michael wl[2]=jackson pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=ULLLLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=T p1[1]=M p1[2]=J p2[-1]=pl p2[0]=Th p2[1]=Mi p2[2]=Ja p3[-1]=pla p3[0]=Thr p3[1]=Mic p3[2]=Jac p4[-1]=play p4[0]=Thri p4[1]=Mich p4[2]=Jack s1[-1]=y s1[0]=r s1[1]=l s1[2]=n s2[-1]=ay s2[0]=er s2[1]=el s2[2]=on s3[-1]=lay s3[0]=ler s3[1]=ael s3[2]=son s4[-1]=play s4[0]=ller s4[1]=hael s4[2]=kson 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Thriller w[0]|w[1]=Thriller|Michael w[1]|w[2]=Michael|Jackson pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Michael w[1..4]=Jackson +artist w[-2]=play w[-1]=Thriller w[0]=Michael w[1]=Jackson wl[-2]=play wl[-1]=thriller wl[0]=michael wl[1]=jackson pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=ULLLLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=p p1[-1]=T p1[0]=M p1[1]=J p2[-2]=pl p2[-1]=Th p2[0]=Mi p2[1]=Ja p3[-2]=pla p3[-1]=Thr p3[0]=Mic p3[1]=Jac p4[-2]=play p4[-1]=Thri p4[0]=Mich p4[1]=Jack s1[-2]=y s1[-1]=r s1[0]=l s1[1]=n s2[-2]=ay s2[-1]=er s2[0]=el s2[1]=on s3[-2]=lay s3[-1]=ler s3[0]=ael s3[1]=son s4[-2]=play s4[-1]=ller s4[0]=hael s4[1]=kson 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Thriller w[-1]|w[0]=Thriller|Michael w[0]|w[1]=Michael|Jackson pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Thriller w[1..4]=Jackson +artist w[-2]=Thriller w[-1]=Michael w[0]=Jackson wl[-2]=thriller wl[-1]=michael wl[0]=jackson pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLLLL shape[-1]=ULLLLLL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=T p1[-1]=M p1[0]=J p2[-2]=Th p2[-1]=Mi p2[0]=Ja p3[-2]=Thr p3[-1]=Mic p3[0]=Jac p4[-2]=Thri p4[-1]=Mich p4[0]=Jack s1[-2]=r s1[-1]=l s1[0]=n s2[-2]=er s2[-1]=el s2[0]=on s3[-2]=ler s3[-1]=ael s3[0]=son s4[-2]=ller s4[-1]=hael s4[0]=kson 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Thriller|Michael w[-1]|w[0]=Michael|Jackson pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Thriller w[-4..-1]=Michael __EOS__ + +O w[0]=play w[1]=Keep w[2]=On wl[0]=play wl[1]=keep wl[2]=on pos[0]=VB pos[1]=VB pos[2]=VB chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLL shape[2]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=K p1[2]=O p2[0]=pl p2[1]=Ke p2[2]=On p3[0]=pla p3[1]=Kee p3[2]= p4[0]=play p4[1]=Keep p4[2]= s1[0]=y s1[1]=p s1[2]=n s2[0]=ay s2[1]=ep s2[2]=On s3[0]=lay s3[1]=eep s3[2]= s4[0]=play s4[1]=Keep s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Keep w[1]|w[2]=Keep|On pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Keep w[1..4]=On w[1..4]=Walking w[1..4]=by __BOS__ +song w[-1]=play w[0]=Keep w[1]=On w[2]=Walking wl[-1]=play wl[0]=keep wl[1]=on wl[2]=walking pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=VB chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLL shape[1]=UL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=K p1[1]=O p1[2]=W p2[-1]=pl p2[0]=Ke p2[1]=On p2[2]=Wa p3[-1]=pla p3[0]=Kee p3[1]= p3[2]=Wal p4[-1]=play p4[0]=Keep p4[1]= p4[2]=Walk s1[-1]=y s1[0]=p s1[1]=n s1[2]=g s2[-1]=ay s2[0]=ep s2[1]=On s2[2]=ng s3[-1]=lay s3[0]=eep s3[1]= s3[2]=ing s4[-1]=play s4[0]=Keep s4[1]= s4[2]=king 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Keep w[0]|w[1]=Keep|On w[1]|w[2]=On|Walking pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=On w[1..4]=Walking w[1..4]=by w[1..4]=CeCe +song w[-2]=play w[-1]=Keep w[0]=On w[1]=Walking w[2]=by wl[-2]=play wl[-1]=keep wl[0]=on wl[1]=walking wl[2]=by pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULLL shape[0]=UL shape[1]=ULLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=K p1[0]=O p1[1]=W p1[2]=b p2[-2]=pl p2[-1]=Ke p2[0]=On p2[1]=Wa p2[2]=by p3[-2]=pla p3[-1]=Kee p3[0]= p3[1]=Wal p3[2]= p4[-2]=play p4[-1]=Keep p4[0]= p4[1]=Walk p4[2]= s1[-2]=y s1[-1]=p s1[0]=n s1[1]=g s1[2]=y s2[-2]=ay s2[-1]=ep s2[0]=On s2[1]=ng s2[2]=by s3[-2]=lay s3[-1]=eep s3[0]= s3[1]=ing s3[2]= s4[-2]=play s4[-1]=Keep s4[0]= s4[1]=king s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Keep w[-1]|w[0]=Keep|On w[0]|w[1]=On|Walking w[1]|w[2]=Walking|by pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Keep w[1..4]=Walking w[1..4]=by w[1..4]=CeCe +song w[-2]=Keep w[-1]=On w[0]=Walking w[1]=by w[2]=CeCe wl[-2]=keep wl[-1]=on wl[0]=walking wl[1]=by wl[2]=cece pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLL shape[-1]=UL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULUL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=ULUL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=K p1[-1]=O p1[0]=W p1[1]=b p1[2]=C p2[-2]=Ke p2[-1]=On p2[0]=Wa p2[1]=by p2[2]=Ce p3[-2]=Kee p3[-1]= p3[0]=Wal p3[1]= p3[2]=CeC p4[-2]=Keep p4[-1]= p4[0]=Walk p4[1]= p4[2]=CeCe s1[-2]=p s1[-1]=n s1[0]=g s1[1]=y s1[2]=e s2[-2]=ep s2[-1]=On s2[0]=ng s2[1]=by s2[2]=Ce s3[-2]=eep s3[-1]= s3[0]=ing s3[1]= s3[2]=eCe s4[-2]=Keep s4[-1]= s4[0]=king s4[1]= s4[2]=CeCe 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Keep|On w[-1]|w[0]=On|Walking w[0]|w[1]=Walking|by w[1]|w[2]=by|CeCe pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|ULUL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Keep w[-4..-1]=On w[1..4]=by w[1..4]=CeCe +O w[-2]=On w[-1]=Walking w[0]=by w[1]=CeCe wl[-2]=on wl[-1]=walking wl[0]=by wl[1]=cece pos[-2]=VB pos[-1]=VB pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=UL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULUL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=ULUL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=O p1[-1]=W p1[0]=b p1[1]=C p2[-2]=On p2[-1]=Wa p2[0]=by p2[1]=Ce p3[-2]= p3[-1]=Wal p3[0]= p3[1]=CeC p4[-2]= p4[-1]=Walk p4[0]= p4[1]=CeCe s1[-2]=n s1[-1]=g s1[0]=y s1[1]=e s2[-2]=On s2[-1]=ng s2[0]=by s2[1]=Ce s3[-2]= s3[-1]=ing s3[0]= s3[1]=eCe s4[-2]= s4[-1]=king s4[0]= s4[1]=CeCe 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=On|Walking w[-1]|w[0]=Walking|by w[0]|w[1]=by|CeCe pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|ULUL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Keep w[-4..-1]=On w[-4..-1]=Walking w[1..4]=CeCe +artist w[-2]=Walking w[-1]=by w[0]=CeCe wl[-2]=walking wl[-1]=by wl[0]=cece pos[-2]=VB pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULUL shaped[-2]=UL shaped[-1]=L shaped[0]=ULUL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=W p1[-1]=b p1[0]=C p2[-2]=Wa p2[-1]=by p2[0]=Ce p3[-2]=Wal p3[-1]= p3[0]=CeC p4[-2]=Walk p4[-1]= p4[0]=CeCe s1[-2]=g s1[-1]=y s1[0]=e s2[-2]=ng s2[-1]=by s2[0]=Ce s3[-2]=ing s3[-1]= s3[0]=eCe s4[-2]=king s4[-1]= s4[0]=CeCe 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Walking|by w[-1]|w[0]=by|CeCe pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|ULUL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Keep w[-4..-1]=On w[-4..-1]=Walking w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=the w[2]=song wl[0]=play wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=the p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=he s2[2]=ng s3[0]=lay s3[1]=the s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song w[1..4]=Nothing w[1..4]=Gonna __BOS__ +O w[-1]=play w[0]=the w[1]=song w[2]=Nothing wl[-1]=play wl[0]=the wl[1]=song wl[2]=nothing pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=s p1[2]=N p2[-1]=pl p2[0]=th p2[1]=so p2[2]=No p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Not p4[-1]=play p4[0]= p4[1]=song p4[2]=Noth s1[-1]=y s1[0]=e s1[1]=g s1[2]=g s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=ng s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ing s4[-1]=play s4[0]= s4[1]=song s4[2]=hing 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Nothing pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Nothing w[1..4]=Gonna w[1..4]=Stop +O w[-2]=play w[-1]=the w[0]=song w[1]=Nothing w[2]=Gonna wl[-2]=play wl[-1]=the wl[0]=song wl[1]=nothing wl[2]=gonna pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=t p1[0]=s p1[1]=N p1[2]=G p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=No p2[2]=Go p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Not p3[2]=Gon p4[-2]=play p4[-1]= p4[0]=song p4[1]=Noth p4[2]=Gonn s1[-2]=y s1[-1]=e s1[0]=g s1[1]=g s1[2]=a s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=ng s2[2]=na s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ing s3[2]=nna s4[-2]=play s4[-1]= s4[0]=song s4[1]=hing s4[2]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Nothing w[1]|w[2]=Nothing|Gonna pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[1..4]=Nothing w[1..4]=Gonna w[1..4]=Stop w[1..4]=Us +song w[-2]=the w[-1]=song w[0]=Nothing w[1]=Gonna w[2]=Stop wl[-2]=the wl[-1]=song wl[0]=nothing wl[1]=gonna wl[2]=stop pos[-2]=DT pos[-1]=JJ pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=t p1[-1]=s p1[0]=N p1[1]=G p1[2]=S p2[-2]=th p2[-1]=so p2[0]=No p2[1]=Go p2[2]=St p3[-2]=the p3[-1]=son p3[0]=Not p3[1]=Gon p3[2]=Sto p4[-2]= p4[-1]=song p4[0]=Noth p4[1]=Gonn p4[2]=Stop s1[-2]=e s1[-1]=g s1[0]=g s1[1]=a s1[2]=p s2[-2]=he s2[-1]=ng s2[0]=ng s2[1]=na s2[2]=op s3[-2]=the s3[-1]=ong s3[0]=ing s3[1]=nna s3[2]=top s4[-2]= s4[-1]=song s4[0]=hing s4[1]=onna s4[2]=Stop 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Nothing w[0]|w[1]=Nothing|Gonna w[1]|w[2]=Gonna|Stop pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[1..4]=Gonna w[1..4]=Stop w[1..4]=Us w[1..4]=Now +song w[-2]=song w[-1]=Nothing w[0]=Gonna w[1]=Stop w[2]=Us wl[-2]=song wl[-1]=nothing wl[0]=gonna wl[1]=stop wl[2]=us pos[-2]=JJ pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLL shape[1]=ULLL shape[2]=UL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=s p1[-1]=N p1[0]=G p1[1]=S p1[2]=U p2[-2]=so p2[-1]=No p2[0]=Go p2[1]=St p2[2]=Us p3[-2]=son p3[-1]=Not p3[0]=Gon p3[1]=Sto p3[2]= p4[-2]=song p4[-1]=Noth p4[0]=Gonn p4[1]=Stop p4[2]= s1[-2]=g s1[-1]=g s1[0]=a s1[1]=p s1[2]=s s2[-2]=ng s2[-1]=ng s2[0]=na s2[1]=op s2[2]=Us s3[-2]=ong s3[-1]=ing s3[0]=nna s3[1]=top s3[2]= s4[-2]=song s4[-1]=hing s4[0]=onna s4[1]=Stop s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Nothing w[-1]|w[0]=Nothing|Gonna w[0]|w[1]=Gonna|Stop w[1]|w[2]=Stop|Us pos[-2]|pos[-1]=JJ|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Nothing w[1..4]=Stop w[1..4]=Us w[1..4]=Now +song w[-2]=Nothing w[-1]=Gonna w[0]=Stop w[1]=Us w[2]=Now wl[-2]=nothing wl[-1]=gonna wl[0]=stop wl[1]=us wl[2]=now pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLLLL shape[-1]=ULLLL shape[0]=ULLL shape[1]=UL shape[2]=ULL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=N p1[-1]=G p1[0]=S p1[1]=U p1[2]=N p2[-2]=No p2[-1]=Go p2[0]=St p2[1]=Us p2[2]=No p3[-2]=Not p3[-1]=Gon p3[0]=Sto p3[1]= p3[2]=Now p4[-2]=Noth p4[-1]=Gonn p4[0]=Stop p4[1]= p4[2]= s1[-2]=g s1[-1]=a s1[0]=p s1[1]=s s1[2]=w s2[-2]=ng s2[-1]=na s2[0]=op s2[1]=Us s2[2]=ow s3[-2]=ing s3[-1]=nna s3[0]=top s3[1]= s3[2]=Now s4[-2]=hing s4[-1]=onna s4[0]=Stop s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Nothing|Gonna w[-1]|w[0]=Gonna|Stop w[0]|w[1]=Stop|Us w[1]|w[2]=Us|Now pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Nothing w[-4..-1]=Gonna w[1..4]=Us w[1..4]=Now +song w[-2]=Gonna w[-1]=Stop w[0]=Us w[1]=Now wl[-2]=gonna wl[-1]=stop wl[0]=us wl[1]=now pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLLL shape[-1]=ULLL shape[0]=UL shape[1]=ULL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=G p1[-1]=S p1[0]=U p1[1]=N p2[-2]=Go p2[-1]=St p2[0]=Us p2[1]=No p3[-2]=Gon p3[-1]=Sto p3[0]= p3[1]=Now p4[-2]=Gonn p4[-1]=Stop p4[0]= p4[1]= s1[-2]=a s1[-1]=p s1[0]=s s1[1]=w s2[-2]=na s2[-1]=op s2[0]=Us s2[1]=ow s3[-2]=nna s3[-1]=top s3[0]= s3[1]=Now s4[-2]=onna s4[-1]=Stop s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Gonna|Stop w[-1]|w[0]=Stop|Us w[0]|w[1]=Us|Now pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=song w[-4..-1]=Nothing w[-4..-1]=Gonna w[-4..-1]=Stop w[1..4]=Now +song w[-2]=Stop w[-1]=Us w[0]=Now wl[-2]=stop wl[-1]=us wl[0]=now pos[-2]=NN pos[-1]=NN pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=UL shape[0]=ULL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=S p1[-1]=U p1[0]=N p2[-2]=St p2[-1]=Us p2[0]=No p3[-2]=Sto p3[-1]= p3[0]=Now p4[-2]=Stop p4[-1]= p4[0]= s1[-2]=p s1[-1]=s s1[0]=w s2[-2]=op s2[-1]=Us s2[0]=ow s3[-2]=top s3[-1]= s3[0]=Now s4[-2]=Stop s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Stop|Us w[-1]|w[0]=Us|Now pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Nothing w[-4..-1]=Gonna w[-4..-1]=Stop w[-4..-1]=Us __EOS__ + +O w[0]=play w[1]=Beyonce wl[0]=play wl[1]=beyonce pos[0]=VB pos[1]=NNP chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=ULLLLLL shaped[0]=L shaped[1]=UL type[0]=AllLetter type[1]=InitUpper p1[0]=p p1[1]=B p2[0]=pl p2[1]=Be p3[0]=pla p3[1]=Bey p4[0]=play p4[1]=Beyo s1[0]=y s1[1]=e s2[0]=ay s2[1]=ce s3[0]=lay s3[1]=nce s4[0]=play s4[1]=once 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=yes cs[0]=no cs[1]=no w[0]|w[1]=play|Beyonce pos[0]|pos[1]=VB|NNP chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|UL type[0]|type[1]=AllLetter|InitUpper w[1..4]=Beyonce __BOS__ +artist w[-1]=play w[0]=Beyonce wl[-1]=play wl[0]=beyonce pos[-1]=VB pos[0]=NNP chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=ULLLLLL shaped[-1]=L shaped[0]=UL type[-1]=AllLetter type[0]=InitUpper p1[-1]=p p1[0]=B p2[-1]=pl p2[0]=Be p3[-1]=pla p3[0]=Bey p4[-1]=play p4[0]=Beyo s1[-1]=y s1[0]=e s2[-1]=ay s2[0]=ce s3[-1]=lay s3[0]=nce s4[-1]=play s4[0]=once 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=yes cs[-1]=no cs[0]=no w[-1]|w[0]=play|Beyonce pos[-1]|pos[0]=VB|NNP chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|UL type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=How w[1..4]=You __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=How wl[-1]=can wl[0]=you wl[1]=play wl[2]=how pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=WRB chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=ULL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=c p1[0]=y p1[1]=p p1[2]=H p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=Ho p3[-1]=can p3[0]=you p3[1]=pla p3[2]=How p4[-1]= p4[0]= p4[1]=play p4[2]= s1[-1]=n s1[0]=u s1[1]=y s1[2]=w s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=ow s3[-1]=can s3[0]=you s3[1]=lay s3[2]=How s4[-1]= s4[0]= s4[1]=play s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|How pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|WRB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[1..4]=play w[1..4]=How w[1..4]=You w[1..4]=Remind +O w[-2]=can w[-1]=you w[0]=play w[1]=How w[2]=You wl[-2]=can wl[-1]=you wl[0]=play wl[1]=how wl[2]=you pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=WRB pos[2]=WRB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=c p1[-1]=y p1[0]=p p1[1]=H p1[2]=Y p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=Ho p2[2]=Yo p3[-2]=can p3[-1]=you p3[0]=pla p3[1]=How p3[2]=You p4[-2]= p4[-1]= p4[0]=play p4[1]= p4[2]= s1[-2]=n s1[-1]=u s1[0]=y s1[1]=w s1[2]=u s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=ow s2[2]=ou s3[-2]=can s3[-1]=you s3[0]=lay s3[1]=How s3[2]=You s4[-2]= s4[-1]= s4[0]=play s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|How w[1]|w[2]=How|You pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|WRB pos[1]|pos[2]=WRB|WRB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[1..4]=How w[1..4]=You w[1..4]=Remind w[1..4]=Me +song w[-2]=you w[-1]=play w[0]=How w[1]=You w[2]=Remind wl[-2]=you wl[-1]=play wl[0]=how wl[1]=you wl[2]=remind pos[-2]=PRP pos[-1]=VB pos[0]=WRB pos[1]=WRB pos[2]=WRB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULL shape[1]=ULL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=y p1[-1]=p p1[0]=H p1[1]=Y p1[2]=R p2[-2]=yo p2[-1]=pl p2[0]=Ho p2[1]=Yo p2[2]=Re p3[-2]=you p3[-1]=pla p3[0]=How p3[1]=You p3[2]=Rem p4[-2]= p4[-1]=play p4[0]= p4[1]= p4[2]=Remi s1[-2]=u s1[-1]=y s1[0]=w s1[1]=u s1[2]=d s2[-2]=ou s2[-1]=ay s2[0]=ow s2[1]=ou s2[2]=nd s3[-2]=you s3[-1]=lay s3[0]=How s3[1]=You s3[2]=ind s4[-2]= s4[-1]=play s4[0]= s4[1]= s4[2]=mind 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|How w[0]|w[1]=How|You w[1]|w[2]=You|Remind pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|WRB pos[0]|pos[1]=WRB|WRB pos[1]|pos[2]=WRB|WRB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[1..4]=You w[1..4]=Remind w[1..4]=Me +song w[-2]=play w[-1]=How w[0]=You w[1]=Remind w[2]=Me wl[-2]=play wl[-1]=how wl[0]=you wl[1]=remind wl[2]=me pos[-2]=VB pos[-1]=WRB pos[0]=WRB pos[1]=WRB pos[2]=WRB chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULL shape[1]=ULLLLL shape[2]=UL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=H p1[0]=Y p1[1]=R p1[2]=M p2[-2]=pl p2[-1]=Ho p2[0]=Yo p2[1]=Re p2[2]=Me p3[-2]=pla p3[-1]=How p3[0]=You p3[1]=Rem p3[2]= p4[-2]=play p4[-1]= p4[0]= p4[1]=Remi p4[2]= s1[-2]=y s1[-1]=w s1[0]=u s1[1]=d s1[2]=e s2[-2]=ay s2[-1]=ow s2[0]=ou s2[1]=nd s2[2]=Me s3[-2]=lay s3[-1]=How s3[0]=You s3[1]=ind s3[2]= s4[-2]=play s4[-1]= s4[0]= s4[1]=mind s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|How w[-1]|w[0]=How|You w[0]|w[1]=You|Remind w[1]|w[2]=Remind|Me pos[-2]|pos[-1]=VB|WRB pos[-1]|pos[0]=WRB|WRB pos[0]|pos[1]=WRB|WRB pos[1]|pos[2]=WRB|WRB chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[-4..-1]=How w[1..4]=Remind w[1..4]=Me +song w[-2]=How w[-1]=You w[0]=Remind w[1]=Me wl[-2]=how wl[-1]=you wl[0]=remind wl[1]=me pos[-2]=WRB pos[-1]=WRB pos[0]=WRB pos[1]=WRB chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=ULL shape[0]=ULLLLL shape[1]=UL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=H p1[-1]=Y p1[0]=R p1[1]=M p2[-2]=Ho p2[-1]=Yo p2[0]=Re p2[1]=Me p3[-2]=How p3[-1]=You p3[0]=Rem p3[1]= p4[-2]= p4[-1]= p4[0]=Remi p4[1]= s1[-2]=w s1[-1]=u s1[0]=d s1[1]=e s2[-2]=ow s2[-1]=ou s2[0]=nd s2[1]=Me s3[-2]=How s3[-1]=You s3[0]=ind s3[1]= s4[-2]= s4[-1]= s4[0]=mind s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=How|You w[-1]|w[0]=You|Remind w[0]|w[1]=Remind|Me pos[-2]|pos[-1]=WRB|WRB pos[-1]|pos[0]=WRB|WRB pos[0]|pos[1]=WRB|WRB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=you w[-4..-1]=play w[-4..-1]=How w[-4..-1]=You w[1..4]=Me +song w[-2]=You w[-1]=Remind w[0]=Me wl[-2]=you wl[-1]=remind wl[0]=me pos[-2]=WRB pos[-1]=WRB pos[0]=WRB chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=ULLLLL shape[0]=UL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=Y p1[-1]=R p1[0]=M p2[-2]=Yo p2[-1]=Re p2[0]=Me p3[-2]=You p3[-1]=Rem p3[0]= p4[-2]= p4[-1]=Remi p4[0]= s1[-2]=u s1[-1]=d s1[0]=e s2[-2]=ou s2[-1]=nd s2[0]=Me s3[-2]=You s3[-1]=ind s3[0]= s4[-2]= s4[-1]=mind s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=You|Remind w[-1]|w[0]=Remind|Me pos[-2]|pos[-1]=WRB|WRB pos[-1]|pos[0]=WRB|WRB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=How w[-4..-1]=You w[-4..-1]=Remind __EOS__ + +song w[0]=Hollaback w[1]=Girl w[2]=music wl[0]=hollaback wl[1]=girl wl[2]=music pos[0]=NNP pos[1]=NNP pos[2]=NN chk[0]=I chk[1]=I chk[2]=O shape[0]=ULLLLLLLL shape[1]=ULLL shape[2]=LLLLL shaped[0]=UL shaped[1]=UL shaped[2]=L type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[0]=H p1[1]=G p1[2]=m p2[0]=Ho p2[1]=Gi p2[2]=mu p3[0]=Hol p3[1]=Gir p3[2]=mus p4[0]=Holl p4[1]=Girl p4[2]=musi s1[0]=k s1[1]=l s1[2]=c s2[0]=ck s2[1]=rl s2[2]=ic s3[0]=ack s3[1]=irl s3[2]=sic s4[0]=back s4[1]=Girl s4[2]=usic 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=Hollaback|Girl w[1]|w[2]=Girl|music pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Girl w[1..4]=music __BOS__ +song w[-1]=Hollaback w[0]=Girl w[1]=music wl[-1]=hollaback wl[0]=girl wl[1]=music pos[-1]=NNP pos[0]=NNP pos[1]=NN chk[-1]=I chk[0]=I chk[1]=O shape[-1]=ULLLLLLLL shape[0]=ULLL shape[1]=LLLLL shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-1]=H p1[0]=G p1[1]=m p2[-1]=Ho p2[0]=Gi p2[1]=mu p3[-1]=Hol p3[0]=Gir p3[1]=mus p4[-1]=Holl p4[0]=Girl p4[1]=musi s1[-1]=k s1[0]=l s1[1]=c s2[-1]=ck s2[0]=rl s2[1]=ic s3[-1]=ack s3[0]=irl s3[1]=sic s4[-1]=back s4[0]=Girl s4[1]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=no al[0]=no al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=yes cd[0]=yes cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=Hollaback|Girl w[0]|w[1]=Girl|music pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=Hollaback w[1..4]=music +O w[-2]=Hollaback w[-1]=Girl w[0]=music wl[-2]=hollaback wl[-1]=girl wl[0]=music pos[-2]=NNP pos[-1]=NNP pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULLLLLLLL shape[-1]=ULLL shape[0]=LLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=H p1[-1]=G p1[0]=m p2[-2]=Ho p2[-1]=Gi p2[0]=mu p3[-2]=Hol p3[-1]=Gir p3[0]=mus p4[-2]=Holl p4[-1]=Girl p4[0]=musi s1[-2]=k s1[-1]=l s1[0]=c s2[-2]=ck s2[-1]=rl s2[0]=ic s3[-2]=ack s3[-1]=irl s3[0]=sic s4[-2]=back s4[-1]=Girl s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Hollaback|Girl w[-1]|w[0]=Girl|music pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=Hollaback w[-4..-1]=Girl __EOS__ + +O w[0]=play w[1]=RnB wl[0]=play wl[1]=rnb pos[0]=VB pos[1]=NN chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=ULU shaped[0]=L shaped[1]=ULU type[0]=AllLetter type[1]=InitUpper p1[0]=p p1[1]=R p2[0]=pl p2[1]=Rn p3[0]=pla p3[1]=RnB p4[0]=play p4[1]= s1[0]=y s1[1]=B s2[0]=ay s2[1]=nB s3[0]=lay s3[1]=RnB s4[0]=play s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=yes cs[0]=no cs[1]=no w[0]|w[1]=play|RnB pos[0]|pos[1]=VB|NN chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|ULU type[0]|type[1]=AllLetter|InitUpper w[1..4]=RnB __BOS__ +genre w[-1]=play w[0]=RnB wl[-1]=play wl[0]=rnb pos[-1]=VB pos[0]=NN chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=ULU shaped[-1]=L shaped[0]=ULU type[-1]=AllLetter type[0]=InitUpper p1[-1]=p p1[0]=R p2[-1]=pl p2[0]=Rn p3[-1]=pla p3[0]=RnB p4[-1]=play p4[0]= s1[-1]=y s1[0]=B s2[-1]=ay s2[0]=nB s3[-1]=lay s3[0]=RnB s4[-1]=play s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=yes cs[-1]=no cs[0]=no w[-1]|w[0]=play|RnB pos[-1]|pos[0]=VB|NN chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|ULU type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play __EOS__ + +O w[0]=play w[1]=Meghan w[2]=Trainor wl[0]=play wl[1]=meghan wl[2]=trainor pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=M p1[2]=T p2[0]=pl p2[1]=Me p2[2]=Tr p3[0]=pla p3[1]=Meg p3[2]=Tra p4[0]=play p4[1]=Megh p4[2]=Trai s1[0]=y s1[1]=n s1[2]=r s2[0]=ay s2[1]=an s2[2]=or s3[0]=lay s3[1]=han s3[2]=nor s4[0]=play s4[1]=ghan s4[2]=inor 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Meghan w[1]|w[2]=Meghan|Trainor pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Meghan w[1..4]=Trainor __BOS__ +artist w[-1]=play w[0]=Meghan w[1]=Trainor wl[-1]=play wl[0]=meghan wl[1]=trainor pos[-1]=VB pos[0]=NNP pos[1]=NNP chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULLLLL shape[1]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=M p1[1]=T p2[-1]=pl p2[0]=Me p2[1]=Tr p3[-1]=pla p3[0]=Meg p3[1]=Tra p4[-1]=play p4[0]=Megh p4[1]=Trai s1[-1]=y s1[0]=n s1[1]=r s2[-1]=ay s2[0]=an s2[1]=or s3[-1]=lay s3[0]=han s3[1]=nor s4[-1]=play s4[0]=ghan s4[1]=inor 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|Meghan w[0]|w[1]=Meghan|Trainor pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Trainor +artist w[-2]=play w[-1]=Meghan w[0]=Trainor wl[-2]=play wl[-1]=meghan wl[0]=trainor pos[-2]=VB pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=M p1[0]=T p2[-2]=pl p2[-1]=Me p2[0]=Tr p3[-2]=pla p3[-1]=Meg p3[0]=Tra p4[-2]=play p4[-1]=Megh p4[0]=Trai s1[-2]=y s1[-1]=n s1[0]=r s2[-2]=ay s2[-1]=an s2[0]=or s3[-2]=lay s3[-1]=han s3[0]=nor s4[-2]=play s4[-1]=ghan s4[0]=inor 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|Meghan w[-1]|w[0]=Meghan|Trainor pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Meghan __EOS__ + +O w[0]=play w[1]=album w[2]=Master wl[0]=play wl[1]=album wl[2]=master pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=M p2[0]=pl p2[1]=al p2[2]=Ma p3[0]=pla p3[1]=alb p3[2]=Mas p4[0]=play p4[1]=albu p4[2]=Mast s1[0]=y s1[1]=m s1[2]=r s2[0]=ay s2[1]=um s2[2]=er s3[0]=lay s3[1]=bum s3[2]=ter s4[0]=play s4[1]=lbum s4[2]=ster 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Master pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Master w[1..4]=of w[1..4]=Puppets __BOS__ +O w[-1]=play w[0]=album w[1]=Master w[2]=of wl[-1]=play wl[0]=album wl[1]=master wl[2]=of pos[-1]=VB pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=M p1[2]=o p2[-1]=pl p2[0]=al p2[1]=Ma p2[2]=of p3[-1]=pla p3[0]=alb p3[1]=Mas p3[2]= p4[-1]=play p4[0]=albu p4[1]=Mast p4[2]= s1[-1]=y s1[0]=m s1[1]=r s1[2]=f s2[-1]=ay s2[0]=um s2[1]=er s2[2]=of s3[-1]=lay s3[0]=bum s3[1]=ter s3[2]= s4[-1]=play s4[0]=lbum s4[1]=ster s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Master w[1]|w[2]=Master|of pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Master w[1..4]=of w[1..4]=Puppets +album w[-2]=play w[-1]=album w[0]=Master w[1]=of w[2]=Puppets wl[-2]=play wl[-1]=album wl[0]=master wl[1]=of wl[2]=puppets pos[-2]=VB pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=M p1[1]=o p1[2]=P p2[-2]=pl p2[-1]=al p2[0]=Ma p2[1]=of p2[2]=Pu p3[-2]=pla p3[-1]=alb p3[0]=Mas p3[1]= p3[2]=Pup p4[-2]=play p4[-1]=albu p4[0]=Mast p4[1]= p4[2]=Pupp s1[-2]=y s1[-1]=m s1[0]=r s1[1]=f s1[2]=s s2[-2]=ay s2[-1]=um s2[0]=er s2[1]=of s2[2]=ts s3[-2]=lay s3[-1]=bum s3[0]=ter s3[1]= s3[2]=ets s4[-2]=play s4[-1]=lbum s4[0]=ster s4[1]= s4[2]=pets 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Master w[0]|w[1]=Master|of w[1]|w[2]=of|Puppets pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=of w[1..4]=Puppets +album w[-2]=album w[-1]=Master w[0]=of w[1]=Puppets wl[-2]=album wl[-1]=master wl[0]=of wl[1]=puppets pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLLL shape[-1]=ULLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=a p1[-1]=M p1[0]=o p1[1]=P p2[-2]=al p2[-1]=Ma p2[0]=of p2[1]=Pu p3[-2]=alb p3[-1]=Mas p3[0]= p3[1]=Pup p4[-2]=albu p4[-1]=Mast p4[0]= p4[1]=Pupp s1[-2]=m s1[-1]=r s1[0]=f s1[1]=s s2[-2]=um s2[-1]=er s2[0]=of s2[1]=ts s3[-2]=bum s3[-1]=ter s3[0]= s3[1]=ets s4[-2]=lbum s4[-1]=ster s4[0]= s4[1]=pets 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=album|Master w[-1]|w[0]=Master|of w[0]|w[1]=of|Puppets pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Master w[1..4]=Puppets +album w[-2]=Master w[-1]=of w[0]=Puppets wl[-2]=master wl[-1]=of wl[0]=puppets pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=M p1[-1]=o p1[0]=P p2[-2]=Ma p2[-1]=of p2[0]=Pu p3[-2]=Mas p3[-1]= p3[0]=Pup p4[-2]=Mast p4[-1]= p4[0]=Pupp s1[-2]=r s1[-1]=f s1[0]=s s2[-2]=er s2[-1]=of s2[0]=ts s3[-2]=ter s3[-1]= s3[0]=ets s4[-2]=ster s4[-1]= s4[0]=pets 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Master|of w[-1]|w[0]=of|Puppets pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Master w[-4..-1]=of __EOS__ + +O w[0]=play w[1]=the w[2]=song wl[0]=play wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=the p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=he s2[2]=ng s3[0]=lay s3[1]=the s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song w[1..4]=Pots w[1..4]=of __BOS__ +O w[-1]=play w[0]=the w[1]=song w[2]=Pots wl[-1]=play wl[0]=the wl[1]=song wl[2]=pots pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=NNS chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=s p1[2]=P p2[-1]=pl p2[0]=th p2[1]=so p2[2]=Po p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Pot p4[-1]=play p4[0]= p4[1]=song p4[2]=Pots s1[-1]=y s1[0]=e s1[1]=g s1[2]=s s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=ts s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ots s4[-1]=play s4[0]= s4[1]=song s4[2]=Pots 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Pots pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NNS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Pots w[1..4]=of w[1..4]=gold +O w[-2]=play w[-1]=the w[0]=song w[1]=Pots w[2]=of wl[-2]=play wl[-1]=the wl[0]=song wl[1]=pots wl[2]=of pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=NNS pos[2]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p1[1]=P p1[2]=o p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=Po p2[2]=of p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Pot p3[2]= p4[-2]=play p4[-1]= p4[0]=song p4[1]=Pots p4[2]= s1[-2]=y s1[-1]=e s1[0]=g s1[1]=s s1[2]=f s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=ts s2[2]=of s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ots s3[2]= s4[-2]=play s4[-1]= s4[0]=song s4[1]=Pots s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Pots w[1]|w[2]=Pots|of pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NNS pos[1]|pos[2]=NNS|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=Pots w[1..4]=of w[1..4]=gold w[1..4]=by +song w[-2]=the w[-1]=song w[0]=Pots w[1]=of w[2]=gold wl[-2]=the wl[-1]=song wl[0]=pots wl[1]=of wl[2]=gold pos[-2]=DT pos[-1]=JJ pos[0]=NNS pos[1]=NNS pos[2]=NNS chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLL shape[1]=LL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=s p1[0]=P p1[1]=o p1[2]=g p2[-2]=th p2[-1]=so p2[0]=Po p2[1]=of p2[2]=go p3[-2]=the p3[-1]=son p3[0]=Pot p3[1]= p3[2]=gol p4[-2]= p4[-1]=song p4[0]=Pots p4[1]= p4[2]=gold s1[-2]=e s1[-1]=g s1[0]=s s1[1]=f s1[2]=d s2[-2]=he s2[-1]=ng s2[0]=ts s2[1]=of s2[2]=ld s3[-2]=the s3[-1]=ong s3[0]=ots s3[1]= s3[2]=old s4[-2]= s4[-1]=song s4[0]=Pots s4[1]= s4[2]=gold 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Pots w[0]|w[1]=Pots|of w[1]|w[2]=of|gold pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NNS pos[0]|pos[1]=NNS|NNS pos[1]|pos[2]=NNS|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[1..4]=of w[1..4]=gold w[1..4]=by w[1..4]=the +song w[-2]=song w[-1]=Pots w[0]=of w[1]=gold w[2]=by wl[-2]=song wl[-1]=pots wl[0]=of wl[1]=gold wl[2]=by pos[-2]=JJ pos[-1]=NNS pos[0]=NNS pos[1]=NNS pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULLL shape[0]=LL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=P p1[0]=o p1[1]=g p1[2]=b p2[-2]=so p2[-1]=Po p2[0]=of p2[1]=go p2[2]=by p3[-2]=son p3[-1]=Pot p3[0]= p3[1]=gol p3[2]= p4[-2]=song p4[-1]=Pots p4[0]= p4[1]=gold p4[2]= s1[-2]=g s1[-1]=s s1[0]=f s1[1]=d s1[2]=y s2[-2]=ng s2[-1]=ts s2[0]=of s2[1]=ld s2[2]=by s3[-2]=ong s3[-1]=ots s3[0]= s3[1]=old s3[2]= s4[-2]=song s4[-1]=Pots s4[0]= s4[1]=gold s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Pots w[-1]|w[0]=Pots|of w[0]|w[1]=of|gold w[1]|w[2]=gold|by pos[-2]|pos[-1]=JJ|NNS pos[-1]|pos[0]=NNS|NNS pos[0]|pos[1]=NNS|NNS pos[1]|pos[2]=NNS|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Pots w[1..4]=gold w[1..4]=by w[1..4]=the w[1..4]=artist +song w[-2]=Pots w[-1]=of w[0]=gold w[1]=by w[2]=the wl[-2]=pots wl[-1]=of wl[0]=gold wl[1]=by wl[2]=the pos[-2]=NNS pos[-1]=NNS pos[0]=NNS pos[1]=IN pos[2]=DT chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=ULLL shape[-1]=LL shape[0]=LLLL shape[1]=LL shape[2]=LLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=P p1[-1]=o p1[0]=g p1[1]=b p1[2]=t p2[-2]=Po p2[-1]=of p2[0]=go p2[1]=by p2[2]=th p3[-2]=Pot p3[-1]= p3[0]=gol p3[1]= p3[2]=the p4[-2]=Pots p4[-1]= p4[0]=gold p4[1]= p4[2]= s1[-2]=s s1[-1]=f s1[0]=d s1[1]=y s1[2]=e s2[-2]=ts s2[-1]=of s2[0]=ld s2[1]=by s2[2]=he s3[-2]=ots s3[-1]= s3[0]=old s3[1]= s3[2]=the s4[-2]=Pots s4[-1]= s4[0]=gold s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Pots|of w[-1]|w[0]=of|gold w[0]|w[1]=gold|by w[1]|w[2]=by|the pos[-2]|pos[-1]=NNS|NNS pos[-1]|pos[0]=NNS|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Pots w[-4..-1]=of w[1..4]=by w[1..4]=the w[1..4]=artist w[1..4]=Mamas +O w[-2]=of w[-1]=gold w[0]=by w[1]=the w[2]=artist wl[-2]=of wl[-1]=gold wl[0]=by wl[1]=the wl[2]=artist pos[-2]=NNS pos[-1]=NNS pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LL shape[1]=LLL shape[2]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=o p1[-1]=g p1[0]=b p1[1]=t p1[2]=a p2[-2]=of p2[-1]=go p2[0]=by p2[1]=th p2[2]=ar p3[-2]= p3[-1]=gol p3[0]= p3[1]=the p3[2]=art p4[-2]= p4[-1]=gold p4[0]= p4[1]= p4[2]=arti s1[-2]=f s1[-1]=d s1[0]=y s1[1]=e s1[2]=t s2[-2]=of s2[-1]=ld s2[0]=by s2[1]=he s2[2]=st s3[-2]= s3[-1]=old s3[0]= s3[1]=the s3[2]=ist s4[-2]= s4[-1]=gold s4[0]= s4[1]= s4[2]=tist 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=of|gold w[-1]|w[0]=gold|by w[0]|w[1]=by|the w[1]|w[2]=the|artist pos[-2]|pos[-1]=NNS|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=song w[-4..-1]=Pots w[-4..-1]=of w[-4..-1]=gold w[1..4]=the w[1..4]=artist w[1..4]=Mamas w[1..4]=Gun +O w[-2]=gold w[-1]=by w[0]=the w[1]=artist w[2]=Mamas wl[-2]=gold wl[-1]=by wl[0]=the wl[1]=artist wl[2]=mamas pos[-2]=NNS pos[-1]=IN pos[0]=DT pos[1]=NN pos[2]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=g p1[-1]=b p1[0]=t p1[1]=a p1[2]=M p2[-2]=go p2[-1]=by p2[0]=th p2[1]=ar p2[2]=Ma p3[-2]=gol p3[-1]= p3[0]=the p3[1]=art p3[2]=Mam p4[-2]=gold p4[-1]= p4[0]= p4[1]=arti p4[2]=Mama s1[-2]=d s1[-1]=y s1[0]=e s1[1]=t s1[2]=s s2[-2]=ld s2[-1]=by s2[0]=he s2[1]=st s2[2]=as s3[-2]=old s3[-1]= s3[0]=the s3[1]=ist s3[2]=mas s4[-2]=gold s4[-1]= s4[0]= s4[1]=tist s4[2]=amas 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=gold|by w[-1]|w[0]=by|the w[0]|w[1]=the|artist w[1]|w[2]=artist|Mamas pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Pots w[-4..-1]=of w[-4..-1]=gold w[-4..-1]=by w[1..4]=artist w[1..4]=Mamas w[1..4]=Gun +O w[-2]=by w[-1]=the w[0]=artist w[1]=Mamas w[2]=Gun wl[-2]=by wl[-1]=the wl[0]=artist wl[1]=mamas wl[2]=gun pos[-2]=IN pos[-1]=DT pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=LLL shape[0]=LLLLLL shape[1]=ULLLL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=b p1[-1]=t p1[0]=a p1[1]=M p1[2]=G p2[-2]=by p2[-1]=th p2[0]=ar p2[1]=Ma p2[2]=Gu p3[-2]= p3[-1]=the p3[0]=art p3[1]=Mam p3[2]=Gun p4[-2]= p4[-1]= p4[0]=arti p4[1]=Mama p4[2]= s1[-2]=y s1[-1]=e s1[0]=t s1[1]=s s1[2]=n s2[-2]=by s2[-1]=he s2[0]=st s2[1]=as s2[2]=un s3[-2]= s3[-1]=the s3[0]=ist s3[1]=mas s3[2]=Gun s4[-2]= s4[-1]= s4[0]=tist s4[1]=amas s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|the w[-1]|w[0]=the|artist w[0]|w[1]=artist|Mamas w[1]|w[2]=Mamas|Gun pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=of w[-4..-1]=gold w[-4..-1]=by w[-4..-1]=the w[1..4]=Mamas w[1..4]=Gun +artist w[-2]=the w[-1]=artist w[0]=Mamas w[1]=Gun wl[-2]=the wl[-1]=artist wl[0]=mamas wl[1]=gun pos[-2]=DT pos[-1]=NN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLL shape[-1]=LLLLLL shape[0]=ULLLL shape[1]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=t p1[-1]=a p1[0]=M p1[1]=G p2[-2]=th p2[-1]=ar p2[0]=Ma p2[1]=Gu p3[-2]=the p3[-1]=art p3[0]=Mam p3[1]=Gun p4[-2]= p4[-1]=arti p4[0]=Mama p4[1]= s1[-2]=e s1[-1]=t s1[0]=s s1[1]=n s2[-2]=he s2[-1]=st s2[0]=as s2[1]=un s3[-2]=the s3[-1]=ist s3[0]=mas s3[1]=Gun s4[-2]= s4[-1]=tist s4[0]=amas s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=the|artist w[-1]|w[0]=artist|Mamas w[0]|w[1]=Mamas|Gun pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=gold w[-4..-1]=by w[-4..-1]=the w[-4..-1]=artist w[1..4]=Gun +artist w[-2]=artist w[-1]=Mamas w[0]=Gun wl[-2]=artist wl[-1]=mamas wl[0]=gun pos[-2]=NN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLLLL shape[-1]=ULLLL shape[0]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=a p1[-1]=M p1[0]=G p2[-2]=ar p2[-1]=Ma p2[0]=Gu p3[-2]=art p3[-1]=Mam p3[0]=Gun p4[-2]=arti p4[-1]=Mama p4[0]= s1[-2]=t s1[-1]=s s1[0]=n s2[-2]=st s2[-1]=as s2[0]=un s3[-2]=ist s3[-1]=mas s3[0]=Gun s4[-2]=tist s4[-1]=amas s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=artist|Mamas w[-1]|w[0]=Mamas|Gun pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=by w[-4..-1]=the w[-4..-1]=artist w[-4..-1]=Mamas __EOS__ + +O w[0]=play w[1]=the w[2]=album wl[0]=play wl[1]=the wl[2]=album pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=a p2[0]=pl p2[1]=th p2[2]=al p3[0]=pla p3[1]=the p3[2]=alb p4[0]=play p4[1]= p4[2]=albu s1[0]=y s1[1]=e s1[2]=m s2[0]=ay s2[1]=he s2[2]=um s3[0]=lay s3[1]=the s3[2]=bum s4[0]=play s4[1]= s4[2]=lbum 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|album pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=album w[1..4]=The w[1..4]=Wall __BOS__ +O w[-1]=play w[0]=the w[1]=album w[2]=The wl[-1]=play wl[0]=the wl[1]=album wl[2]=the pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLL shape[2]=ULL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=a p1[2]=T p2[-1]=pl p2[0]=th p2[1]=al p2[2]=Th p3[-1]=pla p3[0]=the p3[1]=alb p3[2]=The p4[-1]=play p4[0]= p4[1]=albu p4[2]= s1[-1]=y s1[0]=e s1[1]=m s1[2]=e s2[-1]=ay s2[0]=he s2[1]=um s2[2]=he s3[-1]=lay s3[0]=the s3[1]=bum s3[2]=The s4[-1]=play s4[0]= s4[1]=lbum s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|album w[1]|w[2]=album|The pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=album w[1..4]=The w[1..4]=Wall w[1..4]=on +O w[-2]=play w[-1]=the w[0]=album w[1]=The w[2]=Wall wl[-2]=play wl[-1]=the wl[0]=album wl[1]=the wl[2]=wall pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLL shape[1]=ULL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=t p1[0]=a p1[1]=T p1[2]=W p2[-2]=pl p2[-1]=th p2[0]=al p2[1]=Th p2[2]=Wa p3[-2]=pla p3[-1]=the p3[0]=alb p3[1]=The p3[2]=Wal p4[-2]=play p4[-1]= p4[0]=albu p4[1]= p4[2]=Wall s1[-2]=y s1[-1]=e s1[0]=m s1[1]=e s1[2]=l s2[-2]=ay s2[-1]=he s2[0]=um s2[1]=he s2[2]=ll s3[-2]=lay s3[-1]=the s3[0]=bum s3[1]=The s3[2]=all s4[-2]=play s4[-1]= s4[0]=lbum s4[1]= s4[2]=Wall 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|album w[0]|w[1]=album|The w[1]|w[2]=The|Wall pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[1..4]=The w[1..4]=Wall w[1..4]=on w[1..4]=Spotify +album w[-2]=the w[-1]=album w[0]=The w[1]=Wall w[2]=on wl[-2]=the wl[-1]=album wl[0]=the wl[1]=wall wl[2]=on pos[-2]=DT pos[-1]=NN pos[0]=DT pos[1]=DT pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLL shape[-1]=LLLLL shape[0]=ULL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=t p1[-1]=a p1[0]=T p1[1]=W p1[2]=o p2[-2]=th p2[-1]=al p2[0]=Th p2[1]=Wa p2[2]=on p3[-2]=the p3[-1]=alb p3[0]=The p3[1]=Wal p3[2]= p4[-2]= p4[-1]=albu p4[0]= p4[1]=Wall p4[2]= s1[-2]=e s1[-1]=m s1[0]=e s1[1]=l s1[2]=n s2[-2]=he s2[-1]=um s2[0]=he s2[1]=ll s2[2]=on s3[-2]=the s3[-1]=bum s3[0]=The s3[1]=all s3[2]= s4[-2]= s4[-1]=lbum s4[0]= s4[1]=Wall s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|album w[-1]|w[0]=album|The w[0]|w[1]=The|Wall w[1]|w[2]=Wall|on pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=album w[1..4]=Wall w[1..4]=on w[1..4]=Spotify +album w[-2]=album w[-1]=The w[0]=Wall w[1]=on w[2]=Spotify wl[-2]=album wl[-1]=the wl[0]=wall wl[1]=on wl[2]=spotify pos[-2]=NN pos[-1]=DT pos[0]=DT pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLLL shape[-1]=ULL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=a p1[-1]=T p1[0]=W p1[1]=o p1[2]=S p2[-2]=al p2[-1]=Th p2[0]=Wa p2[1]=on p2[2]=Sp p3[-2]=alb p3[-1]=The p3[0]=Wal p3[1]= p3[2]=Spo p4[-2]=albu p4[-1]= p4[0]=Wall p4[1]= p4[2]=Spot s1[-2]=m s1[-1]=e s1[0]=l s1[1]=n s1[2]=y s2[-2]=um s2[-1]=he s2[0]=ll s2[1]=on s2[2]=fy s3[-2]=bum s3[-1]=The s3[0]=all s3[1]= s3[2]=ify s4[-2]=lbum s4[-1]= s4[0]=Wall s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|The w[-1]|w[0]=The|Wall w[0]|w[1]=Wall|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=NN|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=album w[-4..-1]=The w[1..4]=on w[1..4]=Spotify +O w[-2]=The w[-1]=Wall w[0]=on w[1]=Spotify wl[-2]=the wl[-1]=wall wl[0]=on wl[1]=spotify pos[-2]=DT pos[-1]=DT pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=T p1[-1]=W p1[0]=o p1[1]=S p2[-2]=Th p2[-1]=Wa p2[0]=on p2[1]=Sp p3[-2]=The p3[-1]=Wal p3[0]= p3[1]=Spo p4[-2]= p4[-1]=Wall p4[0]= p4[1]=Spot s1[-2]=e s1[-1]=l s1[0]=n s1[1]=y s2[-2]=he s2[-1]=ll s2[0]=on s2[1]=fy s3[-2]=The s3[-1]=all s3[0]= s3[1]=ify s4[-2]= s4[-1]=Wall s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=The|Wall w[-1]|w[0]=Wall|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=album w[-4..-1]=The w[-4..-1]=Wall w[1..4]=Spotify +service w[-2]=Wall w[-1]=on w[0]=Spotify wl[-2]=wall wl[-1]=on wl[0]=spotify pos[-2]=DT pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=W p1[-1]=o p1[0]=S p2[-2]=Wa p2[-1]=on p2[0]=Sp p3[-2]=Wal p3[-1]= p3[0]=Spo p4[-2]=Wall p4[-1]= p4[0]=Spot s1[-2]=l s1[-1]=n s1[0]=y s2[-2]=ll s2[-1]=on s2[0]=fy s3[-2]=all s3[-1]= s3[0]=ify s4[-2]=Wall s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Wall|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=DT|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=album w[-4..-1]=The w[-4..-1]=Wall w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=some w[2]=romantic wl[0]=play wl[1]=some wl[2]=romantic pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=r p2[0]=pl p2[1]=so p2[2]=ro p3[0]=pla p3[1]=som p3[2]=rom p4[0]=play p4[1]=some p4[2]=roma s1[0]=y s1[1]=e s1[2]=c s2[0]=ay s2[1]=me s2[2]=ic s3[0]=lay s3[1]=ome s3[2]=tic s4[0]=play s4[1]=some s4[2]=ntic 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|some w[1]|w[2]=some|romantic pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=some w[1..4]=romantic w[1..4]=songs __BOS__ +O w[-1]=play w[0]=some w[1]=romantic w[2]=songs wl[-1]=play wl[0]=some wl[1]=romantic wl[2]=songs pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=NNS chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLLLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=r p1[2]=s p2[-1]=pl p2[0]=so p2[1]=ro p2[2]=so p3[-1]=pla p3[0]=som p3[1]=rom p3[2]=son p4[-1]=play p4[0]=some p4[1]=roma p4[2]=song s1[-1]=y s1[0]=e s1[1]=c s1[2]=s s2[-1]=ay s2[0]=me s2[1]=ic s2[2]=gs s3[-1]=lay s3[0]=ome s3[1]=tic s3[2]=ngs s4[-1]=play s4[0]=some s4[1]=ntic s4[2]=ongs 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|some w[0]|w[1]=some|romantic w[1]|w[2]=romantic|songs pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NNS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=romantic w[1..4]=songs +genre w[-2]=play w[-1]=some w[0]=romantic w[1]=songs wl[-2]=play wl[-1]=some wl[0]=romantic wl[1]=songs pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=NNS chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=s p1[0]=r p1[1]=s p2[-2]=pl p2[-1]=so p2[0]=ro p2[1]=so p3[-2]=pla p3[-1]=som p3[0]=rom p3[1]=son p4[-2]=play p4[-1]=some p4[0]=roma p4[1]=song s1[-2]=y s1[-1]=e s1[0]=c s1[1]=s s2[-2]=ay s2[-1]=me s2[0]=ic s2[1]=gs s3[-2]=lay s3[-1]=ome s3[0]=tic s3[1]=ngs s4[-2]=play s4[-1]=some s4[0]=ntic s4[1]=ongs 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|some w[-1]|w[0]=some|romantic w[0]|w[1]=romantic|songs pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[1..4]=songs +O w[-2]=some w[-1]=romantic w[0]=songs wl[-2]=some wl[-1]=romantic wl[0]=songs pos[-2]=DT pos[-1]=JJ pos[0]=NNS chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=LLLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=r p1[0]=s p2[-2]=so p2[-1]=ro p2[0]=so p3[-2]=som p3[-1]=rom p3[0]=son p4[-2]=some p4[-1]=roma p4[0]=song s1[-2]=e s1[-1]=c s1[0]=s s2[-2]=me s2[-1]=ic s2[0]=gs s3[-2]=ome s3[-1]=tic s3[0]=ngs s4[-2]=some s4[-1]=ntic s4[0]=ongs 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|romantic w[-1]|w[0]=romantic|songs pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NNS chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=romantic __EOS__ + +O w[0]=play w[1]=Best w[2]=of wl[0]=play wl[1]=best wl[2]=of pos[0]=VB pos[1]=JJS pos[2]=JJS chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=B p1[2]=o p2[0]=pl p2[1]=Be p2[2]=of p3[0]=pla p3[1]=Bes p3[2]= p4[0]=play p4[1]=Best p4[2]= s1[0]=y s1[1]=t s1[2]=f s2[0]=ay s2[1]=st s2[2]=of s3[0]=lay s3[1]=est s3[2]= s4[0]=play s4[1]=Best s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Best w[1]|w[2]=Best|of pos[0]|pos[1]=VB|JJS pos[1]|pos[2]=JJS|JJS chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Best w[1..4]=of w[1..4]=You w[1..4]=by __BOS__ +song w[-1]=play w[0]=Best w[1]=of w[2]=You wl[-1]=play wl[0]=best wl[1]=of wl[2]=you pos[-1]=VB pos[0]=JJS pos[1]=JJS pos[2]=JJS chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLL shape[1]=LL shape[2]=ULL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=B p1[1]=o p1[2]=Y p2[-1]=pl p2[0]=Be p2[1]=of p2[2]=Yo p3[-1]=pla p3[0]=Bes p3[1]= p3[2]=You p4[-1]=play p4[0]=Best p4[1]= p4[2]= s1[-1]=y s1[0]=t s1[1]=f s1[2]=u s2[-1]=ay s2[0]=st s2[1]=of s2[2]=ou s3[-1]=lay s3[0]=est s3[1]= s3[2]=You s4[-1]=play s4[0]=Best s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Best w[0]|w[1]=Best|of w[1]|w[2]=of|You pos[-1]|pos[0]=VB|JJS pos[0]|pos[1]=JJS|JJS pos[1]|pos[2]=JJS|JJS chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=of w[1..4]=You w[1..4]=by w[1..4]=Foo +song w[-2]=play w[-1]=Best w[0]=of w[1]=You w[2]=by wl[-2]=play wl[-1]=best wl[0]=of wl[1]=you wl[2]=by pos[-2]=VB pos[-1]=JJS pos[0]=JJS pos[1]=JJS pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=B p1[0]=o p1[1]=Y p1[2]=b p2[-2]=pl p2[-1]=Be p2[0]=of p2[1]=Yo p2[2]=by p3[-2]=pla p3[-1]=Bes p3[0]= p3[1]=You p3[2]= p4[-2]=play p4[-1]=Best p4[0]= p4[1]= p4[2]= s1[-2]=y s1[-1]=t s1[0]=f s1[1]=u s1[2]=y s2[-2]=ay s2[-1]=st s2[0]=of s2[1]=ou s2[2]=by s3[-2]=lay s3[-1]=est s3[0]= s3[1]=You s3[2]= s4[-2]=play s4[-1]=Best s4[0]= s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Best w[-1]|w[0]=Best|of w[0]|w[1]=of|You w[1]|w[2]=You|by pos[-2]|pos[-1]=VB|JJS pos[-1]|pos[0]=JJS|JJS pos[0]|pos[1]=JJS|JJS pos[1]|pos[2]=JJS|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Best w[1..4]=You w[1..4]=by w[1..4]=Foo w[1..4]=Fighters +song w[-2]=Best w[-1]=of w[0]=You w[1]=by w[2]=Foo wl[-2]=best wl[-1]=of wl[0]=you wl[1]=by wl[2]=foo pos[-2]=JJS pos[-1]=JJS pos[0]=JJS pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULL shape[1]=LL shape[2]=ULL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=B p1[-1]=o p1[0]=Y p1[1]=b p1[2]=F p2[-2]=Be p2[-1]=of p2[0]=Yo p2[1]=by p2[2]=Fo p3[-2]=Bes p3[-1]= p3[0]=You p3[1]= p3[2]=Foo p4[-2]=Best p4[-1]= p4[0]= p4[1]= p4[2]= s1[-2]=t s1[-1]=f s1[0]=u s1[1]=y s1[2]=o s2[-2]=st s2[-1]=of s2[0]=ou s2[1]=by s2[2]=oo s3[-2]=est s3[-1]= s3[0]=You s3[1]= s3[2]=Foo s4[-2]=Best s4[-1]= s4[0]= s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Best|of w[-1]|w[0]=of|You w[0]|w[1]=You|by w[1]|w[2]=by|Foo pos[-2]|pos[-1]=JJS|JJS pos[-1]|pos[0]=JJS|JJS pos[0]|pos[1]=JJS|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Best w[-4..-1]=of w[1..4]=by w[1..4]=Foo w[1..4]=Fighters +O w[-2]=of w[-1]=You w[0]=by w[1]=Foo w[2]=Fighters wl[-2]=of wl[-1]=you wl[0]=by wl[1]=foo wl[2]=fighters pos[-2]=JJS pos[-1]=JJS pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=ULL shape[0]=LL shape[1]=ULL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=o p1[-1]=Y p1[0]=b p1[1]=F p1[2]=F p2[-2]=of p2[-1]=Yo p2[0]=by p2[1]=Fo p2[2]=Fi p3[-2]= p3[-1]=You p3[0]= p3[1]=Foo p3[2]=Fig p4[-2]= p4[-1]= p4[0]= p4[1]= p4[2]=Figh s1[-2]=f s1[-1]=u s1[0]=y s1[1]=o s1[2]=s s2[-2]=of s2[-1]=ou s2[0]=by s2[1]=oo s2[2]=rs s3[-2]= s3[-1]=You s3[0]= s3[1]=Foo s3[2]=ers s4[-2]= s4[-1]= s4[0]= s4[1]= s4[2]=ters 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=of|You w[-1]|w[0]=You|by w[0]|w[1]=by|Foo w[1]|w[2]=Foo|Fighters pos[-2]|pos[-1]=JJS|JJS pos[-1]|pos[0]=JJS|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Best w[-4..-1]=of w[-4..-1]=You w[1..4]=Foo w[1..4]=Fighters +artist w[-2]=You w[-1]=by w[0]=Foo w[1]=Fighters wl[-2]=you wl[-1]=by wl[0]=foo wl[1]=fighters pos[-2]=JJS pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=LL shape[0]=ULL shape[1]=ULLLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=Y p1[-1]=b p1[0]=F p1[1]=F p2[-2]=Yo p2[-1]=by p2[0]=Fo p2[1]=Fi p3[-2]=You p3[-1]= p3[0]=Foo p3[1]=Fig p4[-2]= p4[-1]= p4[0]= p4[1]=Figh s1[-2]=u s1[-1]=y s1[0]=o s1[1]=s s2[-2]=ou s2[-1]=by s2[0]=oo s2[1]=rs s3[-2]=You s3[-1]= s3[0]=Foo s3[1]=ers s4[-2]= s4[-1]= s4[0]= s4[1]=ters 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=You|by w[-1]|w[0]=by|Foo w[0]|w[1]=Foo|Fighters pos[-2]|pos[-1]=JJS|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Best w[-4..-1]=of w[-4..-1]=You w[-4..-1]=by w[1..4]=Fighters +artist w[-2]=by w[-1]=Foo w[0]=Fighters wl[-2]=by wl[-1]=foo wl[0]=fighters pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=F p1[0]=F p2[-2]=by p2[-1]=Fo p2[0]=Fi p3[-2]= p3[-1]=Foo p3[0]=Fig p4[-2]= p4[-1]= p4[0]=Figh s1[-2]=y s1[-1]=o s1[0]=s s2[-2]=by s2[-1]=oo s2[0]=rs s3[-2]= s3[-1]=Foo s3[0]=ers s4[-2]= s4[-1]= s4[0]=ters 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Foo w[-1]|w[0]=Foo|Fighters pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=of w[-4..-1]=You w[-4..-1]=by w[-4..-1]=Foo __EOS__ + +O w[0]=play w[1]=me w[2]=some wl[0]=play wl[1]=me wl[2]=some pos[0]=VB pos[1]=PRP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=s p2[0]=pl p2[1]=me p2[2]=so p3[0]=pla p3[1]= p3[2]=som p4[0]=play p4[1]= p4[2]=some s1[0]=y s1[1]=e s1[2]=e s2[0]=ay s2[1]=me s2[2]=me s3[0]=lay s3[1]= s3[2]=ome s4[0]=play s4[1]= s4[2]=some 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|me w[1]|w[2]=me|some pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=me w[1..4]=some w[1..4]=relaxing w[1..4]=music __BOS__ +O w[-1]=play w[0]=me w[1]=some w[2]=relaxing wl[-1]=play wl[0]=me wl[1]=some wl[2]=relaxing pos[-1]=VB pos[0]=PRP pos[1]=DT pos[2]=VBG chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=m p1[1]=s p1[2]=r p2[-1]=pl p2[0]=me p2[1]=so p2[2]=re p3[-1]=pla p3[0]= p3[1]=som p3[2]=rel p4[-1]=play p4[0]= p4[1]=some p4[2]=rela s1[-1]=y s1[0]=e s1[1]=e s1[2]=g s2[-1]=ay s2[0]=me s2[1]=me s2[2]=ng s3[-1]=lay s3[0]= s3[1]=ome s3[2]=ing s4[-1]=play s4[0]= s4[1]=some s4[2]=xing 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|me w[0]|w[1]=me|some w[1]|w[2]=some|relaxing pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|DT pos[1]|pos[2]=DT|VBG chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=some w[1..4]=relaxing w[1..4]=music +O w[-2]=play w[-1]=me w[0]=some w[1]=relaxing w[2]=music wl[-2]=play wl[-1]=me wl[0]=some wl[1]=relaxing wl[2]=music pos[-2]=VB pos[-1]=PRP pos[0]=DT pos[1]=VBG pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLLLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=m p1[0]=s p1[1]=r p1[2]=m p2[-2]=pl p2[-1]=me p2[0]=so p2[1]=re p2[2]=mu p3[-2]=pla p3[-1]= p3[0]=som p3[1]=rel p3[2]=mus p4[-2]=play p4[-1]= p4[0]=some p4[1]=rela p4[2]=musi s1[-2]=y s1[-1]=e s1[0]=e s1[1]=g s1[2]=c s2[-2]=ay s2[-1]=me s2[0]=me s2[1]=ng s2[2]=ic s3[-2]=lay s3[-1]= s3[0]=ome s3[1]=ing s3[2]=sic s4[-2]=play s4[-1]= s4[0]=some s4[1]=xing s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|me w[-1]|w[0]=me|some w[0]|w[1]=some|relaxing w[1]|w[2]=relaxing|music pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|DT pos[0]|pos[1]=DT|VBG pos[1]|pos[2]=VBG|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[1..4]=relaxing w[1..4]=music +genre w[-2]=me w[-1]=some w[0]=relaxing w[1]=music wl[-2]=me wl[-1]=some wl[0]=relaxing wl[1]=music pos[-2]=PRP pos[-1]=DT pos[0]=VBG pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=m p1[-1]=s p1[0]=r p1[1]=m p2[-2]=me p2[-1]=so p2[0]=re p2[1]=mu p3[-2]= p3[-1]=som p3[0]=rel p3[1]=mus p4[-2]= p4[-1]=some p4[0]=rela p4[1]=musi s1[-2]=e s1[-1]=e s1[0]=g s1[1]=c s2[-2]=me s2[-1]=me s2[0]=ng s2[1]=ic s3[-2]= s3[-1]=ome s3[0]=ing s3[1]=sic s4[-2]= s4[-1]=some s4[0]=xing s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=me|some w[-1]|w[0]=some|relaxing w[0]|w[1]=relaxing|music pos[-2]|pos[-1]=PRP|DT pos[-1]|pos[0]=DT|VBG pos[0]|pos[1]=VBG|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some w[1..4]=music +O w[-2]=some w[-1]=relaxing w[0]=music wl[-2]=some wl[-1]=relaxing wl[0]=music pos[-2]=DT pos[-1]=VBG pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=LLLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=r p1[0]=m p2[-2]=so p2[-1]=re p2[0]=mu p3[-2]=som p3[-1]=rel p3[0]=mus p4[-2]=some p4[-1]=rela p4[0]=musi s1[-2]=e s1[-1]=g s1[0]=c s2[-2]=me s2[-1]=ng s2[0]=ic s3[-2]=ome s3[-1]=ing s3[0]=sic s4[-2]=some s4[-1]=xing s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|relaxing w[-1]|w[0]=relaxing|music pos[-2]|pos[-1]=DT|VBG pos[-1]|pos[0]=VBG|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some w[-4..-1]=relaxing __EOS__ + +O w[0]=play w[1]=artist w[2]=ACDC wl[0]=play wl[1]=artist wl[2]=acdc pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLLL shape[2]=UUUU shaped[0]=L shaped[1]=L shaped[2]=U type[0]=AllLetter type[1]=AllLetter type[2]=AllUpper p1[0]=p p1[1]=a p1[2]=A p2[0]=pl p2[1]=ar p2[2]=AC p3[0]=pla p3[1]=art p3[2]=ACD p4[0]=play p4[1]=arti p4[2]=ACDC s1[0]=y s1[1]=t s1[2]=C s2[0]=ay s2[1]=st s2[2]=DC s3[0]=lay s3[1]=ist s3[2]=CDC s4[0]=play s4[1]=tist s4[2]=ACDC 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=yes al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|artist w[1]|w[2]=artist|ACDC pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|U type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllUpper w[1..4]=artist w[1..4]=ACDC __BOS__ +O w[-1]=play w[0]=artist w[1]=ACDC wl[-1]=play wl[0]=artist wl[1]=acdc pos[-1]=VB pos[0]=NN pos[1]=NNP chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLLLL shape[1]=UUUU shaped[-1]=L shaped[0]=L shaped[1]=U type[-1]=AllLetter type[0]=AllLetter type[1]=AllUpper p1[-1]=p p1[0]=a p1[1]=A p2[-1]=pl p2[0]=ar p2[1]=AC p3[-1]=pla p3[0]=art p3[1]=ACD p4[-1]=play p4[0]=arti p4[1]=ACDC s1[-1]=y s1[0]=t s1[1]=C s2[-1]=ay s2[0]=st s2[1]=DC s3[-1]=lay s3[0]=ist s3[1]=CDC s4[-1]=play s4[0]=tist s4[1]=ACDC 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=yes al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=no ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|artist w[0]|w[1]=artist|ACDC pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|U type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllUpper w[-4..-1]=play w[1..4]=ACDC +artist w[-2]=play w[-1]=artist w[0]=ACDC wl[-2]=play wl[-1]=artist wl[0]=acdc pos[-2]=VB pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLLLL shape[0]=UUUU shaped[-2]=L shaped[-1]=L shaped[0]=U type[-2]=AllLetter type[-1]=AllLetter type[0]=AllUpper p1[-2]=p p1[-1]=a p1[0]=A p2[-2]=pl p2[-1]=ar p2[0]=AC p3[-2]=pla p3[-1]=art p3[0]=ACD p4[-2]=play p4[-1]=arti p4[0]=ACDC s1[-2]=y s1[-1]=t s1[0]=C s2[-2]=ay s2[-1]=st s2[0]=DC s3[-2]=lay s3[-1]=ist s3[0]=CDC s4[-2]=play s4[-1]=tist s4[0]=ACDC 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=yes al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=no ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|artist w[-1]|w[0]=artist|ACDC pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|U type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllUpper w[-4..-1]=play w[-4..-1]=artist __EOS__ + +O w[0]=can w[1]=you w[2]=open wl[0]=can wl[1]=you wl[2]=open pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=o p2[0]=ca p2[1]=yo p2[2]=op p3[0]=can p3[1]=you p3[2]=ope p4[0]= p4[1]= p4[2]=open s1[0]=n s1[1]=u s1[2]=n s2[0]=an s2[1]=ou s2[2]=en s3[0]=can s3[1]=you s3[2]=pen s4[0]= s4[1]= s4[2]=open 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|open pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=open w[1..4]=Shape w[1..4]=of __BOS__ +O w[-1]=can w[0]=you w[1]=open w[2]=Shape wl[-1]=can wl[0]=you wl[1]=open wl[2]=shape pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=c p1[0]=y p1[1]=o p1[2]=S p2[-1]=ca p2[0]=yo p2[1]=op p2[2]=Sh p3[-1]=can p3[0]=you p3[1]=ope p3[2]=Sha p4[-1]= p4[0]= p4[1]=open p4[2]=Shap s1[-1]=n s1[0]=u s1[1]=n s1[2]=e s2[-1]=an s2[0]=ou s2[1]=en s2[2]=pe s3[-1]=can s3[0]=you s3[1]=pen s3[2]=ape s4[-1]= s4[0]= s4[1]=open s4[2]=hape 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|open w[1]|w[2]=open|Shape pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[1..4]=open w[1..4]=Shape w[1..4]=of w[1..4]=My +O w[-2]=can w[-1]=you w[0]=open w[1]=Shape w[2]=of wl[-2]=can wl[-1]=you wl[0]=open wl[1]=shape wl[2]=of pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=o p1[1]=S p1[2]=o p2[-2]=ca p2[-1]=yo p2[0]=op p2[1]=Sh p2[2]=of p3[-2]=can p3[-1]=you p3[0]=ope p3[1]=Sha p3[2]= p4[-2]= p4[-1]= p4[0]=open p4[1]=Shap p4[2]= s1[-2]=n s1[-1]=u s1[0]=n s1[1]=e s1[2]=f s2[-2]=an s2[-1]=ou s2[0]=en s2[1]=pe s2[2]=of s3[-2]=can s3[-1]=you s3[0]=pen s3[1]=ape s3[2]= s4[-2]= s4[-1]= s4[0]=open s4[1]=hape s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|open w[0]|w[1]=open|Shape w[1]|w[2]=Shape|of pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=Shape w[1..4]=of w[1..4]=My w[1..4]=Heart +song w[-2]=you w[-1]=open w[0]=Shape w[1]=of w[2]=My wl[-2]=you wl[-1]=open wl[0]=shape wl[1]=of wl[2]=my pos[-2]=PRP pos[-1]=VB pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLL shape[1]=LL shape[2]=UL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=y p1[-1]=o p1[0]=S p1[1]=o p1[2]=M p2[-2]=yo p2[-1]=op p2[0]=Sh p2[1]=of p2[2]=My p3[-2]=you p3[-1]=ope p3[0]=Sha p3[1]= p3[2]= p4[-2]= p4[-1]=open p4[0]=Shap p4[1]= p4[2]= s1[-2]=u s1[-1]=n s1[0]=e s1[1]=f s1[2]=y s2[-2]=ou s2[-1]=en s2[0]=pe s2[1]=of s2[2]=My s3[-2]=you s3[-1]=pen s3[0]=ape s3[1]= s3[2]= s4[-2]= s4[-1]=open s4[0]=hape s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|open w[-1]|w[0]=open|Shape w[0]|w[1]=Shape|of w[1]|w[2]=of|My pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=open w[1..4]=of w[1..4]=My w[1..4]=Heart w[1..4]=in +song w[-2]=open w[-1]=Shape w[0]=of w[1]=My w[2]=Heart wl[-2]=open wl[-1]=shape wl[0]=of wl[1]=my wl[2]=heart pos[-2]=VB pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=LL shape[1]=UL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=o p1[-1]=S p1[0]=o p1[1]=M p1[2]=H p2[-2]=op p2[-1]=Sh p2[0]=of p2[1]=My p2[2]=He p3[-2]=ope p3[-1]=Sha p3[0]= p3[1]= p3[2]=Hea p4[-2]=open p4[-1]=Shap p4[0]= p4[1]= p4[2]=Hear s1[-2]=n s1[-1]=e s1[0]=f s1[1]=y s1[2]=t s2[-2]=en s2[-1]=pe s2[0]=of s2[1]=My s2[2]=rt s3[-2]=pen s3[-1]=ape s3[0]= s3[1]= s3[2]=art s4[-2]=open s4[-1]=hape s4[0]= s4[1]= s4[2]=eart 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=open|Shape w[-1]|w[0]=Shape|of w[0]|w[1]=of|My w[1]|w[2]=My|Heart pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=open w[-4..-1]=Shape w[1..4]=My w[1..4]=Heart w[1..4]=in w[1..4]=Google +song w[-2]=Shape w[-1]=of w[0]=My w[1]=Heart w[2]=in wl[-2]=shape wl[-1]=of wl[0]=my wl[1]=heart wl[2]=in pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLLL shape[-1]=LL shape[0]=UL shape[1]=ULLLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=S p1[-1]=o p1[0]=M p1[1]=H p1[2]=i p2[-2]=Sh p2[-1]=of p2[0]=My p2[1]=He p2[2]=in p3[-2]=Sha p3[-1]= p3[0]= p3[1]=Hea p3[2]= p4[-2]=Shap p4[-1]= p4[0]= p4[1]=Hear p4[2]= s1[-2]=e s1[-1]=f s1[0]=y s1[1]=t s1[2]=n s2[-2]=pe s2[-1]=of s2[0]=My s2[1]=rt s2[2]=in s3[-2]=ape s3[-1]= s3[0]= s3[1]=art s3[2]= s4[-2]=hape s4[-1]= s4[0]= s4[1]=eart s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Shape|of w[-1]|w[0]=of|My w[0]|w[1]=My|Heart w[1]|w[2]=Heart|in pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=you w[-4..-1]=open w[-4..-1]=Shape w[-4..-1]=of w[1..4]=Heart w[1..4]=in w[1..4]=Google w[1..4]=music +song w[-2]=of w[-1]=My w[0]=Heart w[1]=in w[2]=Google wl[-2]=of wl[-1]=my wl[0]=heart wl[1]=in wl[2]=google pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=UL shape[0]=ULLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=o p1[-1]=M p1[0]=H p1[1]=i p1[2]=G p2[-2]=of p2[-1]=My p2[0]=He p2[1]=in p2[2]=Go p3[-2]= p3[-1]= p3[0]=Hea p3[1]= p3[2]=Goo p4[-2]= p4[-1]= p4[0]=Hear p4[1]= p4[2]=Goog s1[-2]=f s1[-1]=y s1[0]=t s1[1]=n s1[2]=e s2[-2]=of s2[-1]=My s2[0]=rt s2[1]=in s2[2]=le s3[-2]= s3[-1]= s3[0]=art s3[1]= s3[2]=gle s4[-2]= s4[-1]= s4[0]=eart s4[1]= s4[2]=ogle 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=of|My w[-1]|w[0]=My|Heart w[0]|w[1]=Heart|in w[1]|w[2]=in|Google pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=open w[-4..-1]=Shape w[-4..-1]=of w[-4..-1]=My w[1..4]=in w[1..4]=Google w[1..4]=music +O w[-2]=My w[-1]=Heart w[0]=in w[1]=Google w[2]=music wl[-2]=my wl[-1]=heart wl[0]=in wl[1]=google wl[2]=music pos[-2]=NN pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=UL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLLLL shape[2]=LLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=M p1[-1]=H p1[0]=i p1[1]=G p1[2]=m p2[-2]=My p2[-1]=He p2[0]=in p2[1]=Go p2[2]=mu p3[-2]= p3[-1]=Hea p3[0]= p3[1]=Goo p3[2]=mus p4[-2]= p4[-1]=Hear p4[0]= p4[1]=Goog p4[2]=musi s1[-2]=y s1[-1]=t s1[0]=n s1[1]=e s1[2]=c s2[-2]=My s2[-1]=rt s2[0]=in s2[1]=le s2[2]=ic s3[-2]= s3[-1]=art s3[0]= s3[1]=gle s3[2]=sic s4[-2]= s4[-1]=eart s4[0]= s4[1]=ogle s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=My|Heart w[-1]|w[0]=Heart|in w[0]|w[1]=in|Google w[1]|w[2]=Google|music pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Shape w[-4..-1]=of w[-4..-1]=My w[-4..-1]=Heart w[1..4]=Google w[1..4]=music +service w[-2]=Heart w[-1]=in w[0]=Google w[1]=music wl[-2]=heart wl[-1]=in wl[0]=google wl[1]=music pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=LLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter p1[-2]=H p1[-1]=i p1[0]=G p1[1]=m p2[-2]=He p2[-1]=in p2[0]=Go p2[1]=mu p3[-2]=Hea p3[-1]= p3[0]=Goo p3[1]=mus p4[-2]=Hear p4[-1]= p4[0]=Goog p4[1]=musi s1[-2]=t s1[-1]=n s1[0]=e s1[1]=c s2[-2]=rt s2[-1]=in s2[0]=le s2[1]=ic s3[-2]=art s3[-1]= s3[0]=gle s3[1]=sic s4[-2]=eart s4[-1]= s4[0]=ogle s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Heart|in w[-1]|w[0]=in|Google w[0]|w[1]=Google|music pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=of w[-4..-1]=My w[-4..-1]=Heart w[-4..-1]=in w[1..4]=music +service w[-2]=in w[-1]=Google w[0]=music wl[-2]=in wl[-1]=google wl[0]=music pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter p1[-2]=i p1[-1]=G p1[0]=m p2[-2]=in p2[-1]=Go p2[0]=mu p3[-2]= p3[-1]=Goo p3[0]=mus p4[-2]= p4[-1]=Goog p4[0]=musi s1[-2]=n s1[-1]=e s1[0]=c s2[-2]=in s2[-1]=le s2[0]=ic s3[-2]= s3[-1]=gle s3[0]=sic s4[-2]= s4[-1]=ogle s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=in|Google w[-1]|w[0]=Google|music pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=My w[-4..-1]=Heart w[-4..-1]=in w[-4..-1]=Google __EOS__ + +O w[0]=play w[1]=artist w[2]=Meghan wl[0]=play wl[1]=artist wl[2]=meghan pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=M p2[0]=pl p2[1]=ar p2[2]=Me p3[0]=pla p3[1]=art p3[2]=Meg p4[0]=play p4[1]=arti p4[2]=Megh s1[0]=y s1[1]=t s1[2]=n s2[0]=ay s2[1]=st s2[2]=an s3[0]=lay s3[1]=ist s3[2]=han s4[0]=play s4[1]=tist s4[2]=ghan 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|artist w[1]|w[2]=artist|Meghan pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=artist w[1..4]=Meghan w[1..4]=Trainor __BOS__ +O w[-1]=play w[0]=artist w[1]=Meghan w[2]=Trainor wl[-1]=play wl[0]=artist wl[1]=meghan wl[2]=trainor pos[-1]=VB pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLLL shape[1]=ULLLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=a p1[1]=M p1[2]=T p2[-1]=pl p2[0]=ar p2[1]=Me p2[2]=Tr p3[-1]=pla p3[0]=art p3[1]=Meg p3[2]=Tra p4[-1]=play p4[0]=arti p4[1]=Megh p4[2]=Trai s1[-1]=y s1[0]=t s1[1]=n s1[2]=r s2[-1]=ay s2[0]=st s2[1]=an s2[2]=or s3[-1]=lay s3[0]=ist s3[1]=han s3[2]=nor s4[-1]=play s4[0]=tist s4[1]=ghan s4[2]=inor 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|artist w[0]|w[1]=artist|Meghan w[1]|w[2]=Meghan|Trainor pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Meghan w[1..4]=Trainor +artist w[-2]=play w[-1]=artist w[0]=Meghan w[1]=Trainor wl[-2]=play wl[-1]=artist wl[0]=meghan wl[1]=trainor pos[-2]=VB pos[-1]=NN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=LLLLLL shape[0]=ULLLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=p p1[-1]=a p1[0]=M p1[1]=T p2[-2]=pl p2[-1]=ar p2[0]=Me p2[1]=Tr p3[-2]=pla p3[-1]=art p3[0]=Meg p3[1]=Tra p4[-2]=play p4[-1]=arti p4[0]=Megh p4[1]=Trai s1[-2]=y s1[-1]=t s1[0]=n s1[1]=r s2[-2]=ay s2[-1]=st s2[0]=an s2[1]=or s3[-2]=lay s3[-1]=ist s3[0]=han s3[1]=nor s4[-2]=play s4[-1]=tist s4[0]=ghan s4[1]=inor 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|artist w[-1]|w[0]=artist|Meghan w[0]|w[1]=Meghan|Trainor pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=artist w[1..4]=Trainor +artist w[-2]=artist w[-1]=Meghan w[0]=Trainor wl[-2]=artist wl[-1]=meghan wl[0]=trainor pos[-2]=NN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLLLL shape[-1]=ULLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=a p1[-1]=M p1[0]=T p2[-2]=ar p2[-1]=Me p2[0]=Tr p3[-2]=art p3[-1]=Meg p3[0]=Tra p4[-2]=arti p4[-1]=Megh p4[0]=Trai s1[-2]=t s1[-1]=n s1[0]=r s2[-2]=st s2[-1]=an s2[0]=or s3[-2]=ist s3[-1]=han s3[0]=nor s4[-2]=tist s4[-1]=ghan s4[0]=inor 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=artist|Meghan w[-1]|w[0]=Meghan|Trainor pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=artist w[-4..-1]=Meghan __EOS__ + +O w[0]=can w[1]=you w[2]=open wl[0]=can wl[1]=you wl[2]=open pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=o p2[0]=ca p2[1]=yo p2[2]=op p3[0]=can p3[1]=you p3[2]=ope p4[0]= p4[1]= p4[2]=open s1[0]=n s1[1]=u s1[2]=n s2[0]=an s2[1]=ou s2[2]=en s3[0]=can s3[1]=you s3[2]=pen s4[0]= s4[1]= s4[2]=open 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|open pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=open w[1..4]=Careless w[1..4]=Whisper __BOS__ +O w[-1]=can w[0]=you w[1]=open w[2]=Careless wl[-1]=can wl[0]=you wl[1]=open wl[2]=careless pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=c p1[0]=y p1[1]=o p1[2]=C p2[-1]=ca p2[0]=yo p2[1]=op p2[2]=Ca p3[-1]=can p3[0]=you p3[1]=ope p3[2]=Car p4[-1]= p4[0]= p4[1]=open p4[2]=Care s1[-1]=n s1[0]=u s1[1]=n s1[2]=s s2[-1]=an s2[0]=ou s2[1]=en s2[2]=ss s3[-1]=can s3[0]=you s3[1]=pen s3[2]=ess s4[-1]= s4[0]= s4[1]=open s4[2]=less 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|open w[1]|w[2]=open|Careless pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[1..4]=open w[1..4]=Careless w[1..4]=Whisper w[1..4]=song +O w[-2]=can w[-1]=you w[0]=open w[1]=Careless w[2]=Whisper wl[-2]=can wl[-1]=you wl[0]=open wl[1]=careless wl[2]=whisper pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=c p1[-1]=y p1[0]=o p1[1]=C p1[2]=W p2[-2]=ca p2[-1]=yo p2[0]=op p2[1]=Ca p2[2]=Wh p3[-2]=can p3[-1]=you p3[0]=ope p3[1]=Car p3[2]=Whi p4[-2]= p4[-1]= p4[0]=open p4[1]=Care p4[2]=Whis s1[-2]=n s1[-1]=u s1[0]=n s1[1]=s s1[2]=r s2[-2]=an s2[-1]=ou s2[0]=en s2[1]=ss s2[2]=er s3[-2]=can s3[-1]=you s3[0]=pen s3[1]=ess s3[2]=per s4[-2]= s4[-1]= s4[0]=open s4[1]=less s4[2]=sper 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|open w[0]|w[1]=open|Careless w[1]|w[2]=Careless|Whisper pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[1..4]=Careless w[1..4]=Whisper w[1..4]=song +song w[-2]=you w[-1]=open w[0]=Careless w[1]=Whisper w[2]=song wl[-2]=you wl[-1]=open wl[0]=careless wl[1]=whisper wl[2]=song pos[-2]=PRP pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=ULLLLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=y p1[-1]=o p1[0]=C p1[1]=W p1[2]=s p2[-2]=yo p2[-1]=op p2[0]=Ca p2[1]=Wh p2[2]=so p3[-2]=you p3[-1]=ope p3[0]=Car p3[1]=Whi p3[2]=son p4[-2]= p4[-1]=open p4[0]=Care p4[1]=Whis p4[2]=song s1[-2]=u s1[-1]=n s1[0]=s s1[1]=r s1[2]=g s2[-2]=ou s2[-1]=en s2[0]=ss s2[1]=er s2[2]=ng s3[-2]=you s3[-1]=pen s3[0]=ess s3[1]=per s3[2]=ong s4[-2]= s4[-1]=open s4[0]=less s4[1]=sper s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|open w[-1]|w[0]=open|Careless w[0]|w[1]=Careless|Whisper w[1]|w[2]=Whisper|song pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=open w[1..4]=Whisper w[1..4]=song +song w[-2]=open w[-1]=Careless w[0]=Whisper w[1]=song wl[-2]=open wl[-1]=careless wl[0]=whisper wl[1]=song pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=ULLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-2]=o p1[-1]=C p1[0]=W p1[1]=s p2[-2]=op p2[-1]=Ca p2[0]=Wh p2[1]=so p3[-2]=ope p3[-1]=Car p3[0]=Whi p3[1]=son p4[-2]=open p4[-1]=Care p4[0]=Whis p4[1]=song s1[-2]=n s1[-1]=s s1[0]=r s1[1]=g s2[-2]=en s2[-1]=ss s2[0]=er s2[1]=ng s3[-2]=pen s3[-1]=ess s3[0]=per s3[1]=ong s4[-2]=open s4[-1]=less s4[0]=sper s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=open|Careless w[-1]|w[0]=Careless|Whisper w[0]|w[1]=Whisper|song pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=open w[-4..-1]=Careless w[1..4]=song +O w[-2]=Careless w[-1]=Whisper w[0]=song wl[-2]=careless wl[-1]=whisper wl[0]=song pos[-2]=NNP pos[-1]=NNP pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULLLLLLL shape[-1]=ULLLLLL shape[0]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=C p1[-1]=W p1[0]=s p2[-2]=Ca p2[-1]=Wh p2[0]=so p3[-2]=Car p3[-1]=Whi p3[0]=son p4[-2]=Care p4[-1]=Whis p4[0]=song s1[-2]=s s1[-1]=r s1[0]=g s2[-2]=ss s2[-1]=er s2[0]=ng s3[-2]=ess s3[-1]=per s3[0]=ong s4[-2]=less s4[-1]=sper s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Careless|Whisper w[-1]|w[0]=Whisper|song pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=you w[-4..-1]=open w[-4..-1]=Careless w[-4..-1]=Whisper __EOS__ + +O w[0]=play w[1]=song w[2]=Krystof wl[0]=play wl[1]=song wl[2]=krystof pos[0]=VBP pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=K p2[0]=pl p2[1]=so p2[2]=Kr p3[0]=pla p3[1]=son p3[2]=Kry p4[0]=play p4[1]=song p4[2]=Krys s1[0]=y s1[1]=g s1[2]=f s2[0]=ay s2[1]=ng s2[2]=of s3[0]=lay s3[1]=ong s3[2]=tof s4[0]=play s4[1]=song s4[2]=stof 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|Krystof pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=Krystof w[1..4]=Tak w[1..4]=Pojd __BOS__ +O w[-1]=play w[0]=song w[1]=Krystof w[2]=Tak wl[-1]=play wl[0]=song wl[1]=krystof wl[2]=tak pos[-1]=VBP pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=K p1[2]=T p2[-1]=pl p2[0]=so p2[1]=Kr p2[2]=Ta p3[-1]=pla p3[0]=son p3[1]=Kry p3[2]=Tak p4[-1]=play p4[0]=song p4[1]=Krys p4[2]= s1[-1]=y s1[0]=g s1[1]=f s1[2]=k s2[-1]=ay s2[0]=ng s2[1]=of s2[2]=ak s3[-1]=lay s3[0]=ong s3[1]=tof s3[2]=Tak s4[-1]=play s4[0]=song s4[1]=stof s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|Krystof w[1]|w[2]=Krystof|Tak pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Krystof w[1..4]=Tak w[1..4]=Pojd w[1..4]=Hlwdat +artist w[-2]=play w[-1]=song w[0]=Krystof w[1]=Tak w[2]=Pojd wl[-2]=play wl[-1]=song wl[0]=krystof wl[1]=tak wl[2]=pojd pos[-2]=VBP pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=K p1[1]=T p1[2]=P p2[-2]=pl p2[-1]=so p2[0]=Kr p2[1]=Ta p2[2]=Po p3[-2]=pla p3[-1]=son p3[0]=Kry p3[1]=Tak p3[2]=Poj p4[-2]=play p4[-1]=song p4[0]=Krys p4[1]= p4[2]=Pojd s1[-2]=y s1[-1]=g s1[0]=f s1[1]=k s1[2]=d s2[-2]=ay s2[-1]=ng s2[0]=of s2[1]=ak s2[2]=jd s3[-2]=lay s3[-1]=ong s3[0]=tof s3[1]=Tak s3[2]=ojd s4[-2]=play s4[-1]=song s4[0]=stof s4[1]= s4[2]=Pojd 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Krystof w[0]|w[1]=Krystof|Tak w[1]|w[2]=Tak|Pojd pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=Tak w[1..4]=Pojd w[1..4]=Hlwdat w[1..4]=Breh +song w[-2]=song w[-1]=Krystof w[0]=Tak w[1]=Pojd w[2]=Hlwdat wl[-2]=song wl[-1]=krystof wl[0]=tak wl[1]=pojd wl[2]=hlwdat pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULL shape[1]=ULLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=s p1[-1]=K p1[0]=T p1[1]=P p1[2]=H p2[-2]=so p2[-1]=Kr p2[0]=Ta p2[1]=Po p2[2]=Hl p3[-2]=son p3[-1]=Kry p3[0]=Tak p3[1]=Poj p3[2]=Hlw p4[-2]=song p4[-1]=Krys p4[0]= p4[1]=Pojd p4[2]=Hlwd s1[-2]=g s1[-1]=f s1[0]=k s1[1]=d s1[2]=t s2[-2]=ng s2[-1]=of s2[0]=ak s2[1]=jd s2[2]=at s3[-2]=ong s3[-1]=tof s3[0]=Tak s3[1]=ojd s3[2]=dat s4[-2]=song s4[-1]=stof s4[0]= s4[1]=Pojd s4[2]=wdat 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Krystof w[-1]|w[0]=Krystof|Tak w[0]|w[1]=Tak|Pojd w[1]|w[2]=Pojd|Hlwdat pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Krystof w[1..4]=Pojd w[1..4]=Hlwdat w[1..4]=Breh +song w[-2]=Krystof w[-1]=Tak w[0]=Pojd w[1]=Hlwdat w[2]=Breh wl[-2]=krystof wl[-1]=tak wl[0]=pojd wl[1]=hlwdat wl[2]=breh pos[-2]=NNP pos[-1]=NNP pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLLLL shape[-1]=ULL shape[0]=ULLL shape[1]=ULLLLL shape[2]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=K p1[-1]=T p1[0]=P p1[1]=H p1[2]=B p2[-2]=Kr p2[-1]=Ta p2[0]=Po p2[1]=Hl p2[2]=Br p3[-2]=Kry p3[-1]=Tak p3[0]=Poj p3[1]=Hlw p3[2]=Bre p4[-2]=Krys p4[-1]= p4[0]=Pojd p4[1]=Hlwd p4[2]=Breh s1[-2]=f s1[-1]=k s1[0]=d s1[1]=t s1[2]=h s2[-2]=of s2[-1]=ak s2[0]=jd s2[1]=at s2[2]=eh s3[-2]=tof s3[-1]=Tak s3[0]=ojd s3[1]=dat s3[2]=reh s4[-2]=stof s4[-1]= s4[0]=Pojd s4[1]=wdat s4[2]=Breh 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Krystof|Tak w[-1]|w[0]=Tak|Pojd w[0]|w[1]=Pojd|Hlwdat w[1]|w[2]=Hlwdat|Breh pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Krystof w[-4..-1]=Tak w[1..4]=Hlwdat w[1..4]=Breh +song w[-2]=Tak w[-1]=Pojd w[0]=Hlwdat w[1]=Breh wl[-2]=tak wl[-1]=pojd wl[0]=hlwdat wl[1]=breh pos[-2]=NNP pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=ULLL shape[0]=ULLLLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=T p1[-1]=P p1[0]=H p1[1]=B p2[-2]=Ta p2[-1]=Po p2[0]=Hl p2[1]=Br p3[-2]=Tak p3[-1]=Poj p3[0]=Hlw p3[1]=Bre p4[-2]= p4[-1]=Pojd p4[0]=Hlwd p4[1]=Breh s1[-2]=k s1[-1]=d s1[0]=t s1[1]=h s2[-2]=ak s2[-1]=jd s2[0]=at s2[1]=eh s3[-2]=Tak s3[-1]=ojd s3[0]=dat s3[1]=reh s4[-2]= s4[-1]=Pojd s4[0]=wdat s4[1]=Breh 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Tak|Pojd w[-1]|w[0]=Pojd|Hlwdat w[0]|w[1]=Hlwdat|Breh pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=song w[-4..-1]=Krystof w[-4..-1]=Tak w[-4..-1]=Pojd w[1..4]=Breh +song w[-2]=Pojd w[-1]=Hlwdat w[0]=Breh wl[-2]=pojd wl[-1]=hlwdat wl[0]=breh pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=ULLLLL shape[0]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=P p1[-1]=H p1[0]=B p2[-2]=Po p2[-1]=Hl p2[0]=Br p3[-2]=Poj p3[-1]=Hlw p3[0]=Bre p4[-2]=Pojd p4[-1]=Hlwd p4[0]=Breh s1[-2]=d s1[-1]=t s1[0]=h s2[-2]=jd s2[-1]=at s2[0]=eh s3[-2]=ojd s3[-1]=dat s3[0]=reh s4[-2]=Pojd s4[-1]=wdat s4[0]=Breh 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Pojd|Hlwdat w[-1]|w[0]=Hlwdat|Breh pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Krystof w[-4..-1]=Tak w[-4..-1]=Pojd w[-4..-1]=Hlwdat __EOS__ + +O w[0]=play w[1]=Foolin w[2]=by wl[0]=play wl[1]=foolin wl[2]=by pos[0]=VB pos[1]=NNP pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=F p1[2]=b p2[0]=pl p2[1]=Fo p2[2]=by p3[0]=pla p3[1]=Foo p3[2]= p4[0]=play p4[1]=Fool p4[2]= s1[0]=y s1[1]=n s1[2]=y s2[0]=ay s2[1]=in s2[2]=by s3[0]=lay s3[1]=lin s3[2]= s4[0]=play s4[1]=olin s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Foolin w[1]|w[2]=Foolin|by pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Foolin w[1..4]=by w[1..4]=Changing w[1..4]=Faces __BOS__ +song w[-1]=play w[0]=Foolin w[1]=by w[2]=Changing wl[-1]=play wl[0]=foolin wl[1]=by wl[2]=changing pos[-1]=VB pos[0]=NNP pos[1]=IN pos[2]=VBG chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLL shape[1]=LL shape[2]=ULLLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=F p1[1]=b p1[2]=C p2[-1]=pl p2[0]=Fo p2[1]=by p2[2]=Ch p3[-1]=pla p3[0]=Foo p3[1]= p3[2]=Cha p4[-1]=play p4[0]=Fool p4[1]= p4[2]=Chan s1[-1]=y s1[0]=n s1[1]=y s1[2]=g s2[-1]=ay s2[0]=in s2[1]=by s2[2]=ng s3[-1]=lay s3[0]=lin s3[1]= s3[2]=ing s4[-1]=play s4[0]=olin s4[1]= s4[2]=ging 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Foolin w[0]|w[1]=Foolin|by w[1]|w[2]=by|Changing pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|VBG chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Changing w[1..4]=Faces +O w[-2]=play w[-1]=Foolin w[0]=by w[1]=Changing w[2]=Faces wl[-2]=play wl[-1]=foolin wl[0]=by wl[1]=changing wl[2]=faces pos[-2]=VB pos[-1]=NNP pos[0]=IN pos[1]=VBG pos[2]=VBG chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=LL shape[1]=ULLLLLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=F p1[0]=b p1[1]=C p1[2]=F p2[-2]=pl p2[-1]=Fo p2[0]=by p2[1]=Ch p2[2]=Fa p3[-2]=pla p3[-1]=Foo p3[0]= p3[1]=Cha p3[2]=Fac p4[-2]=play p4[-1]=Fool p4[0]= p4[1]=Chan p4[2]=Face s1[-2]=y s1[-1]=n s1[0]=y s1[1]=g s1[2]=s s2[-2]=ay s2[-1]=in s2[0]=by s2[1]=ng s2[2]=es s3[-2]=lay s3[-1]=lin s3[0]= s3[1]=ing s3[2]=ces s4[-2]=play s4[-1]=olin s4[0]= s4[1]=ging s4[2]=aces 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Foolin w[-1]|w[0]=Foolin|by w[0]|w[1]=by|Changing w[1]|w[2]=Changing|Faces pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|VBG pos[1]|pos[2]=VBG|VBG chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Foolin w[1..4]=Changing w[1..4]=Faces +artist w[-2]=Foolin w[-1]=by w[0]=Changing w[1]=Faces wl[-2]=foolin wl[-1]=by wl[0]=changing wl[1]=faces pos[-2]=NNP pos[-1]=IN pos[0]=VBG pos[1]=VBG chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=ULLLLLLL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=F p1[-1]=b p1[0]=C p1[1]=F p2[-2]=Fo p2[-1]=by p2[0]=Ch p2[1]=Fa p3[-2]=Foo p3[-1]= p3[0]=Cha p3[1]=Fac p4[-2]=Fool p4[-1]= p4[0]=Chan p4[1]=Face s1[-2]=n s1[-1]=y s1[0]=g s1[1]=s s2[-2]=in s2[-1]=by s2[0]=ng s2[1]=es s3[-2]=lin s3[-1]= s3[0]=ing s3[1]=ces s4[-2]=olin s4[-1]= s4[0]=ging s4[1]=aces 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Foolin|by w[-1]|w[0]=by|Changing w[0]|w[1]=Changing|Faces pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|VBG pos[0]|pos[1]=VBG|VBG chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Foolin w[-4..-1]=by w[1..4]=Faces +artist w[-2]=by w[-1]=Changing w[0]=Faces wl[-2]=by wl[-1]=changing wl[0]=faces pos[-2]=IN pos[-1]=VBG pos[0]=VBG chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=C p1[0]=F p2[-2]=by p2[-1]=Ch p2[0]=Fa p3[-2]= p3[-1]=Cha p3[0]=Fac p4[-2]= p4[-1]=Chan p4[0]=Face s1[-2]=y s1[-1]=g s1[0]=s s2[-2]=by s2[-1]=ng s2[0]=es s3[-2]= s3[-1]=ing s3[0]=ces s4[-2]= s4[-1]=ging s4[0]=aces 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Changing w[-1]|w[0]=Changing|Faces pos[-2]|pos[-1]=IN|VBG pos[-1]|pos[0]=VBG|VBG chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Foolin w[-4..-1]=by w[-4..-1]=Changing __EOS__ + +O w[0]=play w[1]=music w[2]=for wl[0]=play wl[1]=music wl[2]=for pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=f p2[0]=pl p2[1]=mu p2[2]=fo p3[0]=pla p3[1]=mus p3[2]=for p4[0]=play p4[1]=musi p4[2]= s1[0]=y s1[1]=c s1[2]=r s2[0]=ay s2[1]=ic s2[2]=or s3[0]=lay s3[1]=sic s3[2]=for s4[0]=play s4[1]=usic s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|music w[1]|w[2]=music|for pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=music w[1..4]=for w[1..4]=me __BOS__ +O w[-1]=play w[0]=music w[1]=for w[2]=me wl[-1]=play wl[0]=music wl[1]=for wl[2]=me pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=m p1[1]=f p1[2]=m p2[-1]=pl p2[0]=mu p2[1]=fo p2[2]=me p3[-1]=pla p3[0]=mus p3[1]=for p3[2]= p4[-1]=play p4[0]=musi p4[1]= p4[2]= s1[-1]=y s1[0]=c s1[1]=r s1[2]=e s2[-1]=ay s2[0]=ic s2[1]=or s2[2]=me s3[-1]=lay s3[0]=sic s3[1]=for s3[2]= s4[-1]=play s4[0]=usic s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|music w[0]|w[1]=music|for w[1]|w[2]=for|me pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=for w[1..4]=me +O w[-2]=play w[-1]=music w[0]=for w[1]=me wl[-2]=play wl[-1]=music wl[0]=for wl[1]=me pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLL shape[1]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=m p1[0]=f p1[1]=m p2[-2]=pl p2[-1]=mu p2[0]=fo p2[1]=me p3[-2]=pla p3[-1]=mus p3[0]=for p3[1]= p4[-2]=play p4[-1]=musi p4[0]= p4[1]= s1[-2]=y s1[-1]=c s1[0]=r s1[1]=e s2[-2]=ay s2[-1]=ic s2[0]=or s2[1]=me s3[-2]=lay s3[-1]=sic s3[0]=for s3[1]= s4[-2]=play s4[-1]=usic s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|music w[-1]|w[0]=music|for w[0]|w[1]=for|me pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=music w[1..4]=me +O w[-2]=music w[-1]=for w[0]=me wl[-2]=music wl[-1]=for wl[0]=me pos[-2]=NN pos[-1]=IN pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=f p1[0]=m p2[-2]=mu p2[-1]=fo p2[0]=me p3[-2]=mus p3[-1]=for p3[0]= p4[-2]=musi p4[-1]= p4[0]= s1[-2]=c s1[-1]=r s1[0]=e s2[-2]=ic s2[-1]=or s2[0]=me s3[-2]=sic s3[-1]=for s3[0]= s4[-2]=usic s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=music|for w[-1]|w[0]=for|me pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=music w[-4..-1]=for __EOS__ + +O w[0]=play w[1]=album w[2]=Sounds wl[0]=play wl[1]=album wl[2]=sounds pos[0]=VBP pos[1]=NN pos[2]=VBZ chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=S p2[0]=pl p2[1]=al p2[2]=So p3[0]=pla p3[1]=alb p3[2]=Sou p4[0]=play p4[1]=albu p4[2]=Soun s1[0]=y s1[1]=m s1[2]=s s2[0]=ay s2[1]=um s2[2]=ds s3[0]=lay s3[1]=bum s3[2]=nds s4[0]=play s4[1]=lbum s4[2]=unds 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Sounds pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|VBZ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Sounds w[1..4]=Good w[1..4]=Field __BOS__ +O w[-1]=play w[0]=album w[1]=Sounds w[2]=Good wl[-1]=play wl[0]=album wl[1]=sounds wl[2]=good pos[-1]=VBP pos[0]=NN pos[1]=VBZ pos[2]=VBZ chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=a p1[1]=S p1[2]=G p2[-1]=pl p2[0]=al p2[1]=So p2[2]=Go p3[-1]=pla p3[0]=alb p3[1]=Sou p3[2]=Goo p4[-1]=play p4[0]=albu p4[1]=Soun p4[2]=Good s1[-1]=y s1[0]=m s1[1]=s s1[2]=d s2[-1]=ay s2[0]=um s2[1]=ds s2[2]=od s3[-1]=lay s3[0]=bum s3[1]=nds s3[2]=ood s4[-1]=play s4[0]=lbum s4[1]=unds s4[2]=Good 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Sounds w[1]|w[2]=Sounds|Good pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|VBZ pos[1]|pos[2]=VBZ|VBZ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Sounds w[1..4]=Good w[1..4]=Field w[1..4]=by +album w[-2]=play w[-1]=album w[0]=Sounds w[1]=Good w[2]=Field wl[-2]=play wl[-1]=album wl[0]=sounds wl[1]=good wl[2]=field pos[-2]=VBP pos[-1]=NN pos[0]=VBZ pos[1]=VBZ pos[2]=VBZ chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLL shape[1]=ULLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=S p1[1]=G p1[2]=F p2[-2]=pl p2[-1]=al p2[0]=So p2[1]=Go p2[2]=Fi p3[-2]=pla p3[-1]=alb p3[0]=Sou p3[1]=Goo p3[2]=Fie p4[-2]=play p4[-1]=albu p4[0]=Soun p4[1]=Good p4[2]=Fiel s1[-2]=y s1[-1]=m s1[0]=s s1[1]=d s1[2]=d s2[-2]=ay s2[-1]=um s2[0]=ds s2[1]=od s2[2]=ld s3[-2]=lay s3[-1]=bum s3[0]=nds s3[1]=ood s3[2]=eld s4[-2]=play s4[-1]=lbum s4[0]=unds s4[1]=Good s4[2]=ield 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Sounds w[0]|w[1]=Sounds|Good w[1]|w[2]=Good|Field pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|VBZ pos[0]|pos[1]=VBZ|VBZ pos[1]|pos[2]=VBZ|VBZ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=Good w[1..4]=Field w[1..4]=by w[1..4]=Five +album w[-2]=album w[-1]=Sounds w[0]=Good w[1]=Field w[2]=by wl[-2]=album wl[-1]=sounds wl[0]=good wl[1]=field wl[2]=by pos[-2]=NN pos[-1]=VBZ pos[0]=VBZ pos[1]=VBZ pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLL shape[-1]=ULLLLL shape[0]=ULLL shape[1]=ULLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=a p1[-1]=S p1[0]=G p1[1]=F p1[2]=b p2[-2]=al p2[-1]=So p2[0]=Go p2[1]=Fi p2[2]=by p3[-2]=alb p3[-1]=Sou p3[0]=Goo p3[1]=Fie p3[2]= p4[-2]=albu p4[-1]=Soun p4[0]=Good p4[1]=Fiel p4[2]= s1[-2]=m s1[-1]=s s1[0]=d s1[1]=d s1[2]=y s2[-2]=um s2[-1]=ds s2[0]=od s2[1]=ld s2[2]=by s3[-2]=bum s3[-1]=nds s3[0]=ood s3[1]=eld s3[2]= s4[-2]=lbum s4[-1]=unds s4[0]=Good s4[1]=ield s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Sounds w[-1]|w[0]=Sounds|Good w[0]|w[1]=Good|Field w[1]|w[2]=Field|by pos[-2]|pos[-1]=NN|VBZ pos[-1]|pos[0]=VBZ|VBZ pos[0]|pos[1]=VBZ|VBZ pos[1]|pos[2]=VBZ|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Sounds w[1..4]=Field w[1..4]=by w[1..4]=Five w[1..4]=Seconds +album w[-2]=Sounds w[-1]=Good w[0]=Field w[1]=by w[2]=Five wl[-2]=sounds wl[-1]=good wl[0]=field wl[1]=by wl[2]=five pos[-2]=VBZ pos[-1]=VBZ pos[0]=VBZ pos[1]=IN pos[2]=CD chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLLLL shape[-1]=ULLL shape[0]=ULLLL shape[1]=LL shape[2]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=S p1[-1]=G p1[0]=F p1[1]=b p1[2]=F p2[-2]=So p2[-1]=Go p2[0]=Fi p2[1]=by p2[2]=Fi p3[-2]=Sou p3[-1]=Goo p3[0]=Fie p3[1]= p3[2]=Fiv p4[-2]=Soun p4[-1]=Good p4[0]=Fiel p4[1]= p4[2]=Five s1[-2]=s s1[-1]=d s1[0]=d s1[1]=y s1[2]=e s2[-2]=ds s2[-1]=od s2[0]=ld s2[1]=by s2[2]=ve s3[-2]=nds s3[-1]=ood s3[0]=eld s3[1]= s3[2]=ive s4[-2]=unds s4[-1]=Good s4[0]=ield s4[1]= s4[2]=Five 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Sounds|Good w[-1]|w[0]=Good|Field w[0]|w[1]=Field|by w[1]|w[2]=by|Five pos[-2]|pos[-1]=VBZ|VBZ pos[-1]|pos[0]=VBZ|VBZ pos[0]|pos[1]=VBZ|IN pos[1]|pos[2]=IN|CD chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Sounds w[-4..-1]=Good w[1..4]=by w[1..4]=Five w[1..4]=Seconds w[1..4]=of +O w[-2]=Good w[-1]=Field w[0]=by w[1]=Five w[2]=Seconds wl[-2]=good wl[-1]=field wl[0]=by wl[1]=five wl[2]=seconds pos[-2]=VBZ pos[-1]=VBZ pos[0]=IN pos[1]=CD pos[2]=CD chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=G p1[-1]=F p1[0]=b p1[1]=F p1[2]=S p2[-2]=Go p2[-1]=Fi p2[0]=by p2[1]=Fi p2[2]=Se p3[-2]=Goo p3[-1]=Fie p3[0]= p3[1]=Fiv p3[2]=Sec p4[-2]=Good p4[-1]=Fiel p4[0]= p4[1]=Five p4[2]=Seco s1[-2]=d s1[-1]=d s1[0]=y s1[1]=e s1[2]=s s2[-2]=od s2[-1]=ld s2[0]=by s2[1]=ve s2[2]=ds s3[-2]=ood s3[-1]=eld s3[0]= s3[1]=ive s3[2]=nds s4[-2]=Good s4[-1]=ield s4[0]= s4[1]=Five s4[2]=onds 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Good|Field w[-1]|w[0]=Field|by w[0]|w[1]=by|Five w[1]|w[2]=Five|Seconds pos[-2]|pos[-1]=VBZ|VBZ pos[-1]|pos[0]=VBZ|IN pos[0]|pos[1]=IN|CD pos[1]|pos[2]=CD|CD chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=album w[-4..-1]=Sounds w[-4..-1]=Good w[-4..-1]=Field w[1..4]=Five w[1..4]=Seconds w[1..4]=of w[1..4]=Summer +artist w[-2]=Field w[-1]=by w[0]=Five w[1]=Seconds w[2]=of wl[-2]=field wl[-1]=by wl[0]=five wl[1]=seconds wl[2]=of pos[-2]=VBZ pos[-1]=IN pos[0]=CD pos[1]=CD pos[2]=CD chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLL shape[1]=ULLLLLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=F p1[-1]=b p1[0]=F p1[1]=S p1[2]=o p2[-2]=Fi p2[-1]=by p2[0]=Fi p2[1]=Se p2[2]=of p3[-2]=Fie p3[-1]= p3[0]=Fiv p3[1]=Sec p3[2]= p4[-2]=Fiel p4[-1]= p4[0]=Five p4[1]=Seco p4[2]= s1[-2]=d s1[-1]=y s1[0]=e s1[1]=s s1[2]=f s2[-2]=ld s2[-1]=by s2[0]=ve s2[1]=ds s2[2]=of s3[-2]=eld s3[-1]= s3[0]=ive s3[1]=nds s3[2]= s4[-2]=ield s4[-1]= s4[0]=Five s4[1]=onds s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Field|by w[-1]|w[0]=by|Five w[0]|w[1]=Five|Seconds w[1]|w[2]=Seconds|of pos[-2]|pos[-1]=VBZ|IN pos[-1]|pos[0]=IN|CD pos[0]|pos[1]=CD|CD pos[1]|pos[2]=CD|CD chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Sounds w[-4..-1]=Good w[-4..-1]=Field w[-4..-1]=by w[1..4]=Seconds w[1..4]=of w[1..4]=Summer +artist w[-2]=by w[-1]=Five w[0]=Seconds w[1]=of w[2]=Summer wl[-2]=by wl[-1]=five wl[0]=seconds wl[1]=of wl[2]=summer pos[-2]=IN pos[-1]=CD pos[0]=CD pos[1]=CD pos[2]=CD chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=ULLL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=b p1[-1]=F p1[0]=S p1[1]=o p1[2]=S p2[-2]=by p2[-1]=Fi p2[0]=Se p2[1]=of p2[2]=Su p3[-2]= p3[-1]=Fiv p3[0]=Sec p3[1]= p3[2]=Sum p4[-2]= p4[-1]=Five p4[0]=Seco p4[1]= p4[2]=Summ s1[-2]=y s1[-1]=e s1[0]=s s1[1]=f s1[2]=r s2[-2]=by s2[-1]=ve s2[0]=ds s2[1]=of s2[2]=er s3[-2]= s3[-1]=ive s3[0]=nds s3[1]= s3[2]=mer s4[-2]= s4[-1]=Five s4[0]=onds s4[1]= s4[2]=mmer 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Five w[-1]|w[0]=Five|Seconds w[0]|w[1]=Seconds|of w[1]|w[2]=of|Summer pos[-2]|pos[-1]=IN|CD pos[-1]|pos[0]=CD|CD pos[0]|pos[1]=CD|CD pos[1]|pos[2]=CD|CD chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Good w[-4..-1]=Field w[-4..-1]=by w[-4..-1]=Five w[1..4]=of w[1..4]=Summer +artist w[-2]=Five w[-1]=Seconds w[0]=of w[1]=Summer wl[-2]=five wl[-1]=seconds wl[0]=of wl[1]=summer pos[-2]=CD pos[-1]=CD pos[0]=CD pos[1]=CD chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=F p1[-1]=S p1[0]=o p1[1]=S p2[-2]=Fi p2[-1]=Se p2[0]=of p2[1]=Su p3[-2]=Fiv p3[-1]=Sec p3[0]= p3[1]=Sum p4[-2]=Five p4[-1]=Seco p4[0]= p4[1]=Summ s1[-2]=e s1[-1]=s s1[0]=f s1[1]=r s2[-2]=ve s2[-1]=ds s2[0]=of s2[1]=er s3[-2]=ive s3[-1]=nds s3[0]= s3[1]=mer s4[-2]=Five s4[-1]=onds s4[0]= s4[1]=mmer 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Five|Seconds w[-1]|w[0]=Seconds|of w[0]|w[1]=of|Summer pos[-2]|pos[-1]=CD|CD pos[-1]|pos[0]=CD|CD pos[0]|pos[1]=CD|CD chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=Field w[-4..-1]=by w[-4..-1]=Five w[-4..-1]=Seconds w[1..4]=Summer +artist w[-2]=Seconds w[-1]=of w[0]=Summer wl[-2]=seconds wl[-1]=of wl[0]=summer pos[-2]=CD pos[-1]=CD pos[0]=CD chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=S p1[-1]=o p1[0]=S p2[-2]=Se p2[-1]=of p2[0]=Su p3[-2]=Sec p3[-1]= p3[0]=Sum p4[-2]=Seco p4[-1]= p4[0]=Summ s1[-2]=s s1[-1]=f s1[0]=r s2[-2]=ds s2[-1]=of s2[0]=er s3[-2]=nds s3[-1]= s3[0]=mer s4[-2]=onds s4[-1]= s4[0]=mmer 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Seconds|of w[-1]|w[0]=of|Summer pos[-2]|pos[-1]=CD|CD pos[-1]|pos[0]=CD|CD chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Five w[-4..-1]=Seconds w[-4..-1]=of __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=Crazy +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=Crazy w[1..4]=performed +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=Crazy wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=crazy pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=C p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=Cr p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=Cra p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]=Craz s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=y s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=zy s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=azy s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]=razy 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|Crazy pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=Crazy w[1..4]=performed w[1..4]=by +O w[-2]=to w[-1]=listen w[0]=to w[1]=Crazy w[2]=performed wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=crazy wl[2]=performed pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=NNP pos[2]=VBN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=ULLLL shape[2]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=C p1[2]=p p2[-2]=to p2[-1]=li p2[0]=to p2[1]=Cr p2[2]=pe p3[-2]= p3[-1]=lis p3[0]= p3[1]=Cra p3[2]=per p4[-2]= p4[-1]=list p4[0]= p4[1]=Craz p4[2]=perf s1[-2]=o s1[-1]=n s1[0]=o s1[1]=y s1[2]=d s2[-2]=to s2[-1]=en s2[0]=to s2[1]=zy s2[2]=ed s3[-2]= s3[-1]=ten s3[0]= s3[1]=azy s3[2]=med s4[-2]= s4[-1]=sten s4[0]= s4[1]=razy s4[2]=rmed 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|Crazy w[1]|w[2]=Crazy|performed pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|VBN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=Crazy w[1..4]=performed w[1..4]=by w[1..4]=Aerosmith +song w[-2]=listen w[-1]=to w[0]=Crazy w[1]=performed w[2]=by wl[-2]=listen wl[-1]=to wl[0]=crazy wl[1]=performed wl[2]=by pos[-2]=VB pos[-1]=IN pos[0]=NNP pos[1]=VBN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=ULLLL shape[1]=LLLLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=C p1[1]=p p1[2]=b p2[-2]=li p2[-1]=to p2[0]=Cr p2[1]=pe p2[2]=by p3[-2]=lis p3[-1]= p3[0]=Cra p3[1]=per p3[2]= p4[-2]=list p4[-1]= p4[0]=Craz p4[1]=perf p4[2]= s1[-2]=n s1[-1]=o s1[0]=y s1[1]=d s1[2]=y s2[-2]=en s2[-1]=to s2[0]=zy s2[1]=ed s2[2]=by s3[-2]=ten s3[-1]= s3[0]=azy s3[1]=med s3[2]= s4[-2]=sten s4[-1]= s4[0]=razy s4[1]=rmed s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|Crazy w[0]|w[1]=Crazy|performed w[1]|w[2]=performed|by pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|VBN pos[1]|pos[2]=VBN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=performed w[1..4]=by w[1..4]=Aerosmith +O w[-2]=to w[-1]=Crazy w[0]=performed w[1]=by w[2]=Aerosmith wl[-2]=to wl[-1]=crazy wl[0]=performed wl[1]=by wl[2]=aerosmith pos[-2]=IN pos[-1]=NNP pos[0]=VBN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=LLLLLLLLL shape[1]=LL shape[2]=ULLLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=C p1[0]=p p1[1]=b p1[2]=A p2[-2]=to p2[-1]=Cr p2[0]=pe p2[1]=by p2[2]=Ae p3[-2]= p3[-1]=Cra p3[0]=per p3[1]= p3[2]=Aer p4[-2]= p4[-1]=Craz p4[0]=perf p4[1]= p4[2]=Aero s1[-2]=o s1[-1]=y s1[0]=d s1[1]=y s1[2]=h s2[-2]=to s2[-1]=zy s2[0]=ed s2[1]=by s2[2]=th s3[-2]= s3[-1]=azy s3[0]=med s3[1]= s3[2]=ith s4[-2]= s4[-1]=razy s4[0]=rmed s4[1]= s4[2]=mith 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|Crazy w[-1]|w[0]=Crazy|performed w[0]|w[1]=performed|by w[1]|w[2]=by|Aerosmith pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|VBN pos[0]|pos[1]=VBN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Crazy w[1..4]=by w[1..4]=Aerosmith +O w[-2]=Crazy w[-1]=performed w[0]=by w[1]=Aerosmith wl[-2]=crazy wl[-1]=performed wl[0]=by wl[1]=aerosmith pos[-2]=NNP pos[-1]=VBN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLL shape[-1]=LLLLLLLLL shape[0]=LL shape[1]=ULLLLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=C p1[-1]=p p1[0]=b p1[1]=A p2[-2]=Cr p2[-1]=pe p2[0]=by p2[1]=Ae p3[-2]=Cra p3[-1]=per p3[0]= p3[1]=Aer p4[-2]=Craz p4[-1]=perf p4[0]= p4[1]=Aero s1[-2]=y s1[-1]=d s1[0]=y s1[1]=h s2[-2]=zy s2[-1]=ed s2[0]=by s2[1]=th s3[-2]=azy s3[-1]=med s3[0]= s3[1]=ith s4[-2]=razy s4[-1]=rmed s4[0]= s4[1]=mith 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Crazy|performed w[-1]|w[0]=performed|by w[0]|w[1]=by|Aerosmith pos[-2]|pos[-1]=NNP|VBN pos[-1]|pos[0]=VBN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Crazy w[-4..-1]=performed w[1..4]=Aerosmith +artist w[-2]=performed w[-1]=by w[0]=Aerosmith wl[-2]=performed wl[-1]=by wl[0]=aerosmith pos[-2]=VBN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLLLLLL shape[-1]=LL shape[0]=ULLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=b p1[0]=A p2[-2]=pe p2[-1]=by p2[0]=Ae p3[-2]=per p3[-1]= p3[0]=Aer p4[-2]=perf p4[-1]= p4[0]=Aero s1[-2]=d s1[-1]=y s1[0]=h s2[-2]=ed s2[-1]=by s2[0]=th s3[-2]=med s3[-1]= s3[0]=ith s4[-2]=rmed s4[-1]= s4[0]=mith 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=performed|by w[-1]|w[0]=by|Aerosmith pos[-2]|pos[-1]=VBN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=to w[-4..-1]=Crazy w[-4..-1]=performed w[-4..-1]=by __EOS__ + +artist w[0]=Cher w[1]=Believe wl[0]=cher wl[1]=believe pos[0]=NNP pos[1]=VB chk[0]=I chk[1]=I shape[0]=ULLL shape[1]=ULLLLLL shaped[0]=UL shaped[1]=UL type[0]=InitUpper type[1]=InitUpper p1[0]=C p1[1]=B p2[0]=Ch p2[1]=Be p3[0]=Che p3[1]=Bel p4[0]=Cher p4[1]=Beli s1[0]=r s1[1]=e s2[0]=er s2[1]=ve s3[0]=her s3[1]=eve s4[0]=Cher s4[1]=ieve 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=yes iu[1]=yes au[0]=no au[1]=no al[0]=no al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=yes cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=yes cd[1]=yes cs[0]=no cs[1]=no w[0]|w[1]=Cher|Believe pos[0]|pos[1]=NNP|VB chk[0]|chk[1]=I|I shaped[0]|shaped[1]=UL|UL type[0]|type[1]=InitUpper|InitUpper w[1..4]=Believe __BOS__ +song w[-1]=Cher w[0]=Believe wl[-1]=cher wl[0]=believe pos[-1]=NNP pos[0]=VB chk[-1]=I chk[0]=I shape[-1]=ULLL shape[0]=ULLLLLL shaped[-1]=UL shaped[0]=UL type[-1]=InitUpper type[0]=InitUpper p1[-1]=C p1[0]=B p2[-1]=Ch p2[0]=Be p3[-1]=Che p3[0]=Bel p4[-1]=Cher p4[0]=Beli s1[-1]=r s1[0]=e s2[-1]=er s2[0]=ve s3[-1]=her s3[0]=eve s4[-1]=Cher s4[0]=ieve 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=yes iu[0]=yes au[-1]=no au[0]=no al[-1]=no al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=yes cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=yes cd[0]=yes cs[-1]=no cs[0]=no w[-1]|w[0]=Cher|Believe pos[-1]|pos[0]=NNP|VB chk[-1]|chk[0]=I|I shaped[-1]|shaped[0]=UL|UL type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Cher __EOS__ + +O w[0]=play w[1]=Now w[2]=Call wl[0]=play wl[1]=now wl[2]=call pos[0]=VB pos[1]=RB pos[2]=RB chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=ULLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=N p1[2]=C p2[0]=pl p2[1]=No p2[2]=Ca p3[0]=pla p3[1]=Now p3[2]=Cal p4[0]=play p4[1]= p4[2]=Call s1[0]=y s1[1]=w s1[2]=l s2[0]=ay s2[1]=ow s2[2]=ll s3[0]=lay s3[1]=Now s3[2]=all s4[0]=play s4[1]= s4[2]=Call 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Now w[1]|w[2]=Now|Call pos[0]|pos[1]=VB|RB pos[1]|pos[2]=RB|RB chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Now w[1..4]=Call w[1..4]=Mom __BOS__ +song w[-1]=play w[0]=Now w[1]=Call w[2]=Mom wl[-1]=play wl[0]=now wl[1]=call wl[2]=mom pos[-1]=VB pos[0]=RB pos[1]=RB pos[2]=RB chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULL shape[1]=ULLL shape[2]=ULL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=N p1[1]=C p1[2]=M p2[-1]=pl p2[0]=No p2[1]=Ca p2[2]=Mo p3[-1]=pla p3[0]=Now p3[1]=Cal p3[2]=Mom p4[-1]=play p4[0]= p4[1]=Call p4[2]= s1[-1]=y s1[0]=w s1[1]=l s1[2]=m s2[-1]=ay s2[0]=ow s2[1]=ll s2[2]=om s3[-1]=lay s3[0]=Now s3[1]=all s3[2]=Mom s4[-1]=play s4[0]= s4[1]=Call s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Now w[0]|w[1]=Now|Call w[1]|w[2]=Call|Mom pos[-1]|pos[0]=VB|RB pos[0]|pos[1]=RB|RB pos[1]|pos[2]=RB|RB chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Call w[1..4]=Mom +song w[-2]=play w[-1]=Now w[0]=Call w[1]=Mom wl[-2]=play wl[-1]=now wl[0]=call wl[1]=mom pos[-2]=VB pos[-1]=RB pos[0]=RB pos[1]=RB chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLL shape[1]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=p p1[-1]=N p1[0]=C p1[1]=M p2[-2]=pl p2[-1]=No p2[0]=Ca p2[1]=Mo p3[-2]=pla p3[-1]=Now p3[0]=Cal p3[1]=Mom p4[-2]=play p4[-1]= p4[0]=Call p4[1]= s1[-2]=y s1[-1]=w s1[0]=l s1[1]=m s2[-2]=ay s2[-1]=ow s2[0]=ll s2[1]=om s3[-2]=lay s3[-1]=Now s3[0]=all s3[1]=Mom s4[-2]=play s4[-1]= s4[0]=Call s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Now w[-1]|w[0]=Now|Call w[0]|w[1]=Call|Mom pos[-2]|pos[-1]=VB|RB pos[-1]|pos[0]=RB|RB pos[0]|pos[1]=RB|RB chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Now w[1..4]=Mom +song w[-2]=Now w[-1]=Call w[0]=Mom wl[-2]=now wl[-1]=call wl[0]=mom pos[-2]=RB pos[-1]=RB pos[0]=RB chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=ULLL shape[0]=ULL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=N p1[-1]=C p1[0]=M p2[-2]=No p2[-1]=Ca p2[0]=Mo p3[-2]=Now p3[-1]=Cal p3[0]=Mom p4[-2]= p4[-1]=Call p4[0]= s1[-2]=w s1[-1]=l s1[0]=m s2[-2]=ow s2[-1]=ll s2[0]=om s3[-2]=Now s3[-1]=all s3[0]=Mom s4[-2]= s4[-1]=Call s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Now|Call w[-1]|w[0]=Call|Mom pos[-2]|pos[-1]=RB|RB pos[-1]|pos[0]=RB|RB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Now w[-4..-1]=Call __EOS__ + +O w[0]=play w[1]=Yesterday w[2]=by wl[0]=play wl[1]=yesterday wl[2]=by pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=Y p1[2]=b p2[0]=pl p2[1]=Ye p2[2]=by p3[0]=pla p3[1]=Yes p3[2]= p4[0]=play p4[1]=Yest p4[2]= s1[0]=y s1[1]=y s1[2]=y s2[0]=ay s2[1]=ay s2[2]=by s3[0]=lay s3[1]=day s3[2]= s4[0]=play s4[1]=rday s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Yesterday w[1]|w[2]=Yesterday|by pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Yesterday w[1..4]=by w[1..4]=Beatles __BOS__ +song w[-1]=play w[0]=Yesterday w[1]=by w[2]=Beatles wl[-1]=play wl[0]=yesterday wl[1]=by wl[2]=beatles pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=Y p1[1]=b p1[2]=B p2[-1]=pl p2[0]=Ye p2[1]=by p2[2]=Be p3[-1]=pla p3[0]=Yes p3[1]= p3[2]=Bea p4[-1]=play p4[0]=Yest p4[1]= p4[2]=Beat s1[-1]=y s1[0]=y s1[1]=y s1[2]=s s2[-1]=ay s2[0]=ay s2[1]=by s2[2]=es s3[-1]=lay s3[0]=day s3[1]= s3[2]=les s4[-1]=play s4[0]=rday s4[1]= s4[2]=tles 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Yesterday w[0]|w[1]=Yesterday|by w[1]|w[2]=by|Beatles pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Beatles +O w[-2]=play w[-1]=Yesterday w[0]=by w[1]=Beatles wl[-2]=play wl[-1]=yesterday wl[0]=by wl[1]=beatles pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=ULLLLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=Y p1[0]=b p1[1]=B p2[-2]=pl p2[-1]=Ye p2[0]=by p2[1]=Be p3[-2]=pla p3[-1]=Yes p3[0]= p3[1]=Bea p4[-2]=play p4[-1]=Yest p4[0]= p4[1]=Beat s1[-2]=y s1[-1]=y s1[0]=y s1[1]=s s2[-2]=ay s2[-1]=ay s2[0]=by s2[1]=es s3[-2]=lay s3[-1]=day s3[0]= s3[1]=les s4[-2]=play s4[-1]=rday s4[0]= s4[1]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Yesterday w[-1]|w[0]=Yesterday|by w[0]|w[1]=by|Beatles pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Yesterday w[1..4]=Beatles +artist w[-2]=Yesterday w[-1]=by w[0]=Beatles wl[-2]=yesterday wl[-1]=by wl[0]=beatles pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=Y p1[-1]=b p1[0]=B p2[-2]=Ye p2[-1]=by p2[0]=Be p3[-2]=Yes p3[-1]= p3[0]=Bea p4[-2]=Yest p4[-1]= p4[0]=Beat s1[-2]=y s1[-1]=y s1[0]=s s2[-2]=ay s2[-1]=by s2[0]=es s3[-2]=day s3[-1]= s3[0]=les s4[-2]=rday s4[-1]= s4[0]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Yesterday|by w[-1]|w[0]=by|Beatles pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Yesterday w[-4..-1]=by __EOS__ + +artist w[0]=Bart w[1]=Baker w[2]=song wl[0]=bart wl[1]=baker wl[2]=song pos[0]=NNP pos[1]=NNP pos[2]=NN chk[0]=I chk[1]=I chk[2]=O shape[0]=ULLL shape[1]=ULLLL shape[2]=LLLL shaped[0]=UL shaped[1]=UL shaped[2]=L type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[0]=B p1[1]=B p1[2]=s p2[0]=Ba p2[1]=Ba p2[2]=so p3[0]=Bar p3[1]=Bak p3[2]=son p4[0]=Bart p4[1]=Bake p4[2]=song s1[0]=t s1[1]=r s1[2]=g s2[0]=rt s2[1]=er s2[2]=ng s3[0]=art s3[1]=ker s3[2]=ong s4[0]=Bart s4[1]=aker s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=Bart|Baker w[1]|w[2]=Baker|song pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Baker w[1..4]=song __BOS__ +artist w[-1]=Bart w[0]=Baker w[1]=song wl[-1]=bart wl[0]=baker wl[1]=song pos[-1]=NNP pos[0]=NNP pos[1]=NN chk[-1]=I chk[0]=I chk[1]=O shape[-1]=ULLL shape[0]=ULLLL shape[1]=LLLL shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-1]=B p1[0]=B p1[1]=s p2[-1]=Ba p2[0]=Ba p2[1]=so p3[-1]=Bar p3[0]=Bak p3[1]=son p4[-1]=Bart p4[0]=Bake p4[1]=song s1[-1]=t s1[0]=r s1[1]=g s2[-1]=rt s2[0]=er s2[1]=ng s3[-1]=art s3[0]=ker s3[1]=ong s4[-1]=Bart s4[0]=aker s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=no al[0]=no al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=yes cd[0]=yes cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=Bart|Baker w[0]|w[1]=Baker|song pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=Bart w[1..4]=song +O w[-2]=Bart w[-1]=Baker w[0]=song wl[-2]=bart wl[-1]=baker wl[0]=song pos[-2]=NNP pos[-1]=NNP pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULLL shape[-1]=ULLLL shape[0]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=B p1[-1]=B p1[0]=s p2[-2]=Ba p2[-1]=Ba p2[0]=so p3[-2]=Bar p3[-1]=Bak p3[0]=son p4[-2]=Bart p4[-1]=Bake p4[0]=song s1[-2]=t s1[-1]=r s1[0]=g s2[-2]=rt s2[-1]=er s2[0]=ng s3[-2]=art s3[-1]=ker s3[0]=ong s4[-2]=Bart s4[-1]=aker s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Bart|Baker w[-1]|w[0]=Baker|song pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=Bart w[-4..-1]=Baker __EOS__ + +O w[0]=play w[1]=the w[2]=newest wl[0]=play wl[1]=the wl[2]=newest pos[0]=VB pos[1]=DT pos[2]=JJS chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=n p2[0]=pl p2[1]=th p2[2]=ne p3[0]=pla p3[1]=the p3[2]=new p4[0]=play p4[1]= p4[2]=newe s1[0]=y s1[1]=e s1[2]=t s2[0]=ay s2[1]=he s2[2]=st s3[0]=lay s3[1]=the s3[2]=est s4[0]=play s4[1]= s4[2]=west 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|newest pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJS chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=newest w[1..4]=song w[1..4]=by __BOS__ +O w[-1]=play w[0]=the w[1]=newest w[2]=song wl[-1]=play wl[0]=the wl[1]=newest wl[2]=song pos[-1]=VB pos[0]=DT pos[1]=JJS pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=n p1[2]=s p2[-1]=pl p2[0]=th p2[1]=ne p2[2]=so p3[-1]=pla p3[0]=the p3[1]=new p3[2]=son p4[-1]=play p4[0]= p4[1]=newe p4[2]=song s1[-1]=y s1[0]=e s1[1]=t s1[2]=g s2[-1]=ay s2[0]=he s2[1]=st s2[2]=ng s3[-1]=lay s3[0]=the s3[1]=est s3[2]=ong s4[-1]=play s4[0]= s4[1]=west s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|newest w[1]|w[2]=newest|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJS pos[1]|pos[2]=JJS|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=newest w[1..4]=song w[1..4]=by w[1..4]=Eminem +sort w[-2]=play w[-1]=the w[0]=newest w[1]=song w[2]=by wl[-2]=play wl[-1]=the wl[0]=newest wl[1]=song wl[2]=by pos[-2]=VB pos[-1]=DT pos[0]=JJS pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=n p1[1]=s p1[2]=b p2[-2]=pl p2[-1]=th p2[0]=ne p2[1]=so p2[2]=by p3[-2]=pla p3[-1]=the p3[0]=new p3[1]=son p3[2]= p4[-2]=play p4[-1]= p4[0]=newe p4[1]=song p4[2]= s1[-2]=y s1[-1]=e s1[0]=t s1[1]=g s1[2]=y s2[-2]=ay s2[-1]=he s2[0]=st s2[1]=ng s2[2]=by s3[-2]=lay s3[-1]=the s3[0]=est s3[1]=ong s3[2]= s4[-2]=play s4[-1]= s4[0]=west s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|newest w[0]|w[1]=newest|song w[1]|w[2]=song|by pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJS pos[0]|pos[1]=JJS|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=song w[1..4]=by w[1..4]=Eminem +O w[-2]=the w[-1]=newest w[0]=song w[1]=by w[2]=Eminem wl[-2]=the wl[-1]=newest wl[0]=song wl[1]=by wl[2]=eminem pos[-2]=DT pos[-1]=JJS pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=n p1[0]=s p1[1]=b p1[2]=E p2[-2]=th p2[-1]=ne p2[0]=so p2[1]=by p2[2]=Em p3[-2]=the p3[-1]=new p3[0]=son p3[1]= p3[2]=Emi p4[-2]= p4[-1]=newe p4[0]=song p4[1]= p4[2]=Emin s1[-2]=e s1[-1]=t s1[0]=g s1[1]=y s1[2]=m s2[-2]=he s2[-1]=st s2[0]=ng s2[1]=by s2[2]=em s3[-2]=the s3[-1]=est s3[0]=ong s3[1]= s3[2]=nem s4[-2]= s4[-1]=west s4[0]=song s4[1]= s4[2]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|newest w[-1]|w[0]=newest|song w[0]|w[1]=song|by w[1]|w[2]=by|Eminem pos[-2]|pos[-1]=DT|JJS pos[-1]|pos[0]=JJS|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=newest w[1..4]=by w[1..4]=Eminem +O w[-2]=newest w[-1]=song w[0]=by w[1]=Eminem wl[-2]=newest wl[-1]=song wl[0]=by wl[1]=eminem pos[-2]=JJS pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=n p1[-1]=s p1[0]=b p1[1]=E p2[-2]=ne p2[-1]=so p2[0]=by p2[1]=Em p3[-2]=new p3[-1]=son p3[0]= p3[1]=Emi p4[-2]=newe p4[-1]=song p4[0]= p4[1]=Emin s1[-2]=t s1[-1]=g s1[0]=y s1[1]=m s2[-2]=st s2[-1]=ng s2[0]=by s2[1]=em s3[-2]=est s3[-1]=ong s3[0]= s3[1]=nem s4[-2]=west s4[-1]=song s4[0]= s4[1]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=newest|song w[-1]|w[0]=song|by w[0]|w[1]=by|Eminem pos[-2]|pos[-1]=JJS|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=newest w[-4..-1]=song w[1..4]=Eminem +artist w[-2]=song w[-1]=by w[0]=Eminem wl[-2]=song wl[-1]=by wl[0]=eminem pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=b p1[0]=E p2[-2]=so p2[-1]=by p2[0]=Em p3[-2]=son p3[-1]= p3[0]=Emi p4[-2]=song p4[-1]= p4[0]=Emin s1[-2]=g s1[-1]=y s1[0]=m s2[-2]=ng s2[-1]=by s2[0]=em s3[-2]=ong s3[-1]= s3[0]=nem s4[-2]=song s4[-1]= s4[0]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|by w[-1]|w[0]=by|Eminem pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=newest w[-4..-1]=song w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=Laura w[2]=Pausini wl[0]=play wl[1]=laura wl[2]=pausini pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=L p1[2]=P p2[0]=pl p2[1]=La p2[2]=Pa p3[0]=pla p3[1]=Lau p3[2]=Pau p4[0]=play p4[1]=Laur p4[2]=Paus s1[0]=y s1[1]=a s1[2]=i s2[0]=ay s2[1]=ra s2[2]=ni s3[0]=lay s3[1]=ura s3[2]=ini s4[0]=play s4[1]=aura s4[2]=sini 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Laura w[1]|w[2]=Laura|Pausini pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Laura w[1..4]=Pausini __BOS__ +artist w[-1]=play w[0]=Laura w[1]=Pausini wl[-1]=play wl[0]=laura wl[1]=pausini pos[-1]=VB pos[0]=NNP pos[1]=NNP chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=L p1[1]=P p2[-1]=pl p2[0]=La p2[1]=Pa p3[-1]=pla p3[0]=Lau p3[1]=Pau p4[-1]=play p4[0]=Laur p4[1]=Paus s1[-1]=y s1[0]=a s1[1]=i s2[-1]=ay s2[0]=ra s2[1]=ni s3[-1]=lay s3[0]=ura s3[1]=ini s4[-1]=play s4[0]=aura s4[1]=sini 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|Laura w[0]|w[1]=Laura|Pausini pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Pausini +artist w[-2]=play w[-1]=Laura w[0]=Pausini wl[-2]=play wl[-1]=laura wl[0]=pausini pos[-2]=VB pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=L p1[0]=P p2[-2]=pl p2[-1]=La p2[0]=Pa p3[-2]=pla p3[-1]=Lau p3[0]=Pau p4[-2]=play p4[-1]=Laur p4[0]=Paus s1[-2]=y s1[-1]=a s1[0]=i s2[-2]=ay s2[-1]=ra s2[0]=ni s3[-2]=lay s3[-1]=ura s3[0]=ini s4[-2]=play s4[-1]=aura s4[0]=sini 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|Laura w[-1]|w[0]=Laura|Pausini pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Laura __EOS__ + +O w[0]=play w[1]=The w[2]=Police wl[0]=play wl[1]=the wl[2]=police pos[0]=VB pos[1]=DT pos[2]=DT chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=T p1[2]=P p2[0]=pl p2[1]=Th p2[2]=Po p3[0]=pla p3[1]=The p3[2]=Pol p4[0]=play p4[1]= p4[2]=Poli s1[0]=y s1[1]=e s1[2]=e s2[0]=ay s2[1]=he s2[2]=ce s3[0]=lay s3[1]=The s3[2]=ice s4[0]=play s4[1]= s4[2]=lice 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|The w[1]|w[2]=The|Police pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|DT chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=The w[1..4]=Police __BOS__ +artist w[-1]=play w[0]=The w[1]=Police wl[-1]=play wl[0]=the wl[1]=police pos[-1]=VB pos[0]=DT pos[1]=DT chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=T p1[1]=P p2[-1]=pl p2[0]=Th p2[1]=Po p3[-1]=pla p3[0]=The p3[1]=Pol p4[-1]=play p4[0]= p4[1]=Poli s1[-1]=y s1[0]=e s1[1]=e s2[-1]=ay s2[0]=he s2[1]=ce s3[-1]=lay s3[0]=The s3[1]=ice s4[-1]=play s4[0]= s4[1]=lice 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|The w[0]|w[1]=The|Police pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|DT chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Police +artist w[-2]=play w[-1]=The w[0]=Police wl[-2]=play wl[-1]=the wl[0]=police pos[-2]=VB pos[-1]=DT pos[0]=DT chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=T p1[0]=P p2[-2]=pl p2[-1]=Th p2[0]=Po p3[-2]=pla p3[-1]=The p3[0]=Pol p4[-2]=play p4[-1]= p4[0]=Poli s1[-2]=y s1[-1]=e s1[0]=e s2[-2]=ay s2[-1]=he s2[0]=ce s3[-2]=lay s3[-1]=The s3[0]=ice s4[-2]=play s4[-1]= s4[0]=lice 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|The w[-1]|w[0]=The|Police pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=The __EOS__ + +O w[0]=play w[1]=album w[2]=Fly wl[0]=play wl[1]=album wl[2]=fly pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=F p2[0]=pl p2[1]=al p2[2]=Fl p3[0]=pla p3[1]=alb p3[2]=Fly p4[0]=play p4[1]=albu p4[2]= s1[0]=y s1[1]=m s1[2]=y s2[0]=ay s2[1]=um s2[2]=ly s3[0]=lay s3[1]=bum s3[2]=Fly s4[0]=play s4[1]=lbum s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Fly pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Fly w[1..4]=by w[1..4]=Night __BOS__ +O w[-1]=play w[0]=album w[1]=Fly w[2]=by wl[-1]=play wl[0]=album wl[1]=fly wl[2]=by pos[-1]=VB pos[0]=NN pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=F p1[2]=b p2[-1]=pl p2[0]=al p2[1]=Fl p2[2]=by p3[-1]=pla p3[0]=alb p3[1]=Fly p3[2]= p4[-1]=play p4[0]=albu p4[1]= p4[2]= s1[-1]=y s1[0]=m s1[1]=y s1[2]=y s2[-1]=ay s2[0]=um s2[1]=ly s2[2]=by s3[-1]=lay s3[0]=bum s3[1]=Fly s3[2]= s4[-1]=play s4[0]=lbum s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Fly w[1]|w[2]=Fly|by pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Fly w[1..4]=by w[1..4]=Night w[1..4]=by +album w[-2]=play w[-1]=album w[0]=Fly w[1]=by w[2]=Night wl[-2]=play wl[-1]=album wl[0]=fly wl[1]=by wl[2]=night pos[-2]=VB pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=F p1[1]=b p1[2]=N p2[-2]=pl p2[-1]=al p2[0]=Fl p2[1]=by p2[2]=Ni p3[-2]=pla p3[-1]=alb p3[0]=Fly p3[1]= p3[2]=Nig p4[-2]=play p4[-1]=albu p4[0]= p4[1]= p4[2]=Nigh s1[-2]=y s1[-1]=m s1[0]=y s1[1]=y s1[2]=t s2[-2]=ay s2[-1]=um s2[0]=ly s2[1]=by s2[2]=ht s3[-2]=lay s3[-1]=bum s3[0]=Fly s3[1]= s3[2]=ght s4[-2]=play s4[-1]=lbum s4[0]= s4[1]= s4[2]=ight 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Fly w[0]|w[1]=Fly|by w[1]|w[2]=by|Night pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=by w[1..4]=Night w[1..4]=by w[1..4]=Rush +album w[-2]=album w[-1]=Fly w[0]=by w[1]=Night w[2]=by wl[-2]=album wl[-1]=fly wl[0]=by wl[1]=night wl[2]=by pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLL shape[-1]=ULL shape[0]=LL shape[1]=ULLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=a p1[-1]=F p1[0]=b p1[1]=N p1[2]=b p2[-2]=al p2[-1]=Fl p2[0]=by p2[1]=Ni p2[2]=by p3[-2]=alb p3[-1]=Fly p3[0]= p3[1]=Nig p3[2]= p4[-2]=albu p4[-1]= p4[0]= p4[1]=Nigh p4[2]= s1[-2]=m s1[-1]=y s1[0]=y s1[1]=t s1[2]=y s2[-2]=um s2[-1]=ly s2[0]=by s2[1]=ht s2[2]=by s3[-2]=bum s3[-1]=Fly s3[0]= s3[1]=ght s3[2]= s4[-2]=lbum s4[-1]= s4[0]= s4[1]=ight s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Fly w[-1]|w[0]=Fly|by w[0]|w[1]=by|Night w[1]|w[2]=Night|by pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Fly w[1..4]=Night w[1..4]=by w[1..4]=Rush +album w[-2]=Fly w[-1]=by w[0]=Night w[1]=by w[2]=Rush wl[-2]=fly wl[-1]=by wl[0]=night wl[1]=by wl[2]=rush pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULL shape[-1]=LL shape[0]=ULLLL shape[1]=LL shape[2]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=F p1[-1]=b p1[0]=N p1[1]=b p1[2]=R p2[-2]=Fl p2[-1]=by p2[0]=Ni p2[1]=by p2[2]=Ru p3[-2]=Fly p3[-1]= p3[0]=Nig p3[1]= p3[2]=Rus p4[-2]= p4[-1]= p4[0]=Nigh p4[1]= p4[2]=Rush s1[-2]=y s1[-1]=y s1[0]=t s1[1]=y s1[2]=h s2[-2]=ly s2[-1]=by s2[0]=ht s2[1]=by s2[2]=sh s3[-2]=Fly s3[-1]= s3[0]=ght s3[1]= s3[2]=ush s4[-2]= s4[-1]= s4[0]=ight s4[1]= s4[2]=Rush 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Fly|by w[-1]|w[0]=by|Night w[0]|w[1]=Night|by w[1]|w[2]=by|Rush pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Fly w[-4..-1]=by w[1..4]=by w[1..4]=Rush +O w[-2]=by w[-1]=Night w[0]=by w[1]=Rush wl[-2]=by wl[-1]=night wl[0]=by wl[1]=rush pos[-2]=NN pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=b p1[-1]=N p1[0]=b p1[1]=R p2[-2]=by p2[-1]=Ni p2[0]=by p2[1]=Ru p3[-2]= p3[-1]=Nig p3[0]= p3[1]=Rus p4[-2]= p4[-1]=Nigh p4[0]= p4[1]=Rush s1[-2]=y s1[-1]=t s1[0]=y s1[1]=h s2[-2]=by s2[-1]=ht s2[0]=by s2[1]=sh s3[-2]= s3[-1]=ght s3[0]= s3[1]=ush s4[-2]= s4[-1]=ight s4[0]= s4[1]=Rush 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=by|Night w[-1]|w[0]=Night|by w[0]|w[1]=by|Rush pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=album w[-4..-1]=Fly w[-4..-1]=by w[-4..-1]=Night w[1..4]=Rush +artist w[-2]=Night w[-1]=by w[0]=Rush wl[-2]=night wl[-1]=by wl[0]=rush pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=N p1[-1]=b p1[0]=R p2[-2]=Ni p2[-1]=by p2[0]=Ru p3[-2]=Nig p3[-1]= p3[0]=Rus p4[-2]=Nigh p4[-1]= p4[0]=Rush s1[-2]=t s1[-1]=y s1[0]=h s2[-2]=ht s2[-1]=by s2[0]=sh s3[-2]=ght s3[-1]= s3[0]=ush s4[-2]=ight s4[-1]= s4[0]=Rush 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Night|by w[-1]|w[0]=by|Rush pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Fly w[-4..-1]=by w[-4..-1]=Night w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=Focus w[2]=by wl[0]=play wl[1]=focus wl[2]=by pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=F p1[2]=b p2[0]=pl p2[1]=Fo p2[2]=by p3[0]=pla p3[1]=Foc p3[2]= p4[0]=play p4[1]=Focu p4[2]= s1[0]=y s1[1]=s s1[2]=y s2[0]=ay s2[1]=us s2[2]=by s3[0]=lay s3[1]=cus s3[2]= s4[0]=play s4[1]=ocus s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Focus w[1]|w[2]=Focus|by pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Focus w[1..4]=by w[1..4]=Ariana w[1..4]=Grande __BOS__ +song w[-1]=play w[0]=Focus w[1]=by w[2]=Ariana wl[-1]=play wl[0]=focus wl[1]=by wl[2]=ariana pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLL shape[1]=LL shape[2]=ULLLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=F p1[1]=b p1[2]=A p2[-1]=pl p2[0]=Fo p2[1]=by p2[2]=Ar p3[-1]=pla p3[0]=Foc p3[1]= p3[2]=Ari p4[-1]=play p4[0]=Focu p4[1]= p4[2]=Aria s1[-1]=y s1[0]=s s1[1]=y s1[2]=a s2[-1]=ay s2[0]=us s2[1]=by s2[2]=na s3[-1]=lay s3[0]=cus s3[1]= s3[2]=ana s4[-1]=play s4[0]=ocus s4[1]= s4[2]=iana 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Focus w[0]|w[1]=Focus|by w[1]|w[2]=by|Ariana pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Ariana w[1..4]=Grande +O w[-2]=play w[-1]=Focus w[0]=by w[1]=Ariana w[2]=Grande wl[-2]=play wl[-1]=focus wl[0]=by wl[1]=ariana wl[2]=grande pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=F p1[0]=b p1[1]=A p1[2]=G p2[-2]=pl p2[-1]=Fo p2[0]=by p2[1]=Ar p2[2]=Gr p3[-2]=pla p3[-1]=Foc p3[0]= p3[1]=Ari p3[2]=Gra p4[-2]=play p4[-1]=Focu p4[0]= p4[1]=Aria p4[2]=Gran s1[-2]=y s1[-1]=s s1[0]=y s1[1]=a s1[2]=e s2[-2]=ay s2[-1]=us s2[0]=by s2[1]=na s2[2]=de s3[-2]=lay s3[-1]=cus s3[0]= s3[1]=ana s3[2]=nde s4[-2]=play s4[-1]=ocus s4[0]= s4[1]=iana s4[2]=ande 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Focus w[-1]|w[0]=Focus|by w[0]|w[1]=by|Ariana w[1]|w[2]=Ariana|Grande pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Focus w[1..4]=Ariana w[1..4]=Grande +artist w[-2]=Focus w[-1]=by w[0]=Ariana w[1]=Grande wl[-2]=focus wl[-1]=by wl[0]=ariana wl[1]=grande pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=F p1[-1]=b p1[0]=A p1[1]=G p2[-2]=Fo p2[-1]=by p2[0]=Ar p2[1]=Gr p3[-2]=Foc p3[-1]= p3[0]=Ari p3[1]=Gra p4[-2]=Focu p4[-1]= p4[0]=Aria p4[1]=Gran s1[-2]=s s1[-1]=y s1[0]=a s1[1]=e s2[-2]=us s2[-1]=by s2[0]=na s2[1]=de s3[-2]=cus s3[-1]= s3[0]=ana s3[1]=nde s4[-2]=ocus s4[-1]= s4[0]=iana s4[1]=ande 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Focus|by w[-1]|w[0]=by|Ariana w[0]|w[1]=Ariana|Grande pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Focus w[-4..-1]=by w[1..4]=Grande +artist w[-2]=by w[-1]=Ariana w[0]=Grande wl[-2]=by wl[-1]=ariana wl[0]=grande pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=A p1[0]=G p2[-2]=by p2[-1]=Ar p2[0]=Gr p3[-2]= p3[-1]=Ari p3[0]=Gra p4[-2]= p4[-1]=Aria p4[0]=Gran s1[-2]=y s1[-1]=a s1[0]=e s2[-2]=by s2[-1]=na s2[0]=de s3[-2]= s3[-1]=ana s3[0]=nde s4[-2]= s4[-1]=iana s4[0]=ande 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Ariana w[-1]|w[0]=Ariana|Grande pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Focus w[-4..-1]=by w[-4..-1]=Ariana __EOS__ + +song w[0]=Blank w[1]=Space w[2]=song wl[0]=blank wl[1]=space wl[2]=song pos[0]=NNP pos[1]=NNP pos[2]=NN chk[0]=I chk[1]=I chk[2]=O shape[0]=ULLLL shape[1]=ULLLL shape[2]=LLLL shaped[0]=UL shaped[1]=UL shaped[2]=L type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[0]=B p1[1]=S p1[2]=s p2[0]=Bl p2[1]=Sp p2[2]=so p3[0]=Bla p3[1]=Spa p3[2]=son p4[0]=Blan p4[1]=Spac p4[2]=song s1[0]=k s1[1]=e s1[2]=g s2[0]=nk s2[1]=ce s2[2]=ng s3[0]=ank s3[1]=ace s3[2]=ong s4[0]=lank s4[1]=pace s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=Blank|Space w[1]|w[2]=Space|song pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Space w[1..4]=song __BOS__ +song w[-1]=Blank w[0]=Space w[1]=song wl[-1]=blank wl[0]=space wl[1]=song pos[-1]=NNP pos[0]=NNP pos[1]=NN chk[-1]=I chk[0]=I chk[1]=O shape[-1]=ULLLL shape[0]=ULLLL shape[1]=LLLL shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-1]=B p1[0]=S p1[1]=s p2[-1]=Bl p2[0]=Sp p2[1]=so p3[-1]=Bla p3[0]=Spa p3[1]=son p4[-1]=Blan p4[0]=Spac p4[1]=song s1[-1]=k s1[0]=e s1[1]=g s2[-1]=nk s2[0]=ce s2[1]=ng s3[-1]=ank s3[0]=ace s3[1]=ong s4[-1]=lank s4[0]=pace s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=no al[0]=no al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=yes cd[0]=yes cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=Blank|Space w[0]|w[1]=Space|song pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=Blank w[1..4]=song +O w[-2]=Blank w[-1]=Space w[0]=song wl[-2]=blank wl[-1]=space wl[0]=song pos[-2]=NNP pos[-1]=NNP pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULLLL shape[-1]=ULLLL shape[0]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=B p1[-1]=S p1[0]=s p2[-2]=Bl p2[-1]=Sp p2[0]=so p3[-2]=Bla p3[-1]=Spa p3[0]=son p4[-2]=Blan p4[-1]=Spac p4[0]=song s1[-2]=k s1[-1]=e s1[0]=g s2[-2]=nk s2[-1]=ce s2[0]=ng s3[-2]=ank s3[-1]=ace s3[0]=ong s4[-2]=lank s4[-1]=pace s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Blank|Space w[-1]|w[0]=Space|song pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=Blank w[-4..-1]=Space __EOS__ + +song w[0]=Can't w[1]=Feel w[2]=My wl[0]=can't wl[1]=feel wl[2]=my pos[0]=MD pos[1]=MD pos[2]=MD chk[0]=I chk[1]=I chk[2]=I shape[0]=ULL'L shape[1]=ULLL shape[2]=UL shaped[0]=UL'L shaped[1]=UL shaped[2]=UL type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[0]=C p1[1]=F p1[2]=M p2[0]=Ca p2[1]=Fe p2[2]=My p3[0]=Can p3[1]=Fee p3[2]= p4[0]=Can' p4[1]=Feel p4[2]= s1[0]=t s1[1]=l s1[2]=y s2[0]='t s2[1]=el s2[2]=My s3[0]=n't s3[1]=eel s3[2]= s4[0]=an't s4[1]=Feel s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=Can't|Feel w[1]|w[2]=Feel|My pos[0]|pos[1]=MD|MD pos[1]|pos[2]=MD|MD chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=UL'L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Feel w[1..4]=My w[1..4]=Face w[1..4]=on __BOS__ +song w[-1]=Can't w[0]=Feel w[1]=My w[2]=Face wl[-1]=can't wl[0]=feel wl[1]=my wl[2]=face pos[-1]=MD pos[0]=MD pos[1]=MD pos[2]=MD chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-1]=ULL'L shape[0]=ULLL shape[1]=UL shape[2]=ULLL shaped[-1]=UL'L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=C p1[0]=F p1[1]=M p1[2]=F p2[-1]=Ca p2[0]=Fe p2[1]=My p2[2]=Fa p3[-1]=Can p3[0]=Fee p3[1]= p3[2]=Fac p4[-1]=Can' p4[0]=Feel p4[1]= p4[2]=Face s1[-1]=t s1[0]=l s1[1]=y s1[2]=e s2[-1]='t s2[0]=el s2[1]=My s2[2]=ce s3[-1]=n't s3[0]=eel s3[1]= s3[2]=ace s4[-1]=an't s4[0]=Feel s4[1]= s4[2]=Face 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=Can't|Feel w[0]|w[1]=Feel|My w[1]|w[2]=My|Face pos[-1]|pos[0]=MD|MD pos[0]|pos[1]=MD|MD pos[1]|pos[2]=MD|MD chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=UL'L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=Can't w[1..4]=My w[1..4]=Face w[1..4]=on w[1..4]=Google +song w[-2]=Can't w[-1]=Feel w[0]=My w[1]=Face w[2]=on wl[-2]=can't wl[-1]=feel wl[0]=my wl[1]=face wl[2]=on pos[-2]=MD pos[-1]=MD pos[0]=MD pos[1]=MD pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULL'L shape[-1]=ULLL shape[0]=UL shape[1]=ULLL shape[2]=LL shaped[-2]=UL'L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=C p1[-1]=F p1[0]=M p1[1]=F p1[2]=o p2[-2]=Ca p2[-1]=Fe p2[0]=My p2[1]=Fa p2[2]=on p3[-2]=Can p3[-1]=Fee p3[0]= p3[1]=Fac p3[2]= p4[-2]=Can' p4[-1]=Feel p4[0]= p4[1]=Face p4[2]= s1[-2]=t s1[-1]=l s1[0]=y s1[1]=e s1[2]=n s2[-2]='t s2[-1]=el s2[0]=My s2[1]=ce s2[2]=on s3[-2]=n't s3[-1]=eel s3[0]= s3[1]=ace s3[2]= s4[-2]=an't s4[-1]=Feel s4[0]= s4[1]=Face s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Can't|Feel w[-1]|w[0]=Feel|My w[0]|w[1]=My|Face w[1]|w[2]=Face|on pos[-2]|pos[-1]=MD|MD pos[-1]|pos[0]=MD|MD pos[0]|pos[1]=MD|MD pos[1]|pos[2]=MD|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL'L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Can't w[-4..-1]=Feel w[1..4]=Face w[1..4]=on w[1..4]=Google w[1..4]=Music +song w[-2]=Feel w[-1]=My w[0]=Face w[1]=on w[2]=Google wl[-2]=feel wl[-1]=my wl[0]=face wl[1]=on wl[2]=google pos[-2]=MD pos[-1]=MD pos[0]=MD pos[1]=NNP pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLL shape[-1]=UL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=F p1[-1]=M p1[0]=F p1[1]=o p1[2]=G p2[-2]=Fe p2[-1]=My p2[0]=Fa p2[1]=on p2[2]=Go p3[-2]=Fee p3[-1]= p3[0]=Fac p3[1]= p3[2]=Goo p4[-2]=Feel p4[-1]= p4[0]=Face p4[1]= p4[2]=Goog s1[-2]=l s1[-1]=y s1[0]=e s1[1]=n s1[2]=e s2[-2]=el s2[-1]=My s2[0]=ce s2[1]=on s2[2]=le s3[-2]=eel s3[-1]= s3[0]=ace s3[1]= s3[2]=gle s4[-2]=Feel s4[-1]= s4[0]=Face s4[1]= s4[2]=ogle 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Feel|My w[-1]|w[0]=My|Face w[0]|w[1]=Face|on w[1]|w[2]=on|Google pos[-2]|pos[-1]=MD|MD pos[-1]|pos[0]=MD|MD pos[0]|pos[1]=MD|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Can't w[-4..-1]=Feel w[-4..-1]=My w[1..4]=on w[1..4]=Google w[1..4]=Music +O w[-2]=My w[-1]=Face w[0]=on w[1]=Google w[2]=Music wl[-2]=my wl[-1]=face wl[0]=on wl[1]=google wl[2]=music pos[-2]=MD pos[-1]=MD pos[0]=NNP pos[1]=IN pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=UL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLL shape[2]=ULLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=M p1[-1]=F p1[0]=o p1[1]=G p1[2]=M p2[-2]=My p2[-1]=Fa p2[0]=on p2[1]=Go p2[2]=Mu p3[-2]= p3[-1]=Fac p3[0]= p3[1]=Goo p3[2]=Mus p4[-2]= p4[-1]=Face p4[0]= p4[1]=Goog p4[2]=Musi s1[-2]=y s1[-1]=e s1[0]=n s1[1]=e s1[2]=c s2[-2]=My s2[-1]=ce s2[0]=on s2[1]=le s2[2]=ic s3[-2]= s3[-1]=ace s3[0]= s3[1]=gle s3[2]=sic s4[-2]= s4[-1]=Face s4[0]= s4[1]=ogle s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=My|Face w[-1]|w[0]=Face|on w[0]|w[1]=on|Google w[1]|w[2]=Google|Music pos[-2]|pos[-1]=MD|MD pos[-1]|pos[0]=MD|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=Can't w[-4..-1]=Feel w[-4..-1]=My w[-4..-1]=Face w[1..4]=Google w[1..4]=Music +service w[-2]=Face w[-1]=on w[0]=Google w[1]=Music wl[-2]=face wl[-1]=on wl[0]=google wl[1]=music pos[-2]=MD pos[-1]=NNP pos[0]=IN pos[1]=IN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=F p1[-1]=o p1[0]=G p1[1]=M p2[-2]=Fa p2[-1]=on p2[0]=Go p2[1]=Mu p3[-2]=Fac p3[-1]= p3[0]=Goo p3[1]=Mus p4[-2]=Face p4[-1]= p4[0]=Goog p4[1]=Musi s1[-2]=e s1[-1]=n s1[0]=e s1[1]=c s2[-2]=ce s2[-1]=on s2[0]=le s2[1]=ic s3[-2]=ace s3[-1]= s3[0]=gle s3[1]=sic s4[-2]=Face s4[-1]= s4[0]=ogle s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Face|on w[-1]|w[0]=on|Google w[0]|w[1]=Google|Music pos[-2]|pos[-1]=MD|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Feel w[-4..-1]=My w[-4..-1]=Face w[-4..-1]=on w[1..4]=Music +service w[-2]=on w[-1]=Google w[0]=Music wl[-2]=on wl[-1]=google wl[0]=music pos[-2]=NNP pos[-1]=IN pos[0]=IN chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=o p1[-1]=G p1[0]=M p2[-2]=on p2[-1]=Go p2[0]=Mu p3[-2]= p3[-1]=Goo p3[0]=Mus p4[-2]= p4[-1]=Goog p4[0]=Musi s1[-2]=n s1[-1]=e s1[0]=c s2[-2]=on s2[-1]=le s2[0]=ic s3[-2]= s3[-1]=gle s3[0]=sic s4[-2]= s4[-1]=ogle s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=on|Google w[-1]|w[0]=Google|Music pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=My w[-4..-1]=Face w[-4..-1]=on w[-4..-1]=Google __EOS__ + +O w[0]=play w[1]=song w[2]=by wl[0]=play wl[1]=song wl[2]=by pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=son p3[2]= p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=y s2[0]=ay s2[1]=ng s2[2]=by s3[0]=lay s3[1]=ong s3[2]= s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|by pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=song w[1..4]=by w[1..4]=Shaggy __BOS__ +O w[-1]=play w[0]=song w[1]=by w[2]=Shaggy wl[-1]=play wl[0]=song wl[1]=by wl[2]=shaggy pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=S p2[-1]=pl p2[0]=so p2[1]=by p2[2]=Sh p3[-1]=pla p3[0]=son p3[1]= p3[2]=Sha p4[-1]=play p4[0]=song p4[1]= p4[2]=Shag s1[-1]=y s1[0]=g s1[1]=y s1[2]=y s2[-1]=ay s2[0]=ng s2[1]=by s2[2]=gy s3[-1]=lay s3[0]=ong s3[1]= s3[2]=ggy s4[-1]=play s4[0]=song s4[1]= s4[2]=aggy 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|by w[1]|w[2]=by|Shaggy pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Shaggy +O w[-2]=play w[-1]=song w[0]=by w[1]=Shaggy wl[-2]=play wl[-1]=song wl[0]=by wl[1]=shaggy pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=s p1[0]=b p1[1]=S p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=Sh p3[-2]=pla p3[-1]=son p3[0]= p3[1]=Sha p4[-2]=play p4[-1]=song p4[0]= p4[1]=Shag s1[-2]=y s1[-1]=g s1[0]=y s1[1]=y s2[-2]=ay s2[-1]=ng s2[0]=by s2[1]=gy s3[-2]=lay s3[-1]=ong s3[0]= s3[1]=ggy s4[-2]=play s4[-1]=song s4[0]= s4[1]=aggy 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|by w[0]|w[1]=by|Shaggy pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=Shaggy +artist w[-2]=song w[-1]=by w[0]=Shaggy wl[-2]=song wl[-1]=by wl[0]=shaggy pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=b p1[0]=S p2[-2]=so p2[-1]=by p2[0]=Sh p3[-2]=son p3[-1]= p3[0]=Sha p4[-2]=song p4[-1]= p4[0]=Shag s1[-2]=g s1[-1]=y s1[0]=y s2[-2]=ng s2[-1]=by s2[0]=gy s3[-2]=ong s3[-1]= s3[0]=ggy s4[-2]=song s4[-1]= s4[0]=aggy 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|by w[-1]|w[0]=by|Shaggy pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=Thinking w[2]=Out wl[0]=play wl[1]=thinking wl[2]=out pos[0]=VB pos[1]=VBG pos[2]=VBG chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=ULL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=T p1[2]=O p2[0]=pl p2[1]=Th p2[2]=Ou p3[0]=pla p3[1]=Thi p3[2]=Out p4[0]=play p4[1]=Thin p4[2]= s1[0]=y s1[1]=g s1[2]=t s2[0]=ay s2[1]=ng s2[2]=ut s3[0]=lay s3[1]=ing s3[2]=Out s4[0]=play s4[1]=king s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Thinking w[1]|w[2]=Thinking|Out pos[0]|pos[1]=VB|VBG pos[1]|pos[2]=VBG|VBG chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Thinking w[1..4]=Out w[1..4]=Loud w[1..4]=by __BOS__ +song w[-1]=play w[0]=Thinking w[1]=Out w[2]=Loud wl[-1]=play wl[0]=thinking wl[1]=out wl[2]=loud pos[-1]=VB pos[0]=VBG pos[1]=VBG pos[2]=VBG chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=ULL shape[2]=ULLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=T p1[1]=O p1[2]=L p2[-1]=pl p2[0]=Th p2[1]=Ou p2[2]=Lo p3[-1]=pla p3[0]=Thi p3[1]=Out p3[2]=Lou p4[-1]=play p4[0]=Thin p4[1]= p4[2]=Loud s1[-1]=y s1[0]=g s1[1]=t s1[2]=d s2[-1]=ay s2[0]=ng s2[1]=ut s2[2]=ud s3[-1]=lay s3[0]=ing s3[1]=Out s3[2]=oud s4[-1]=play s4[0]=king s4[1]= s4[2]=Loud 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Thinking w[0]|w[1]=Thinking|Out w[1]|w[2]=Out|Loud pos[-1]|pos[0]=VB|VBG pos[0]|pos[1]=VBG|VBG pos[1]|pos[2]=VBG|VBG chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Out w[1..4]=Loud w[1..4]=by w[1..4]=Ed +song w[-2]=play w[-1]=Thinking w[0]=Out w[1]=Loud w[2]=by wl[-2]=play wl[-1]=thinking wl[0]=out wl[1]=loud wl[2]=by pos[-2]=VB pos[-1]=VBG pos[0]=VBG pos[1]=VBG pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=ULL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=T p1[0]=O p1[1]=L p1[2]=b p2[-2]=pl p2[-1]=Th p2[0]=Ou p2[1]=Lo p2[2]=by p3[-2]=pla p3[-1]=Thi p3[0]=Out p3[1]=Lou p3[2]= p4[-2]=play p4[-1]=Thin p4[0]= p4[1]=Loud p4[2]= s1[-2]=y s1[-1]=g s1[0]=t s1[1]=d s1[2]=y s2[-2]=ay s2[-1]=ng s2[0]=ut s2[1]=ud s2[2]=by s3[-2]=lay s3[-1]=ing s3[0]=Out s3[1]=oud s3[2]= s4[-2]=play s4[-1]=king s4[0]= s4[1]=Loud s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Thinking w[-1]|w[0]=Thinking|Out w[0]|w[1]=Out|Loud w[1]|w[2]=Loud|by pos[-2]|pos[-1]=VB|VBG pos[-1]|pos[0]=VBG|VBG pos[0]|pos[1]=VBG|VBG pos[1]|pos[2]=VBG|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Thinking w[1..4]=Loud w[1..4]=by w[1..4]=Ed w[1..4]=Sheeran +song w[-2]=Thinking w[-1]=Out w[0]=Loud w[1]=by w[2]=Ed wl[-2]=thinking wl[-1]=out wl[0]=loud wl[1]=by wl[2]=ed pos[-2]=VBG pos[-1]=VBG pos[0]=VBG pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLLLLLL shape[-1]=ULL shape[0]=ULLL shape[1]=LL shape[2]=UL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=T p1[-1]=O p1[0]=L p1[1]=b p1[2]=E p2[-2]=Th p2[-1]=Ou p2[0]=Lo p2[1]=by p2[2]=Ed p3[-2]=Thi p3[-1]=Out p3[0]=Lou p3[1]= p3[2]= p4[-2]=Thin p4[-1]= p4[0]=Loud p4[1]= p4[2]= s1[-2]=g s1[-1]=t s1[0]=d s1[1]=y s1[2]=d s2[-2]=ng s2[-1]=ut s2[0]=ud s2[1]=by s2[2]=Ed s3[-2]=ing s3[-1]=Out s3[0]=oud s3[1]= s3[2]= s4[-2]=king s4[-1]= s4[0]=Loud s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Thinking|Out w[-1]|w[0]=Out|Loud w[0]|w[1]=Loud|by w[1]|w[2]=by|Ed pos[-2]|pos[-1]=VBG|VBG pos[-1]|pos[0]=VBG|VBG pos[0]|pos[1]=VBG|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Thinking w[-4..-1]=Out w[1..4]=by w[1..4]=Ed w[1..4]=Sheeran +O w[-2]=Out w[-1]=Loud w[0]=by w[1]=Ed w[2]=Sheeran wl[-2]=out wl[-1]=loud wl[0]=by wl[1]=ed wl[2]=sheeran pos[-2]=VBG pos[-1]=VBG pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULL shape[-1]=ULLL shape[0]=LL shape[1]=UL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=O p1[-1]=L p1[0]=b p1[1]=E p1[2]=S p2[-2]=Ou p2[-1]=Lo p2[0]=by p2[1]=Ed p2[2]=Sh p3[-2]=Out p3[-1]=Lou p3[0]= p3[1]= p3[2]=She p4[-2]= p4[-1]=Loud p4[0]= p4[1]= p4[2]=Shee s1[-2]=t s1[-1]=d s1[0]=y s1[1]=d s1[2]=n s2[-2]=ut s2[-1]=ud s2[0]=by s2[1]=Ed s2[2]=an s3[-2]=Out s3[-1]=oud s3[0]= s3[1]= s3[2]=ran s4[-2]= s4[-1]=Loud s4[0]= s4[1]= s4[2]=eran 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Out|Loud w[-1]|w[0]=Loud|by w[0]|w[1]=by|Ed w[1]|w[2]=Ed|Sheeran pos[-2]|pos[-1]=VBG|VBG pos[-1]|pos[0]=VBG|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Thinking w[-4..-1]=Out w[-4..-1]=Loud w[1..4]=Ed w[1..4]=Sheeran +artist w[-2]=Loud w[-1]=by w[0]=Ed w[1]=Sheeran wl[-2]=loud wl[-1]=by wl[0]=ed wl[1]=sheeran pos[-2]=VBG pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=LL shape[0]=UL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=L p1[-1]=b p1[0]=E p1[1]=S p2[-2]=Lo p2[-1]=by p2[0]=Ed p2[1]=Sh p3[-2]=Lou p3[-1]= p3[0]= p3[1]=She p4[-2]=Loud p4[-1]= p4[0]= p4[1]=Shee s1[-2]=d s1[-1]=y s1[0]=d s1[1]=n s2[-2]=ud s2[-1]=by s2[0]=Ed s2[1]=an s3[-2]=oud s3[-1]= s3[0]= s3[1]=ran s4[-2]=Loud s4[-1]= s4[0]= s4[1]=eran 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Loud|by w[-1]|w[0]=by|Ed w[0]|w[1]=Ed|Sheeran pos[-2]|pos[-1]=VBG|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Thinking w[-4..-1]=Out w[-4..-1]=Loud w[-4..-1]=by w[1..4]=Sheeran +artist w[-2]=by w[-1]=Ed w[0]=Sheeran wl[-2]=by wl[-1]=ed wl[0]=sheeran pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=UL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=E p1[0]=S p2[-2]=by p2[-1]=Ed p2[0]=Sh p3[-2]= p3[-1]= p3[0]=She p4[-2]= p4[-1]= p4[0]=Shee s1[-2]=y s1[-1]=d s1[0]=n s2[-2]=by s2[-1]=Ed s2[0]=an s3[-2]= s3[-1]= s3[0]=ran s4[-2]= s4[-1]= s4[0]=eran 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Ed w[-1]|w[0]=Ed|Sheeran pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Out w[-4..-1]=Loud w[-4..-1]=by w[-4..-1]=Ed __EOS__ + +O w[0]=play w[1]=a w[2]=song wl[0]=play wl[1]=a wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=s p2[0]=pl p2[1]= p2[2]=so p3[0]=pla p3[1]= p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=a s1[2]=g s2[0]=ay s2[1]= s2[2]=ng s3[0]=lay s3[1]= s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=song w[1..4]=from w[1..4]=my __BOS__ +O w[-1]=play w[0]=a w[1]=song w[2]=from wl[-1]=play wl[0]=a wl[1]=song wl[2]=from pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=L shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=s p1[2]=f p2[-1]=pl p2[0]= p2[1]=so p2[2]=fr p3[-1]=pla p3[0]= p3[1]=son p3[2]=fro p4[-1]=play p4[0]= p4[1]=song p4[2]=from s1[-1]=y s1[0]=a s1[1]=g s1[2]=m s2[-1]=ay s2[0]= s2[1]=ng s2[2]=om s3[-1]=lay s3[0]= s3[1]=ong s3[2]=rom s4[-1]=play s4[0]= s4[1]=song s4[2]=from 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|song w[1]|w[2]=song|from pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=song w[1..4]=from w[1..4]=my w[1..4]=music +O w[-2]=play w[-1]=a w[0]=song w[1]=from w[2]=my wl[-2]=play wl[-1]=a wl[0]=song wl[1]=from wl[2]=my pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=s p1[1]=f p1[2]=m p2[-2]=pl p2[-1]= p2[0]=so p2[1]=fr p2[2]=my p3[-2]=pla p3[-1]= p3[0]=son p3[1]=fro p3[2]= p4[-2]=play p4[-1]= p4[0]=song p4[1]=from p4[2]= s1[-2]=y s1[-1]=a s1[0]=g s1[1]=m s1[2]=y s2[-2]=ay s2[-1]= s2[0]=ng s2[1]=om s2[2]=my s3[-2]=lay s3[-1]= s3[0]=ong s3[1]=rom s3[2]= s4[-2]=play s4[-1]= s4[0]=song s4[1]=from s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|song w[0]|w[1]=song|from w[1]|w[2]=from|my pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[1..4]=from w[1..4]=my w[1..4]=music w[1..4]=library +O w[-2]=a w[-1]=song w[0]=from w[1]=my w[2]=music wl[-2]=a wl[-1]=song wl[0]=from wl[1]=my wl[2]=music pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=PRP$ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=L shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=s p1[0]=f p1[1]=m p1[2]=m p2[-2]= p2[-1]=so p2[0]=fr p2[1]=my p2[2]=mu p3[-2]= p3[-1]=son p3[0]=fro p3[1]= p3[2]=mus p4[-2]= p4[-1]=song p4[0]=from p4[1]= p4[2]=musi s1[-2]=a s1[-1]=g s1[0]=m s1[1]=y s1[2]=c s2[-2]= s2[-1]=ng s2[0]=om s2[1]=my s2[2]=ic s3[-2]= s3[-1]=ong s3[0]=rom s3[1]= s3[2]=sic s4[-2]= s4[-1]=song s4[0]=from s4[1]= s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=a|song w[-1]|w[0]=song|from w[0]|w[1]=from|my w[1]|w[2]=my|music pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[1..4]=my w[1..4]=music w[1..4]=library +O w[-2]=song w[-1]=from w[0]=my w[1]=music w[2]=library wl[-2]=song wl[-1]=from wl[0]=my wl[1]=music wl[2]=library pos[-2]=NN pos[-1]=IN pos[0]=PRP$ pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=LLLLL shape[2]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=f p1[0]=m p1[1]=m p1[2]=l p2[-2]=so p2[-1]=fr p2[0]=my p2[1]=mu p2[2]=li p3[-2]=son p3[-1]=fro p3[0]= p3[1]=mus p3[2]=lib p4[-2]=song p4[-1]=from p4[0]= p4[1]=musi p4[2]=libr s1[-2]=g s1[-1]=m s1[0]=y s1[1]=c s1[2]=y s2[-2]=ng s2[-1]=om s2[0]=my s2[1]=ic s2[2]=ry s3[-2]=ong s3[-1]=rom s3[0]= s3[1]=sic s3[2]=ary s4[-2]=song s4[-1]=from s4[0]= s4[1]=usic s4[2]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|from w[-1]|w[0]=from|my w[0]|w[1]=my|music w[1]|w[2]=music|library pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[-4..-1]=from w[1..4]=music w[1..4]=library +O w[-2]=from w[-1]=my w[0]=music w[1]=library wl[-2]=from wl[-1]=my wl[0]=music wl[1]=library pos[-2]=IN pos[-1]=PRP$ pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLL shape[1]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=f p1[-1]=m p1[0]=m p1[1]=l p2[-2]=fr p2[-1]=my p2[0]=mu p2[1]=li p3[-2]=fro p3[-1]= p3[0]=mus p3[1]=lib p4[-2]=from p4[-1]= p4[0]=musi p4[1]=libr s1[-2]=m s1[-1]=y s1[0]=c s1[1]=y s2[-2]=om s2[-1]=my s2[0]=ic s2[1]=ry s3[-2]=rom s3[-1]= s3[0]=sic s3[1]=ary s4[-2]=from s4[-1]= s4[0]=usic s4[1]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=from|my w[-1]|w[0]=my|music w[0]|w[1]=music|library pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=a w[-4..-1]=song w[-4..-1]=from w[-4..-1]=my w[1..4]=library +O w[-2]=my w[-1]=music w[0]=library wl[-2]=my wl[-1]=music wl[0]=library pos[-2]=PRP$ pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLLL shape[0]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=m p1[0]=l p2[-2]=my p2[-1]=mu p2[0]=li p3[-2]= p3[-1]=mus p3[0]=lib p4[-2]= p4[-1]=musi p4[0]=libr s1[-2]=y s1[-1]=c s1[0]=y s2[-2]=my s2[-1]=ic s2[0]=ry s3[-2]= s3[-1]=sic s3[0]=ary s4[-2]= s4[-1]=usic s4[0]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=my|music w[-1]|w[0]=music|library pos[-2]|pos[-1]=PRP$|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=song w[-4..-1]=from w[-4..-1]=my w[-4..-1]=music __EOS__ + +O w[0]=the w[1]=song w[2]=Grew wl[0]=the wl[1]=song wl[2]=grew pos[0]=DT pos[1]=NN pos[2]=VBN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLL shape[1]=LLLL shape[2]=ULLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=t p1[1]=s p1[2]=G p2[0]=th p2[1]=so p2[2]=Gr p3[0]=the p3[1]=son p3[2]=Gre p4[0]= p4[1]=song p4[2]=Grew s1[0]=e s1[1]=g s1[2]=w s2[0]=he s2[1]=ng s2[2]=ew s3[0]=the s3[1]=ong s3[2]=rew s4[0]= s4[1]=song s4[2]=Grew 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=the|song w[1]|w[2]=song|Grew pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|VBN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=Grew w[1..4]=by w[1..4]=Bruno __BOS__ +O w[-1]=the w[0]=song w[1]=Grew w[2]=by wl[-1]=the wl[0]=song wl[1]=grew wl[2]=by pos[-1]=DT pos[0]=NN pos[1]=VBN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLL shape[0]=LLLL shape[1]=ULLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=t p1[0]=s p1[1]=G p1[2]=b p2[-1]=th p2[0]=so p2[1]=Gr p2[2]=by p3[-1]=the p3[0]=son p3[1]=Gre p3[2]= p4[-1]= p4[0]=song p4[1]=Grew p4[2]= s1[-1]=e s1[0]=g s1[1]=w s1[2]=y s2[-1]=he s2[0]=ng s2[1]=ew s2[2]=by s3[-1]=the s3[0]=ong s3[1]=rew s3[2]= s4[-1]= s4[0]=song s4[1]=Grew s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=the|song w[0]|w[1]=song|Grew w[1]|w[2]=Grew|by pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|VBN pos[1]|pos[2]=VBN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=the w[1..4]=Grew w[1..4]=by w[1..4]=Bruno w[1..4]=Mars +song w[-2]=the w[-1]=song w[0]=Grew w[1]=by w[2]=Bruno wl[-2]=the wl[-1]=song wl[0]=grew wl[1]=by wl[2]=bruno pos[-2]=DT pos[-1]=NN pos[0]=VBN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=s p1[0]=G p1[1]=b p1[2]=B p2[-2]=th p2[-1]=so p2[0]=Gr p2[1]=by p2[2]=Br p3[-2]=the p3[-1]=son p3[0]=Gre p3[1]= p3[2]=Bru p4[-2]= p4[-1]=song p4[0]=Grew p4[1]= p4[2]=Brun s1[-2]=e s1[-1]=g s1[0]=w s1[1]=y s1[2]=o s2[-2]=he s2[-1]=ng s2[0]=ew s2[1]=by s2[2]=no s3[-2]=the s3[-1]=ong s3[0]=rew s3[1]= s3[2]=uno s4[-2]= s4[-1]=song s4[0]=Grew s4[1]= s4[2]=runo 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Grew w[0]|w[1]=Grew|by w[1]|w[2]=by|Bruno pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|VBN pos[0]|pos[1]=VBN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=song w[1..4]=by w[1..4]=Bruno w[1..4]=Mars +O w[-2]=song w[-1]=Grew w[0]=by w[1]=Bruno w[2]=Mars wl[-2]=song wl[-1]=grew wl[0]=by wl[1]=bruno wl[2]=mars pos[-2]=NN pos[-1]=VBN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=s p1[-1]=G p1[0]=b p1[1]=B p1[2]=M p2[-2]=so p2[-1]=Gr p2[0]=by p2[1]=Br p2[2]=Ma p3[-2]=son p3[-1]=Gre p3[0]= p3[1]=Bru p3[2]=Mar p4[-2]=song p4[-1]=Grew p4[0]= p4[1]=Brun p4[2]=Mars s1[-2]=g s1[-1]=w s1[0]=y s1[1]=o s1[2]=s s2[-2]=ng s2[-1]=ew s2[0]=by s2[1]=no s2[2]=rs s3[-2]=ong s3[-1]=rew s3[0]= s3[1]=uno s3[2]=ars s4[-2]=song s4[-1]=Grew s4[0]= s4[1]=runo s4[2]=Mars 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Grew w[-1]|w[0]=Grew|by w[0]|w[1]=by|Bruno w[1]|w[2]=Bruno|Mars pos[-2]|pos[-1]=NN|VBN pos[-1]|pos[0]=VBN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Grew w[1..4]=Bruno w[1..4]=Mars +artist w[-2]=Grew w[-1]=by w[0]=Bruno w[1]=Mars wl[-2]=grew wl[-1]=by wl[0]=bruno wl[1]=mars pos[-2]=VBN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=G p1[-1]=b p1[0]=B p1[1]=M p2[-2]=Gr p2[-1]=by p2[0]=Br p2[1]=Ma p3[-2]=Gre p3[-1]= p3[0]=Bru p3[1]=Mar p4[-2]=Grew p4[-1]= p4[0]=Brun p4[1]=Mars s1[-2]=w s1[-1]=y s1[0]=o s1[1]=s s2[-2]=ew s2[-1]=by s2[0]=no s2[1]=rs s3[-2]=rew s3[-1]= s3[0]=uno s3[1]=ars s4[-2]=Grew s4[-1]= s4[0]=runo s4[1]=Mars 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Grew|by w[-1]|w[0]=by|Bruno w[0]|w[1]=Bruno|Mars pos[-2]|pos[-1]=VBN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Grew w[-4..-1]=by w[1..4]=Mars +artist w[-2]=by w[-1]=Bruno w[0]=Mars wl[-2]=by wl[-1]=bruno wl[0]=mars pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=B p1[0]=M p2[-2]=by p2[-1]=Br p2[0]=Ma p3[-2]= p3[-1]=Bru p3[0]=Mar p4[-2]= p4[-1]=Brun p4[0]=Mars s1[-2]=y s1[-1]=o s1[0]=s s2[-2]=by s2[-1]=no s2[0]=rs s3[-2]= s3[-1]=uno s3[0]=ars s4[-2]= s4[-1]=runo s4[0]=Mars 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Bruno w[-1]|w[0]=Bruno|Mars pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=song w[-4..-1]=Grew w[-4..-1]=by w[-4..-1]=Bruno __EOS__ + +O w[0]=play w[1]=album w[2]=Appetite wl[0]=play wl[1]=album wl[2]=appetite pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=A p2[0]=pl p2[1]=al p2[2]=Ap p3[0]=pla p3[1]=alb p3[2]=App p4[0]=play p4[1]=albu p4[2]=Appe s1[0]=y s1[1]=m s1[2]=e s2[0]=ay s2[1]=um s2[2]=te s3[0]=lay s3[1]=bum s3[2]=ite s4[0]=play s4[1]=lbum s4[2]=tite 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Appetite pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Appetite w[1..4]=for w[1..4]=destruction __BOS__ +O w[-1]=play w[0]=album w[1]=Appetite w[2]=for wl[-1]=play wl[0]=album wl[1]=appetite wl[2]=for pos[-1]=VB pos[0]=NN pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=A p1[2]=f p2[-1]=pl p2[0]=al p2[1]=Ap p2[2]=fo p3[-1]=pla p3[0]=alb p3[1]=App p3[2]=for p4[-1]=play p4[0]=albu p4[1]=Appe p4[2]= s1[-1]=y s1[0]=m s1[1]=e s1[2]=r s2[-1]=ay s2[0]=um s2[1]=te s2[2]=or s3[-1]=lay s3[0]=bum s3[1]=ite s3[2]=for s4[-1]=play s4[0]=lbum s4[1]=tite s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Appetite w[1]|w[2]=Appetite|for pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Appetite w[1..4]=for w[1..4]=destruction w[1..4]=by +album w[-2]=play w[-1]=album w[0]=Appetite w[1]=for w[2]=destruction wl[-2]=play wl[-1]=album wl[0]=appetite wl[1]=for wl[2]=destruction pos[-2]=VB pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLLLL shape[1]=LLL shape[2]=LLLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=A p1[1]=f p1[2]=d p2[-2]=pl p2[-1]=al p2[0]=Ap p2[1]=fo p2[2]=de p3[-2]=pla p3[-1]=alb p3[0]=App p3[1]=for p3[2]=des p4[-2]=play p4[-1]=albu p4[0]=Appe p4[1]= p4[2]=dest s1[-2]=y s1[-1]=m s1[0]=e s1[1]=r s1[2]=n s2[-2]=ay s2[-1]=um s2[0]=te s2[1]=or s2[2]=on s3[-2]=lay s3[-1]=bum s3[0]=ite s3[1]=for s3[2]=ion s4[-2]=play s4[-1]=lbum s4[0]=tite s4[1]= s4[2]=tion 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Appetite w[0]|w[1]=Appetite|for w[1]|w[2]=for|destruction pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[1..4]=for w[1..4]=destruction w[1..4]=by w[1..4]=Guns +album w[-2]=album w[-1]=Appetite w[0]=for w[1]=destruction w[2]=by wl[-2]=album wl[-1]=appetite wl[0]=for wl[1]=destruction wl[2]=by pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLL shape[-1]=ULLLLLLL shape[0]=LLL shape[1]=LLLLLLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=A p1[0]=f p1[1]=d p1[2]=b p2[-2]=al p2[-1]=Ap p2[0]=fo p2[1]=de p2[2]=by p3[-2]=alb p3[-1]=App p3[0]=for p3[1]=des p3[2]= p4[-2]=albu p4[-1]=Appe p4[0]= p4[1]=dest p4[2]= s1[-2]=m s1[-1]=e s1[0]=r s1[1]=n s1[2]=y s2[-2]=um s2[-1]=te s2[0]=or s2[1]=on s2[2]=by s3[-2]=bum s3[-1]=ite s3[0]=for s3[1]=ion s3[2]= s4[-2]=lbum s4[-1]=tite s4[0]= s4[1]=tion s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Appetite w[-1]|w[0]=Appetite|for w[0]|w[1]=for|destruction w[1]|w[2]=destruction|by pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Appetite w[1..4]=destruction w[1..4]=by w[1..4]=Guns w[1..4]=n +album w[-2]=Appetite w[-1]=for w[0]=destruction w[1]=by w[2]=Guns wl[-2]=appetite wl[-1]=for wl[0]=destruction wl[1]=by wl[2]=guns pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=IN pos[2]=NNPS chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLLLLLL shape[-1]=LLL shape[0]=LLLLLLLLLLL shape[1]=LL shape[2]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=A p1[-1]=f p1[0]=d p1[1]=b p1[2]=G p2[-2]=Ap p2[-1]=fo p2[0]=de p2[1]=by p2[2]=Gu p3[-2]=App p3[-1]=for p3[0]=des p3[1]= p3[2]=Gun p4[-2]=Appe p4[-1]= p4[0]=dest p4[1]= p4[2]=Guns s1[-2]=e s1[-1]=r s1[0]=n s1[1]=y s1[2]=s s2[-2]=te s2[-1]=or s2[0]=on s2[1]=by s2[2]=ns s3[-2]=ite s3[-1]=for s3[0]=ion s3[1]= s3[2]=uns s4[-2]=tite s4[-1]= s4[0]=tion s4[1]= s4[2]=Guns 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Appetite|for w[-1]|w[0]=for|destruction w[0]|w[1]=destruction|by w[1]|w[2]=by|Guns pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Appetite w[-4..-1]=for w[1..4]=by w[1..4]=Guns w[1..4]=n w[1..4]=Roses +O w[-2]=for w[-1]=destruction w[0]=by w[1]=Guns w[2]=n wl[-2]=for wl[-1]=destruction wl[0]=by wl[1]=guns wl[2]=n pos[-2]=NN pos[-1]=NN pos[0]=IN pos[1]=NNPS pos[2]=NNPS chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLLLLLLLLL shape[0]=LL shape[1]=ULLL shape[2]=L shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=f p1[-1]=d p1[0]=b p1[1]=G p1[2]=n p2[-2]=fo p2[-1]=de p2[0]=by p2[1]=Gu p2[2]= p3[-2]=for p3[-1]=des p3[0]= p3[1]=Gun p3[2]= p4[-2]= p4[-1]=dest p4[0]= p4[1]=Guns p4[2]= s1[-2]=r s1[-1]=n s1[0]=y s1[1]=s s1[2]=n s2[-2]=or s2[-1]=on s2[0]=by s2[1]=ns s2[2]= s3[-2]=for s3[-1]=ion s3[0]= s3[1]=uns s3[2]= s4[-2]= s4[-1]=tion s4[0]= s4[1]=Guns s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=for|destruction w[-1]|w[0]=destruction|by w[0]|w[1]=by|Guns w[1]|w[2]=Guns|n pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=album w[-4..-1]=Appetite w[-4..-1]=for w[-4..-1]=destruction w[1..4]=Guns w[1..4]=n w[1..4]=Roses +artist w[-2]=destruction w[-1]=by w[0]=Guns w[1]=n w[2]=Roses wl[-2]=destruction wl[-1]=by wl[0]=guns wl[1]=n wl[2]=roses pos[-2]=NN pos[-1]=IN pos[0]=NNPS pos[1]=NNPS pos[2]=NNPS chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLLLLLLLLL shape[-1]=LL shape[0]=ULLL shape[1]=L shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=d p1[-1]=b p1[0]=G p1[1]=n p1[2]=R p2[-2]=de p2[-1]=by p2[0]=Gu p2[1]= p2[2]=Ro p3[-2]=des p3[-1]= p3[0]=Gun p3[1]= p3[2]=Ros p4[-2]=dest p4[-1]= p4[0]=Guns p4[1]= p4[2]=Rose s1[-2]=n s1[-1]=y s1[0]=s s1[1]=n s1[2]=s s2[-2]=on s2[-1]=by s2[0]=ns s2[1]= s2[2]=es s3[-2]=ion s3[-1]= s3[0]=uns s3[1]= s3[2]=ses s4[-2]=tion s4[-1]= s4[0]=Guns s4[1]= s4[2]=oses 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=destruction|by w[-1]|w[0]=by|Guns w[0]|w[1]=Guns|n w[1]|w[2]=n|Roses pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNPS pos[0]|pos[1]=NNPS|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Appetite w[-4..-1]=for w[-4..-1]=destruction w[-4..-1]=by w[1..4]=n w[1..4]=Roses +artist w[-2]=by w[-1]=Guns w[0]=n w[1]=Roses wl[-2]=by wl[-1]=guns wl[0]=n wl[1]=roses pos[-2]=IN pos[-1]=NNPS pos[0]=NNPS pos[1]=NNPS chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LL shape[-1]=ULLL shape[0]=L shape[1]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=b p1[-1]=G p1[0]=n p1[1]=R p2[-2]=by p2[-1]=Gu p2[0]= p2[1]=Ro p3[-2]= p3[-1]=Gun p3[0]= p3[1]=Ros p4[-2]= p4[-1]=Guns p4[0]= p4[1]=Rose s1[-2]=y s1[-1]=s s1[0]=n s1[1]=s s2[-2]=by s2[-1]=ns s2[0]= s2[1]=es s3[-2]= s3[-1]=uns s3[0]= s3[1]=ses s4[-2]= s4[-1]=Guns s4[0]= s4[1]=oses 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=by|Guns w[-1]|w[0]=Guns|n w[0]|w[1]=n|Roses pos[-2]|pos[-1]=IN|NNPS pos[-1]|pos[0]=NNPS|NNPS pos[0]|pos[1]=NNPS|NNPS chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=for w[-4..-1]=destruction w[-4..-1]=by w[-4..-1]=Guns w[1..4]=Roses +artist w[-2]=Guns w[-1]=n w[0]=Roses wl[-2]=guns wl[-1]=n wl[0]=roses pos[-2]=NNPS pos[-1]=NNPS pos[0]=NNPS chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=L shape[0]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=G p1[-1]=n p1[0]=R p2[-2]=Gu p2[-1]= p2[0]=Ro p3[-2]=Gun p3[-1]= p3[0]=Ros p4[-2]=Guns p4[-1]= p4[0]=Rose s1[-2]=s s1[-1]=n s1[0]=s s2[-2]=ns s2[-1]= s2[0]=es s3[-2]=uns s3[-1]= s3[0]=ses s4[-2]=Guns s4[-1]= s4[0]=oses 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Guns|n w[-1]|w[0]=n|Roses pos[-2]|pos[-1]=NNPS|NNPS pos[-1]|pos[0]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=destruction w[-4..-1]=by w[-4..-1]=Guns w[-4..-1]=n __EOS__ + +O w[0]=play w[1]=album w[2]=Horses wl[0]=play wl[1]=album wl[2]=horses pos[0]=VBP pos[1]=NN pos[2]=NNS chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=H p2[0]=pl p2[1]=al p2[2]=Ho p3[0]=pla p3[1]=alb p3[2]=Hor p4[0]=play p4[1]=albu p4[2]=Hors s1[0]=y s1[1]=m s1[2]=s s2[0]=ay s2[1]=um s2[2]=es s3[0]=lay s3[1]=bum s3[2]=ses s4[0]=play s4[1]=lbum s4[2]=rses 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Horses pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNS chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Horses __BOS__ +O w[-1]=play w[0]=album w[1]=Horses wl[-1]=play wl[0]=album wl[1]=horses pos[-1]=VBP pos[0]=NN pos[1]=NNS chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-1]=p p1[0]=a p1[1]=H p2[-1]=pl p2[0]=al p2[1]=Ho p3[-1]=pla p3[0]=alb p3[1]=Hor p4[-1]=play p4[0]=albu p4[1]=Hors s1[-1]=y s1[0]=m s1[1]=s s2[-1]=ay s2[0]=um s2[1]=es s3[-1]=lay s3[0]=bum s3[1]=ses s4[-1]=play s4[0]=lbum s4[1]=rses 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Horses pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=Horses +album w[-2]=play w[-1]=album w[0]=Horses wl[-2]=play wl[-1]=album wl[0]=horses pos[-2]=VBP pos[-1]=NN pos[0]=NNS chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=a p1[0]=H p2[-2]=pl p2[-1]=al p2[0]=Ho p3[-2]=pla p3[-1]=alb p3[0]=Hor p4[-2]=play p4[-1]=albu p4[0]=Hors s1[-2]=y s1[-1]=m s1[0]=s s2[-2]=ay s2[-1]=um s2[0]=es s3[-2]=lay s3[-1]=bum s3[0]=ses s4[-2]=play s4[-1]=lbum s4[0]=rses 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Horses pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album __EOS__ + +O w[0]=play w[1]=me w[2]=some wl[0]=play wl[1]=me wl[2]=some pos[0]=VB pos[1]=PRP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=s p2[0]=pl p2[1]=me p2[2]=so p3[0]=pla p3[1]= p3[2]=som p4[0]=play p4[1]= p4[2]=some s1[0]=y s1[1]=e s1[2]=e s2[0]=ay s2[1]=me s2[2]=me s3[0]=lay s3[1]= s3[2]=ome s4[0]=play s4[1]= s4[2]=some 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|me w[1]|w[2]=me|some pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=me w[1..4]=some w[1..4]=Michael w[1..4]=Jackson __BOS__ +O w[-1]=play w[0]=me w[1]=some w[2]=Michael wl[-1]=play wl[0]=me wl[1]=some wl[2]=michael pos[-1]=VB pos[0]=PRP pos[1]=DT pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=m p1[1]=s p1[2]=M p2[-1]=pl p2[0]=me p2[1]=so p2[2]=Mi p3[-1]=pla p3[0]= p3[1]=som p3[2]=Mic p4[-1]=play p4[0]= p4[1]=some p4[2]=Mich s1[-1]=y s1[0]=e s1[1]=e s1[2]=l s2[-1]=ay s2[0]=me s2[1]=me s2[2]=el s3[-1]=lay s3[0]= s3[1]=ome s3[2]=ael s4[-1]=play s4[0]= s4[1]=some s4[2]=hael 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|me w[0]|w[1]=me|some w[1]|w[2]=some|Michael pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|DT pos[1]|pos[2]=DT|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=some w[1..4]=Michael w[1..4]=Jackson +O w[-2]=play w[-1]=me w[0]=some w[1]=Michael w[2]=Jackson wl[-2]=play wl[-1]=me wl[0]=some wl[1]=michael wl[2]=jackson pos[-2]=VB pos[-1]=PRP pos[0]=DT pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=m p1[0]=s p1[1]=M p1[2]=J p2[-2]=pl p2[-1]=me p2[0]=so p2[1]=Mi p2[2]=Ja p3[-2]=pla p3[-1]= p3[0]=som p3[1]=Mic p3[2]=Jac p4[-2]=play p4[-1]= p4[0]=some p4[1]=Mich p4[2]=Jack s1[-2]=y s1[-1]=e s1[0]=e s1[1]=l s1[2]=n s2[-2]=ay s2[-1]=me s2[0]=me s2[1]=el s2[2]=on s3[-2]=lay s3[-1]= s3[0]=ome s3[1]=ael s3[2]=son s4[-2]=play s4[-1]= s4[0]=some s4[1]=hael s4[2]=kson 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|me w[-1]|w[0]=me|some w[0]|w[1]=some|Michael w[1]|w[2]=Michael|Jackson pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|DT pos[0]|pos[1]=DT|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=me w[1..4]=Michael w[1..4]=Jackson +artist w[-2]=me w[-1]=some w[0]=Michael w[1]=Jackson wl[-2]=me wl[-1]=some wl[0]=michael wl[1]=jackson pos[-2]=PRP pos[-1]=DT pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LL shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=m p1[-1]=s p1[0]=M p1[1]=J p2[-2]=me p2[-1]=so p2[0]=Mi p2[1]=Ja p3[-2]= p3[-1]=som p3[0]=Mic p3[1]=Jac p4[-2]= p4[-1]=some p4[0]=Mich p4[1]=Jack s1[-2]=e s1[-1]=e s1[0]=l s1[1]=n s2[-2]=me s2[-1]=me s2[0]=el s2[1]=on s3[-2]= s3[-1]=ome s3[0]=ael s3[1]=son s4[-2]= s4[-1]=some s4[0]=hael s4[1]=kson 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=me|some w[-1]|w[0]=some|Michael w[0]|w[1]=Michael|Jackson pos[-2]|pos[-1]=PRP|DT pos[-1]|pos[0]=DT|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some w[1..4]=Jackson +artist w[-2]=some w[-1]=Michael w[0]=Jackson wl[-2]=some wl[-1]=michael wl[0]=jackson pos[-2]=DT pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=s p1[-1]=M p1[0]=J p2[-2]=so p2[-1]=Mi p2[0]=Ja p3[-2]=som p3[-1]=Mic p3[0]=Jac p4[-2]=some p4[-1]=Mich p4[0]=Jack s1[-2]=e s1[-1]=l s1[0]=n s2[-2]=me s2[-1]=el s2[0]=on s3[-2]=ome s3[-1]=ael s3[0]=son s4[-2]=some s4[-1]=hael s4[0]=kson 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|Michael w[-1]|w[0]=Michael|Jackson pos[-2]|pos[-1]=DT|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some w[-4..-1]=Michael __EOS__ + +O w[0]=play w[1]=Elastic w[2]=Heart wl[0]=play wl[1]=elastic wl[2]=heart pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=E p1[2]=H p2[0]=pl p2[1]=El p2[2]=He p3[0]=pla p3[1]=Ela p3[2]=Hea p4[0]=play p4[1]=Elas p4[2]=Hear s1[0]=y s1[1]=c s1[2]=t s2[0]=ay s2[1]=ic s2[2]=rt s3[0]=lay s3[1]=tic s3[2]=art s4[0]=play s4[1]=stic s4[2]=eart 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Elastic w[1]|w[2]=Elastic|Heart pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Elastic w[1..4]=Heart w[1..4]=by w[1..4]=Sia __BOS__ +song w[-1]=play w[0]=Elastic w[1]=Heart w[2]=by wl[-1]=play wl[0]=elastic wl[1]=heart wl[2]=by pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=E p1[1]=H p1[2]=b p2[-1]=pl p2[0]=El p2[1]=He p2[2]=by p3[-1]=pla p3[0]=Ela p3[1]=Hea p3[2]= p4[-1]=play p4[0]=Elas p4[1]=Hear p4[2]= s1[-1]=y s1[0]=c s1[1]=t s1[2]=y s2[-1]=ay s2[0]=ic s2[1]=rt s2[2]=by s3[-1]=lay s3[0]=tic s3[1]=art s3[2]= s4[-1]=play s4[0]=stic s4[1]=eart s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Elastic w[0]|w[1]=Elastic|Heart w[1]|w[2]=Heart|by pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Heart w[1..4]=by w[1..4]=Sia w[1..4]=song +song w[-2]=play w[-1]=Elastic w[0]=Heart w[1]=by w[2]=Sia wl[-2]=play wl[-1]=elastic wl[0]=heart wl[1]=by wl[2]=sia pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLL shape[1]=LL shape[2]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=E p1[0]=H p1[1]=b p1[2]=S p2[-2]=pl p2[-1]=El p2[0]=He p2[1]=by p2[2]=Si p3[-2]=pla p3[-1]=Ela p3[0]=Hea p3[1]= p3[2]=Sia p4[-2]=play p4[-1]=Elas p4[0]=Hear p4[1]= p4[2]= s1[-2]=y s1[-1]=c s1[0]=t s1[1]=y s1[2]=a s2[-2]=ay s2[-1]=ic s2[0]=rt s2[1]=by s2[2]=ia s3[-2]=lay s3[-1]=tic s3[0]=art s3[1]= s3[2]=Sia s4[-2]=play s4[-1]=stic s4[0]=eart s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Elastic w[-1]|w[0]=Elastic|Heart w[0]|w[1]=Heart|by w[1]|w[2]=by|Sia pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Elastic w[1..4]=by w[1..4]=Sia w[1..4]=song w[1..4]=on +O w[-2]=Elastic w[-1]=Heart w[0]=by w[1]=Sia w[2]=song wl[-2]=elastic wl[-1]=heart wl[0]=by wl[1]=sia wl[2]=song pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=O shape[-2]=ULLLLLL shape[-1]=ULLLL shape[0]=LL shape[1]=ULL shape[2]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=E p1[-1]=H p1[0]=b p1[1]=S p1[2]=s p2[-2]=El p2[-1]=He p2[0]=by p2[1]=Si p2[2]=so p3[-2]=Ela p3[-1]=Hea p3[0]= p3[1]=Sia p3[2]=son p4[-2]=Elas p4[-1]=Hear p4[0]= p4[1]= p4[2]=song s1[-2]=c s1[-1]=t s1[0]=y s1[1]=a s1[2]=g s2[-2]=ic s2[-1]=rt s2[0]=by s2[1]=ia s2[2]=ng s3[-2]=tic s3[-1]=art s3[0]= s3[1]=Sia s3[2]=ong s4[-2]=stic s4[-1]=eart s4[0]= s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Elastic|Heart w[-1]|w[0]=Heart|by w[0]|w[1]=by|Sia w[1]|w[2]=Sia|song pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Elastic w[-4..-1]=Heart w[1..4]=Sia w[1..4]=song w[1..4]=on w[1..4]=Spotify +artist w[-2]=Heart w[-1]=by w[0]=Sia w[1]=song w[2]=on wl[-2]=heart wl[-1]=by wl[0]=sia wl[1]=song wl[2]=on pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NN pos[2]=IN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-2]=ULLLL shape[-1]=LL shape[0]=ULL shape[1]=LLLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=H p1[-1]=b p1[0]=S p1[1]=s p1[2]=o p2[-2]=He p2[-1]=by p2[0]=Si p2[1]=so p2[2]=on p3[-2]=Hea p3[-1]= p3[0]=Sia p3[1]=son p3[2]= p4[-2]=Hear p4[-1]= p4[0]= p4[1]=song p4[2]= s1[-2]=t s1[-1]=y s1[0]=a s1[1]=g s1[2]=n s2[-2]=rt s2[-1]=by s2[0]=ia s2[1]=ng s2[2]=on s3[-2]=art s3[-1]= s3[0]=Sia s3[1]=ong s3[2]= s4[-2]=eart s4[-1]= s4[0]= s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Heart|by w[-1]|w[0]=by|Sia w[0]|w[1]=Sia|song w[1]|w[2]=song|on pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Elastic w[-4..-1]=Heart w[-4..-1]=by w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=by w[-1]=Sia w[0]=song w[1]=on w[2]=Spotify wl[-2]=by wl[-1]=sia wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=IN pos[-1]=NNP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=ULL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=b p1[-1]=S p1[0]=s p1[1]=o p1[2]=S p2[-2]=by p2[-1]=Si p2[0]=so p2[1]=on p2[2]=Sp p3[-2]= p3[-1]=Sia p3[0]=son p3[1]= p3[2]=Spo p4[-2]= p4[-1]= p4[0]=song p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=a s1[0]=g s1[1]=n s1[2]=y s2[-2]=by s2[-1]=ia s2[0]=ng s2[1]=on s2[2]=fy s3[-2]= s3[-1]=Sia s3[0]=ong s3[1]= s3[2]=ify s4[-2]= s4[-1]= s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Sia w[-1]|w[0]=Sia|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Elastic w[-4..-1]=Heart w[-4..-1]=by w[-4..-1]=Sia w[1..4]=on w[1..4]=Spotify +O w[-2]=Sia w[-1]=song w[0]=on w[1]=Spotify wl[-2]=sia wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=S p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Si p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=Sia p3[-1]=son p3[0]= p3[1]=Spo p4[-2]= p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=a s1[-1]=g s1[0]=n s1[1]=y s2[-2]=ia s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]=Sia s3[-1]=ong s3[0]= s3[1]=ify s4[-2]= s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Sia|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=Heart w[-4..-1]=by w[-4..-1]=Sia w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Sia w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=me w[2]=some wl[0]=play wl[1]=me wl[2]=some pos[0]=VB pos[1]=PRP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=s p2[0]=pl p2[1]=me p2[2]=so p3[0]=pla p3[1]= p3[2]=som p4[0]=play p4[1]= p4[2]=some s1[0]=y s1[1]=e s1[2]=e s2[0]=ay s2[1]=me s2[2]=me s3[0]=lay s3[1]= s3[2]=ome s4[0]=play s4[1]= s4[2]=some 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|me w[1]|w[2]=me|some pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=me w[1..4]=some w[1..4]=country w[1..4]=music __BOS__ +O w[-1]=play w[0]=me w[1]=some w[2]=country wl[-1]=play wl[0]=me wl[1]=some wl[2]=country pos[-1]=VB pos[0]=PRP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=m p1[1]=s p1[2]=c p2[-1]=pl p2[0]=me p2[1]=so p2[2]=co p3[-1]=pla p3[0]= p3[1]=som p3[2]=cou p4[-1]=play p4[0]= p4[1]=some p4[2]=coun s1[-1]=y s1[0]=e s1[1]=e s1[2]=y s2[-1]=ay s2[0]=me s2[1]=me s2[2]=ry s3[-1]=lay s3[0]= s3[1]=ome s3[2]=try s4[-1]=play s4[0]= s4[1]=some s4[2]=ntry 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|me w[0]|w[1]=me|some w[1]|w[2]=some|country pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=some w[1..4]=country w[1..4]=music +O w[-2]=play w[-1]=me w[0]=some w[1]=country w[2]=music wl[-2]=play wl[-1]=me wl[0]=some wl[1]=country wl[2]=music pos[-2]=VB pos[-1]=PRP pos[0]=DT pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=m p1[0]=s p1[1]=c p1[2]=m p2[-2]=pl p2[-1]=me p2[0]=so p2[1]=co p2[2]=mu p3[-2]=pla p3[-1]= p3[0]=som p3[1]=cou p3[2]=mus p4[-2]=play p4[-1]= p4[0]=some p4[1]=coun p4[2]=musi s1[-2]=y s1[-1]=e s1[0]=e s1[1]=y s1[2]=c s2[-2]=ay s2[-1]=me s2[0]=me s2[1]=ry s2[2]=ic s3[-2]=lay s3[-1]= s3[0]=ome s3[1]=try s3[2]=sic s4[-2]=play s4[-1]= s4[0]=some s4[1]=ntry s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|me w[-1]|w[0]=me|some w[0]|w[1]=some|country w[1]|w[2]=country|music pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[1..4]=country w[1..4]=music +genre w[-2]=me w[-1]=some w[0]=country w[1]=music wl[-2]=me wl[-1]=some wl[0]=country wl[1]=music pos[-2]=PRP pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=m p1[-1]=s p1[0]=c p1[1]=m p2[-2]=me p2[-1]=so p2[0]=co p2[1]=mu p3[-2]= p3[-1]=som p3[0]=cou p3[1]=mus p4[-2]= p4[-1]=some p4[0]=coun p4[1]=musi s1[-2]=e s1[-1]=e s1[0]=y s1[1]=c s2[-2]=me s2[-1]=me s2[0]=ry s2[1]=ic s3[-2]= s3[-1]=ome s3[0]=try s3[1]=sic s4[-2]= s4[-1]=some s4[0]=ntry s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=me|some w[-1]|w[0]=some|country w[0]|w[1]=country|music pos[-2]|pos[-1]=PRP|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some w[1..4]=music +O w[-2]=some w[-1]=country w[0]=music wl[-2]=some wl[-1]=country wl[0]=music pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=LLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=c p1[0]=m p2[-2]=so p2[-1]=co p2[0]=mu p3[-2]=som p3[-1]=cou p3[0]=mus p4[-2]=some p4[-1]=coun p4[0]=musi s1[-2]=e s1[-1]=y s1[0]=c s2[-2]=me s2[-1]=ry s2[0]=ic s3[-2]=ome s3[-1]=try s3[0]=sic s4[-2]=some s4[-1]=ntry s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|country w[-1]|w[0]=country|music pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some w[-4..-1]=country __EOS__ + +O w[0]=play w[1]=a w[2]=song wl[0]=play wl[1]=a wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=s p2[0]=pl p2[1]= p2[2]=so p3[0]=pla p3[1]= p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=a s1[2]=g s2[0]=ay s2[1]= s2[2]=ng s3[0]=lay s3[1]= s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=song w[1..4]=Tera w[1..4]=Mera __BOS__ +O w[-1]=play w[0]=a w[1]=song w[2]=Tera wl[-1]=play wl[0]=a wl[1]=song wl[2]=tera pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=L shape[1]=LLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=a p1[1]=s p1[2]=T p2[-1]=pl p2[0]= p2[1]=so p2[2]=Te p3[-1]=pla p3[0]= p3[1]=son p3[2]=Ter p4[-1]=play p4[0]= p4[1]=song p4[2]=Tera s1[-1]=y s1[0]=a s1[1]=g s1[2]=a s2[-1]=ay s2[0]= s2[1]=ng s2[2]=ra s3[-1]=lay s3[0]= s3[1]=ong s3[2]=era s4[-1]=play s4[0]= s4[1]=song s4[2]=Tera 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|song w[1]|w[2]=song|Tera pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Tera w[1..4]=Mera w[1..4]=Rishta +O w[-2]=play w[-1]=a w[0]=song w[1]=Tera w[2]=Mera wl[-2]=play wl[-1]=a wl[0]=song wl[1]=tera wl[2]=mera pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shape[1]=ULLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=s p1[1]=T p1[2]=M p2[-2]=pl p2[-1]= p2[0]=so p2[1]=Te p2[2]=Me p3[-2]=pla p3[-1]= p3[0]=son p3[1]=Ter p3[2]=Mer p4[-2]=play p4[-1]= p4[0]=song p4[1]=Tera p4[2]=Mera s1[-2]=y s1[-1]=a s1[0]=g s1[1]=a s1[2]=a s2[-2]=ay s2[-1]= s2[0]=ng s2[1]=ra s2[2]=ra s3[-2]=lay s3[-1]= s3[0]=ong s3[1]=era s3[2]=era s4[-2]=play s4[-1]= s4[0]=song s4[1]=Tera s4[2]=Mera 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|song w[0]|w[1]=song|Tera w[1]|w[2]=Tera|Mera pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=a w[1..4]=Tera w[1..4]=Mera w[1..4]=Rishta +song w[-2]=a w[-1]=song w[0]=Tera w[1]=Mera w[2]=Rishta wl[-2]=a wl[-1]=song wl[0]=tera wl[1]=mera wl[2]=rishta pos[-2]=DT pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=L shape[-1]=LLLL shape[0]=ULLL shape[1]=ULLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=a p1[-1]=s p1[0]=T p1[1]=M p1[2]=R p2[-2]= p2[-1]=so p2[0]=Te p2[1]=Me p2[2]=Ri p3[-2]= p3[-1]=son p3[0]=Ter p3[1]=Mer p3[2]=Ris p4[-2]= p4[-1]=song p4[0]=Tera p4[1]=Mera p4[2]=Rish s1[-2]=a s1[-1]=g s1[0]=a s1[1]=a s1[2]=a s2[-2]= s2[-1]=ng s2[0]=ra s2[1]=ra s2[2]=ta s3[-2]= s3[-1]=ong s3[0]=era s3[1]=era s3[2]=hta s4[-2]= s4[-1]=song s4[0]=Tera s4[1]=Mera s4[2]=shta 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=a|song w[-1]|w[0]=song|Tera w[0]|w[1]=Tera|Mera w[1]|w[2]=Mera|Rishta pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[1..4]=Mera w[1..4]=Rishta +song w[-2]=song w[-1]=Tera w[0]=Mera w[1]=Rishta wl[-2]=song wl[-1]=tera wl[0]=mera wl[1]=rishta pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=ULLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=T p1[0]=M p1[1]=R p2[-2]=so p2[-1]=Te p2[0]=Me p2[1]=Ri p3[-2]=son p3[-1]=Ter p3[0]=Mer p3[1]=Ris p4[-2]=song p4[-1]=Tera p4[0]=Mera p4[1]=Rish s1[-2]=g s1[-1]=a s1[0]=a s1[1]=a s2[-2]=ng s2[-1]=ra s2[0]=ra s2[1]=ta s3[-2]=ong s3[-1]=era s3[0]=era s3[1]=hta s4[-2]=song s4[-1]=Tera s4[0]=Mera s4[1]=shta 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|Tera w[-1]|w[0]=Tera|Mera w[0]|w[1]=Mera|Rishta pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[-4..-1]=Tera w[1..4]=Rishta +song w[-2]=Tera w[-1]=Mera w[0]=Rishta wl[-2]=tera wl[-1]=mera wl[0]=rishta pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=ULLL shape[0]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=T p1[-1]=M p1[0]=R p2[-2]=Te p2[-1]=Me p2[0]=Ri p3[-2]=Ter p3[-1]=Mer p3[0]=Ris p4[-2]=Tera p4[-1]=Mera p4[0]=Rish s1[-2]=a s1[-1]=a s1[0]=a s2[-2]=ra s2[-1]=ra s2[0]=ta s3[-2]=era s3[-1]=era s3[0]=hta s4[-2]=Tera s4[-1]=Mera s4[0]=shta 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Tera|Mera w[-1]|w[0]=Mera|Rishta pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=a w[-4..-1]=song w[-4..-1]=Tera w[-4..-1]=Mera __EOS__ + +O w[0]=a w[1]=song w[2]=Still wl[0]=a wl[1]=song wl[2]=still pos[0]=DT pos[1]=NN pos[2]=RB chk[0]=O chk[1]=O chk[2]=I shape[0]=L shape[1]=LLLL shape[2]=ULLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=a p1[1]=s p1[2]=S p2[0]= p2[1]=so p2[2]=St p3[0]= p3[1]=son p3[2]=Sti p4[0]= p4[1]=song p4[2]=Stil s1[0]=a s1[1]=g s1[2]=l s2[0]= s2[1]=ng s2[2]=ll s3[0]= s3[1]=ong s3[2]=ill s4[0]= s4[1]=song s4[2]=till 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=a|song w[1]|w[2]=song|Still pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|RB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=Still w[1..4]=Loving w[1..4]=You __BOS__ +O w[-1]=a w[0]=song w[1]=Still w[2]=Loving wl[-1]=a wl[0]=song wl[1]=still wl[2]=loving pos[-1]=DT pos[0]=NN pos[1]=RB pos[2]=RB chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=L shape[0]=LLLL shape[1]=ULLLL shape[2]=ULLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=a p1[0]=s p1[1]=S p1[2]=L p2[-1]= p2[0]=so p2[1]=St p2[2]=Lo p3[-1]= p3[0]=son p3[1]=Sti p3[2]=Lov p4[-1]= p4[0]=song p4[1]=Stil p4[2]=Lovi s1[-1]=a s1[0]=g s1[1]=l s1[2]=g s2[-1]= s2[0]=ng s2[1]=ll s2[2]=ng s3[-1]= s3[0]=ong s3[1]=ill s3[2]=ing s4[-1]= s4[0]=song s4[1]=till s4[2]=ving 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=a|song w[0]|w[1]=song|Still w[1]|w[2]=Still|Loving pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|RB pos[1]|pos[2]=RB|RB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=a w[1..4]=Still w[1..4]=Loving w[1..4]=You +song w[-2]=a w[-1]=song w[0]=Still w[1]=Loving w[2]=You wl[-2]=a wl[-1]=song wl[0]=still wl[1]=loving wl[2]=you pos[-2]=DT pos[-1]=NN pos[0]=RB pos[1]=RB pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=L shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULLLLL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=a p1[-1]=s p1[0]=S p1[1]=L p1[2]=Y p2[-2]= p2[-1]=so p2[0]=St p2[1]=Lo p2[2]=Yo p3[-2]= p3[-1]=son p3[0]=Sti p3[1]=Lov p3[2]=You p4[-2]= p4[-1]=song p4[0]=Stil p4[1]=Lovi p4[2]= s1[-2]=a s1[-1]=g s1[0]=l s1[1]=g s1[2]=u s2[-2]= s2[-1]=ng s2[0]=ll s2[1]=ng s2[2]=ou s3[-2]= s3[-1]=ong s3[0]=ill s3[1]=ing s3[2]=You s4[-2]= s4[-1]=song s4[0]=till s4[1]=ving s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=a|song w[-1]|w[0]=song|Still w[0]|w[1]=Still|Loving w[1]|w[2]=Loving|You pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|RB pos[0]|pos[1]=RB|RB pos[1]|pos[2]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=a w[-4..-1]=song w[1..4]=Loving w[1..4]=You +song w[-2]=song w[-1]=Still w[0]=Loving w[1]=You wl[-2]=song wl[-1]=still wl[0]=loving wl[1]=you pos[-2]=NN pos[-1]=RB pos[0]=RB pos[1]=RB chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULLLLL shape[1]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=S p1[0]=L p1[1]=Y p2[-2]=so p2[-1]=St p2[0]=Lo p2[1]=Yo p3[-2]=son p3[-1]=Sti p3[0]=Lov p3[1]=You p4[-2]=song p4[-1]=Stil p4[0]=Lovi p4[1]= s1[-2]=g s1[-1]=l s1[0]=g s1[1]=u s2[-2]=ng s2[-1]=ll s2[0]=ng s2[1]=ou s3[-2]=ong s3[-1]=ill s3[0]=ing s3[1]=You s4[-2]=song s4[-1]=till s4[0]=ving s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|Still w[-1]|w[0]=Still|Loving w[0]|w[1]=Loving|You pos[-2]|pos[-1]=NN|RB pos[-1]|pos[0]=RB|RB pos[0]|pos[1]=RB|RB chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=a w[-4..-1]=song w[-4..-1]=Still w[1..4]=You +song w[-2]=Still w[-1]=Loving w[0]=You wl[-2]=still wl[-1]=loving wl[0]=you pos[-2]=RB pos[-1]=RB pos[0]=RB chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLL shape[-1]=ULLLLL shape[0]=ULL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=S p1[-1]=L p1[0]=Y p2[-2]=St p2[-1]=Lo p2[0]=Yo p3[-2]=Sti p3[-1]=Lov p3[0]=You p4[-2]=Stil p4[-1]=Lovi p4[0]= s1[-2]=l s1[-1]=g s1[0]=u s2[-2]=ll s2[-1]=ng s2[0]=ou s3[-2]=ill s3[-1]=ing s3[0]=You s4[-2]=till s4[-1]=ving s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Still|Loving w[-1]|w[0]=Loving|You pos[-2]|pos[-1]=RB|RB pos[-1]|pos[0]=RB|RB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=a w[-4..-1]=song w[-4..-1]=Still w[-4..-1]=Loving __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=Disturbia +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=Disturbia w[1..4]=song +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=Disturbia wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=disturbia pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=ULLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=D p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=Di p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=Dis p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]=Dist s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=a s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=ia s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=bia s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]=rbia 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|Disturbia pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=Disturbia w[1..4]=song +O w[-2]=to w[-1]=listen w[0]=to w[1]=Disturbia w[2]=song wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=disturbia wl[2]=song pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=NNP pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=ULLLLLLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=D p1[2]=s p2[-2]=to p2[-1]=li p2[0]=to p2[1]=Di p2[2]=so p3[-2]= p3[-1]=lis p3[0]= p3[1]=Dis p3[2]=son p4[-2]= p4[-1]=list p4[0]= p4[1]=Dist p4[2]=song s1[-2]=o s1[-1]=n s1[0]=o s1[1]=a s1[2]=g s2[-2]=to s2[-1]=en s2[0]=to s2[1]=ia s2[2]=ng s3[-2]= s3[-1]=ten s3[0]= s3[1]=bia s3[2]=ong s4[-2]= s4[-1]=sten s4[0]= s4[1]=rbia s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|Disturbia w[1]|w[2]=Disturbia|song pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=Disturbia w[1..4]=song +song w[-2]=listen w[-1]=to w[0]=Disturbia w[1]=song wl[-2]=listen wl[-1]=to wl[0]=disturbia wl[1]=song pos[-2]=VB pos[-1]=IN pos[0]=NNP pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=ULLLLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter p1[-2]=l p1[-1]=t p1[0]=D p1[1]=s p2[-2]=li p2[-1]=to p2[0]=Di p2[1]=so p3[-2]=lis p3[-1]= p3[0]=Dis p3[1]=son p4[-2]=list p4[-1]= p4[0]=Dist p4[1]=song s1[-2]=n s1[-1]=o s1[0]=a s1[1]=g s2[-2]=en s2[-1]=to s2[0]=ia s2[1]=ng s3[-2]=ten s3[-1]= s3[0]=bia s3[1]=ong s4[-2]=sten s4[-1]= s4[0]=rbia s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|Disturbia w[0]|w[1]=Disturbia|song pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=song +O w[-2]=to w[-1]=Disturbia w[0]=song wl[-2]=to wl[-1]=disturbia wl[0]=song pos[-2]=IN pos[-1]=NNP pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LL shape[-1]=ULLLLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter p1[-2]=t p1[-1]=D p1[0]=s p2[-2]=to p2[-1]=Di p2[0]=so p3[-2]= p3[-1]=Dis p3[0]=son p4[-2]= p4[-1]=Dist p4[0]=song s1[-2]=o s1[-1]=a s1[0]=g s2[-2]=to s2[-1]=ia s2[0]=ng s3[-2]= s3[-1]=bia s3[0]=ong s4[-2]= s4[-1]=rbia s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|Disturbia w[-1]|w[0]=Disturbia|song pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Disturbia __EOS__ + +O w[0]=play w[1]=Harder w[2]=Better wl[0]=play wl[1]=harder wl[2]=better pos[0]=VB pos[1]=RBR pos[2]=RBR chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=H p1[2]=B p2[0]=pl p2[1]=Ha p2[2]=Be p3[0]=pla p3[1]=Har p3[2]=Bet p4[0]=play p4[1]=Hard p4[2]=Bett s1[0]=y s1[1]=r s1[2]=r s2[0]=ay s2[1]=er s2[2]=er s3[0]=lay s3[1]=der s3[2]=ter s4[0]=play s4[1]=rder s4[2]=tter 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Harder w[1]|w[2]=Harder|Better pos[0]|pos[1]=VB|RBR pos[1]|pos[2]=RBR|RBR chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Harder w[1..4]=Better w[1..4]=Faster __BOS__ +song w[-1]=play w[0]=Harder w[1]=Better w[2]=Faster wl[-1]=play wl[0]=harder wl[1]=better wl[2]=faster pos[-1]=VB pos[0]=RBR pos[1]=RBR pos[2]=RBR chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLLL shape[1]=ULLLLL shape[2]=ULLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=H p1[1]=B p1[2]=F p2[-1]=pl p2[0]=Ha p2[1]=Be p2[2]=Fa p3[-1]=pla p3[0]=Har p3[1]=Bet p3[2]=Fas p4[-1]=play p4[0]=Hard p4[1]=Bett p4[2]=Fast s1[-1]=y s1[0]=r s1[1]=r s1[2]=r s2[-1]=ay s2[0]=er s2[1]=er s2[2]=er s3[-1]=lay s3[0]=der s3[1]=ter s3[2]=ter s4[-1]=play s4[0]=rder s4[1]=tter s4[2]=ster 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Harder w[0]|w[1]=Harder|Better w[1]|w[2]=Better|Faster pos[-1]|pos[0]=VB|RBR pos[0]|pos[1]=RBR|RBR pos[1]|pos[2]=RBR|RBR chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Better w[1..4]=Faster +song w[-2]=play w[-1]=Harder w[0]=Better w[1]=Faster wl[-2]=play wl[-1]=harder wl[0]=better wl[1]=faster pos[-2]=VB pos[-1]=RBR pos[0]=RBR pos[1]=RBR chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=ULLLLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=p p1[-1]=H p1[0]=B p1[1]=F p2[-2]=pl p2[-1]=Ha p2[0]=Be p2[1]=Fa p3[-2]=pla p3[-1]=Har p3[0]=Bet p3[1]=Fas p4[-2]=play p4[-1]=Hard p4[0]=Bett p4[1]=Fast s1[-2]=y s1[-1]=r s1[0]=r s1[1]=r s2[-2]=ay s2[-1]=er s2[0]=er s2[1]=er s3[-2]=lay s3[-1]=der s3[0]=ter s3[1]=ter s4[-2]=play s4[-1]=rder s4[0]=tter s4[1]=ster 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Harder w[-1]|w[0]=Harder|Better w[0]|w[1]=Better|Faster pos[-2]|pos[-1]=VB|RBR pos[-1]|pos[0]=RBR|RBR pos[0]|pos[1]=RBR|RBR chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Harder w[1..4]=Faster +song w[-2]=Harder w[-1]=Better w[0]=Faster wl[-2]=harder wl[-1]=better wl[0]=faster pos[-2]=RBR pos[-1]=RBR pos[0]=RBR chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLL shape[-1]=ULLLLL shape[0]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=H p1[-1]=B p1[0]=F p2[-2]=Ha p2[-1]=Be p2[0]=Fa p3[-2]=Har p3[-1]=Bet p3[0]=Fas p4[-2]=Hard p4[-1]=Bett p4[0]=Fast s1[-2]=r s1[-1]=r s1[0]=r s2[-2]=er s2[-1]=er s2[0]=er s3[-2]=der s3[-1]=ter s3[0]=ter s4[-2]=rder s4[-1]=tter s4[0]=ster 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Harder|Better w[-1]|w[0]=Better|Faster pos[-2]|pos[-1]=RBR|RBR pos[-1]|pos[0]=RBR|RBR chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Harder w[-4..-1]=Better __EOS__ + +O w[0]=can w[1]=I w[2]=listen wl[0]=can wl[1]=i wl[2]=listen pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=U shape[2]=LLLLLL shaped[0]=L shaped[1]=U shaped[2]=L type[0]=AllLetter type[1]=AllUpper type[2]=AllLetter p1[0]=c p1[1]=I p1[2]=l p2[0]=ca p2[1]= p2[2]=li p3[0]=can p3[1]= p3[2]=lis p4[0]= p4[1]= p4[2]=list s1[0]=n s1[1]=I s1[2]=n s2[0]=an s2[1]= s2[2]=en s3[0]=can s3[1]= s3[2]=ten s4[0]= s4[1]= s4[2]=sten 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=yes au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=no cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|I w[1]|w[2]=I|listen pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|L type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|AllLetter w[1..4]=I w[1..4]=listen w[1..4]=to w[1..4]=Macarena __BOS__ +O w[-1]=can w[0]=I w[1]=listen w[2]=to wl[-1]=can wl[0]=i wl[1]=listen wl[2]=to pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=U shape[1]=LLLLLL shape[2]=LL shaped[-1]=L shaped[0]=U shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=I p1[1]=l p1[2]=t p2[-1]=ca p2[0]= p2[1]=li p2[2]=to p3[-1]=can p3[0]= p3[1]=lis p3[2]= p4[-1]= p4[0]= p4[1]=list p4[2]= s1[-1]=n s1[0]=I s1[1]=n s1[2]=o s2[-1]=an s2[0]= s2[1]=en s2[2]=to s3[-1]=can s3[0]= s3[1]=ten s3[2]= s4[-1]= s4[0]= s4[1]=sten s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=yes au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|I w[0]|w[1]=I|listen w[1]|w[2]=listen|to pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=listen w[1..4]=to w[1..4]=Macarena +O w[-2]=can w[-1]=I w[0]=listen w[1]=to w[2]=Macarena wl[-2]=can wl[-1]=i wl[0]=listen wl[1]=to wl[2]=macarena pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=U shape[0]=LLLLLL shape[1]=LL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=c p1[-1]=I p1[0]=l p1[1]=t p1[2]=M p2[-2]=ca p2[-1]= p2[0]=li p2[1]=to p2[2]=Ma p3[-2]=can p3[-1]= p3[0]=lis p3[1]= p3[2]=Mac p4[-2]= p4[-1]= p4[0]=list p4[1]= p4[2]=Maca s1[-2]=n s1[-1]=I s1[0]=n s1[1]=o s1[2]=a s2[-2]=an s2[-1]= s2[0]=en s2[1]=to s2[2]=na s3[-2]=can s3[-1]= s3[0]=ten s3[1]= s3[2]=ena s4[-2]= s4[-1]= s4[0]=sten s4[1]= s4[2]=rena 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|I w[-1]|w[0]=I|listen w[0]|w[1]=listen|to w[1]|w[2]=to|Macarena pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=I w[1..4]=to w[1..4]=Macarena +O w[-2]=I w[-1]=listen w[0]=to w[1]=Macarena wl[-2]=i wl[-1]=listen wl[0]=to wl[1]=macarena pos[-2]=PRP pos[-1]=VB pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=U shape[-1]=LLLLLL shape[0]=LL shape[1]=ULLLLLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=I p1[-1]=l p1[0]=t p1[1]=M p2[-2]= p2[-1]=li p2[0]=to p2[1]=Ma p3[-2]= p3[-1]=lis p3[0]= p3[1]=Mac p4[-2]= p4[-1]=list p4[0]= p4[1]=Maca s1[-2]=I s1[-1]=n s1[0]=o s1[1]=a s2[-2]= s2[-1]=en s2[0]=to s2[1]=na s3[-2]= s3[-1]=ten s3[0]= s3[1]=ena s4[-2]= s4[-1]=sten s4[0]= s4[1]=rena 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=yes au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=I|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|Macarena pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=I w[-4..-1]=listen w[1..4]=Macarena +song w[-2]=listen w[-1]=to w[0]=Macarena wl[-2]=listen wl[-1]=to wl[0]=macarena pos[-2]=VB pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=l p1[-1]=t p1[0]=M p2[-2]=li p2[-1]=to p2[0]=Ma p3[-2]=lis p3[-1]= p3[0]=Mac p4[-2]=list p4[-1]= p4[0]=Maca s1[-2]=n s1[-1]=o s1[0]=a s2[-2]=en s2[-1]=to s2[0]=na s3[-2]=ten s3[-1]= s3[0]=ena s4[-2]=sten s4[-1]= s4[0]=rena 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|Macarena pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=I w[-4..-1]=listen w[-4..-1]=to __EOS__ + +O w[0]=play w[1]=Song w[2]=of wl[0]=play wl[1]=song wl[2]=of pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=S p1[2]=o p2[0]=pl p2[1]=So p2[2]=of p3[0]=pla p3[1]=Son p3[2]= p4[0]=play p4[1]=Song p4[2]= s1[0]=y s1[1]=g s1[2]=f s2[0]=ay s2[1]=ng s2[2]=of s3[0]=lay s3[1]=ong s3[2]= s4[0]=play s4[1]=Song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Song w[1]|w[2]=Song|of pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Song w[1..4]=of w[1..4]=Joy __BOS__ +song w[-1]=play w[0]=Song w[1]=of w[2]=Joy wl[-1]=play wl[0]=song wl[1]=of wl[2]=joy pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLL shape[1]=LL shape[2]=ULL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=S p1[1]=o p1[2]=J p2[-1]=pl p2[0]=So p2[1]=of p2[2]=Jo p3[-1]=pla p3[0]=Son p3[1]= p3[2]=Joy p4[-1]=play p4[0]=Song p4[1]= p4[2]= s1[-1]=y s1[0]=g s1[1]=f s1[2]=y s2[-1]=ay s2[0]=ng s2[1]=of s2[2]=oy s3[-1]=lay s3[0]=ong s3[1]= s3[2]=Joy s4[-1]=play s4[0]=Song s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Song w[0]|w[1]=Song|of w[1]|w[2]=of|Joy pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=of w[1..4]=Joy +song w[-2]=play w[-1]=Song w[0]=of w[1]=Joy wl[-2]=play wl[-1]=song wl[0]=of wl[1]=joy pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=S p1[0]=o p1[1]=J p2[-2]=pl p2[-1]=So p2[0]=of p2[1]=Jo p3[-2]=pla p3[-1]=Son p3[0]= p3[1]=Joy p4[-2]=play p4[-1]=Song p4[0]= p4[1]= s1[-2]=y s1[-1]=g s1[0]=f s1[1]=y s2[-2]=ay s2[-1]=ng s2[0]=of s2[1]=oy s3[-2]=lay s3[-1]=ong s3[0]= s3[1]=Joy s4[-2]=play s4[-1]=Song s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Song w[-1]|w[0]=Song|of w[0]|w[1]=of|Joy pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Song w[1..4]=Joy +song w[-2]=Song w[-1]=of w[0]=Joy wl[-2]=song wl[-1]=of wl[0]=joy pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=S p1[-1]=o p1[0]=J p2[-2]=So p2[-1]=of p2[0]=Jo p3[-2]=Son p3[-1]= p3[0]=Joy p4[-2]=Song p4[-1]= p4[0]= s1[-2]=g s1[-1]=f s1[0]=y s2[-2]=ng s2[-1]=of s2[0]=oy s3[-2]=ong s3[-1]= s3[0]=Joy s4[-2]=Song s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Song|of w[-1]|w[0]=of|Joy pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Song w[-4..-1]=of __EOS__ + +O w[0]=play w[1]=Miracle w[2]=from wl[0]=play wl[1]=miracle wl[2]=from pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLL shape[2]=LLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=M p1[2]=f p2[0]=pl p2[1]=Mi p2[2]=fr p3[0]=pla p3[1]=Mir p3[2]=fro p4[0]=play p4[1]=Mira p4[2]=from s1[0]=y s1[1]=e s1[2]=m s2[0]=ay s2[1]=le s2[2]=om s3[0]=lay s3[1]=cle s3[2]=rom s4[0]=play s4[1]=acle s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Miracle w[1]|w[2]=Miracle|from pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Miracle w[1..4]=from w[1..4]=Apple w[1..4]=Music __BOS__ +song w[-1]=play w[0]=Miracle w[1]=from w[2]=Apple wl[-1]=play wl[0]=miracle wl[1]=from wl[2]=apple pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=LLLL shape[2]=ULLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=M p1[1]=f p1[2]=A p2[-1]=pl p2[0]=Mi p2[1]=fr p2[2]=Ap p3[-1]=pla p3[0]=Mir p3[1]=fro p3[2]=App p4[-1]=play p4[0]=Mira p4[1]=from p4[2]=Appl s1[-1]=y s1[0]=e s1[1]=m s1[2]=e s2[-1]=ay s2[0]=le s2[1]=om s2[2]=le s3[-1]=lay s3[0]=cle s3[1]=rom s3[2]=ple s4[-1]=play s4[0]=acle s4[1]=from s4[2]=pple 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Miracle w[0]|w[1]=Miracle|from w[1]|w[2]=from|Apple pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=from w[1..4]=Apple w[1..4]=Music +O w[-2]=play w[-1]=Miracle w[0]=from w[1]=Apple w[2]=Music wl[-2]=play wl[-1]=miracle wl[0]=from wl[1]=apple wl[2]=music pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=LLLL shape[1]=ULLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=M p1[0]=f p1[1]=A p1[2]=M p2[-2]=pl p2[-1]=Mi p2[0]=fr p2[1]=Ap p2[2]=Mu p3[-2]=pla p3[-1]=Mir p3[0]=fro p3[1]=App p3[2]=Mus p4[-2]=play p4[-1]=Mira p4[0]=from p4[1]=Appl p4[2]=Musi s1[-2]=y s1[-1]=e s1[0]=m s1[1]=e s1[2]=c s2[-2]=ay s2[-1]=le s2[0]=om s2[1]=le s2[2]=ic s3[-2]=lay s3[-1]=cle s3[0]=rom s3[1]=ple s3[2]=sic s4[-2]=play s4[-1]=acle s4[0]=from s4[1]=pple s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Miracle w[-1]|w[0]=Miracle|from w[0]|w[1]=from|Apple w[1]|w[2]=Apple|Music pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Miracle w[1..4]=Apple w[1..4]=Music +service w[-2]=Miracle w[-1]=from w[0]=Apple w[1]=Music wl[-2]=miracle wl[-1]=from wl[0]=apple wl[1]=music pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLL shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=M p1[-1]=f p1[0]=A p1[1]=M p2[-2]=Mi p2[-1]=fr p2[0]=Ap p2[1]=Mu p3[-2]=Mir p3[-1]=fro p3[0]=App p3[1]=Mus p4[-2]=Mira p4[-1]=from p4[0]=Appl p4[1]=Musi s1[-2]=e s1[-1]=m s1[0]=e s1[1]=c s2[-2]=le s2[-1]=om s2[0]=le s2[1]=ic s3[-2]=cle s3[-1]=rom s3[0]=ple s3[1]=sic s4[-2]=acle s4[-1]=from s4[0]=pple s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Miracle|from w[-1]|w[0]=from|Apple w[0]|w[1]=Apple|Music pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Miracle w[-4..-1]=from w[1..4]=Music +service w[-2]=from w[-1]=Apple w[0]=Music wl[-2]=from wl[-1]=apple wl[0]=music pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=f p1[-1]=A p1[0]=M p2[-2]=fr p2[-1]=Ap p2[0]=Mu p3[-2]=fro p3[-1]=App p3[0]=Mus p4[-2]=from p4[-1]=Appl p4[0]=Musi s1[-2]=m s1[-1]=e s1[0]=c s2[-2]=om s2[-1]=le s2[0]=ic s3[-2]=rom s3[-1]=ple s3[0]=sic s4[-2]=from s4[-1]=pple s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=from|Apple w[-1]|w[0]=Apple|Music pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Miracle w[-4..-1]=from w[-4..-1]=Apple __EOS__ + +O w[0]=play w[1]=Bohemian w[2]=Rhapsody wl[0]=play wl[1]=bohemian wl[2]=rhapsody pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=ULLLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=B p1[2]=R p2[0]=pl p2[1]=Bo p2[2]=Rh p3[0]=pla p3[1]=Boh p3[2]=Rha p4[0]=play p4[1]=Bohe p4[2]=Rhap s1[0]=y s1[1]=n s1[2]=y s2[0]=ay s2[1]=an s2[2]=dy s3[0]=lay s3[1]=ian s3[2]=ody s4[0]=play s4[1]=mian s4[2]=sody 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Bohemian w[1]|w[2]=Bohemian|Rhapsody pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Bohemian w[1..4]=Rhapsody w[1..4]=by w[1..4]=Queen __BOS__ +song w[-1]=play w[0]=Bohemian w[1]=Rhapsody w[2]=by wl[-1]=play wl[0]=bohemian wl[1]=rhapsody wl[2]=by pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=ULLLLLLL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=B p1[1]=R p1[2]=b p2[-1]=pl p2[0]=Bo p2[1]=Rh p2[2]=by p3[-1]=pla p3[0]=Boh p3[1]=Rha p3[2]= p4[-1]=play p4[0]=Bohe p4[1]=Rhap p4[2]= s1[-1]=y s1[0]=n s1[1]=y s1[2]=y s2[-1]=ay s2[0]=an s2[1]=dy s2[2]=by s3[-1]=lay s3[0]=ian s3[1]=ody s3[2]= s4[-1]=play s4[0]=mian s4[1]=sody s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Bohemian w[0]|w[1]=Bohemian|Rhapsody w[1]|w[2]=Rhapsody|by pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Rhapsody w[1..4]=by w[1..4]=Queen +song w[-2]=play w[-1]=Bohemian w[0]=Rhapsody w[1]=by w[2]=Queen wl[-2]=play wl[-1]=bohemian wl[0]=rhapsody wl[1]=by wl[2]=queen pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=ULLLLLLL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=B p1[0]=R p1[1]=b p1[2]=Q p2[-2]=pl p2[-1]=Bo p2[0]=Rh p2[1]=by p2[2]=Qu p3[-2]=pla p3[-1]=Boh p3[0]=Rha p3[1]= p3[2]=Que p4[-2]=play p4[-1]=Bohe p4[0]=Rhap p4[1]= p4[2]=Quee s1[-2]=y s1[-1]=n s1[0]=y s1[1]=y s1[2]=n s2[-2]=ay s2[-1]=an s2[0]=dy s2[1]=by s2[2]=en s3[-2]=lay s3[-1]=ian s3[0]=ody s3[1]= s3[2]=een s4[-2]=play s4[-1]=mian s4[0]=sody s4[1]= s4[2]=ueen 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Bohemian w[-1]|w[0]=Bohemian|Rhapsody w[0]|w[1]=Rhapsody|by w[1]|w[2]=by|Queen pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Bohemian w[1..4]=by w[1..4]=Queen +O w[-2]=Bohemian w[-1]=Rhapsody w[0]=by w[1]=Queen wl[-2]=bohemian wl[-1]=rhapsody wl[0]=by wl[1]=queen pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULLLLLLL shape[-1]=ULLLLLLL shape[0]=LL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=B p1[-1]=R p1[0]=b p1[1]=Q p2[-2]=Bo p2[-1]=Rh p2[0]=by p2[1]=Qu p3[-2]=Boh p3[-1]=Rha p3[0]= p3[1]=Que p4[-2]=Bohe p4[-1]=Rhap p4[0]= p4[1]=Quee s1[-2]=n s1[-1]=y s1[0]=y s1[1]=n s2[-2]=an s2[-1]=dy s2[0]=by s2[1]=en s3[-2]=ian s3[-1]=ody s3[0]= s3[1]=een s4[-2]=mian s4[-1]=sody s4[0]= s4[1]=ueen 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Bohemian|Rhapsody w[-1]|w[0]=Rhapsody|by w[0]|w[1]=by|Queen pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Bohemian w[-4..-1]=Rhapsody w[1..4]=Queen +artist w[-2]=Rhapsody w[-1]=by w[0]=Queen wl[-2]=rhapsody wl[-1]=by wl[0]=queen pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLLL shape[-1]=LL shape[0]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=R p1[-1]=b p1[0]=Q p2[-2]=Rh p2[-1]=by p2[0]=Qu p3[-2]=Rha p3[-1]= p3[0]=Que p4[-2]=Rhap p4[-1]= p4[0]=Quee s1[-2]=y s1[-1]=y s1[0]=n s2[-2]=dy s2[-1]=by s2[0]=en s3[-2]=ody s3[-1]= s3[0]=een s4[-2]=sody s4[-1]= s4[0]=ueen 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Rhapsody|by w[-1]|w[0]=by|Queen pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Bohemian w[-4..-1]=Rhapsody w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=music wl[0]=play wl[1]=music pos[0]=VB pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=m p2[0]=pl p2[1]=mu p3[0]=pla p3[1]=mus p4[0]=play p4[1]=musi s1[0]=y s1[1]=c s2[0]=ay s2[1]=ic s3[0]=lay s3[1]=sic s4[0]=play s4[1]=usic 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|music pos[0]|pos[1]=VB|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=music __BOS__ +O w[-1]=play w[0]=music wl[-1]=play wl[0]=music pos[-1]=VB pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=m p2[-1]=pl p2[0]=mu p3[-1]=pla p3[0]=mus p4[-1]=play p4[0]=musi s1[-1]=y s1[0]=c s2[-1]=ay s2[0]=ic s3[-1]=lay s3[0]=sic s4[-1]=play s4[0]=usic 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|music pos[-1]|pos[0]=VB|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=It w[1..4]=Must __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=It wl[-1]=can wl[0]=you wl[1]=play wl[2]=it pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=c p1[0]=y p1[1]=p p1[2]=I p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=It p3[-1]=can p3[0]=you p3[1]=pla p3[2]= p4[-1]= p4[0]= p4[1]=play p4[2]= s1[-1]=n s1[0]=u s1[1]=y s1[2]=t s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=It s3[-1]=can s3[0]=you s3[1]=lay s3[2]= s4[-1]= s4[0]= s4[1]=play s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|It pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[1..4]=play w[1..4]=It w[1..4]=Must w[1..4]=Have +O w[-2]=can w[-1]=you w[0]=play w[1]=It w[2]=Must wl[-2]=can wl[-1]=you wl[0]=play wl[1]=it wl[2]=must pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=UL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=c p1[-1]=y p1[0]=p p1[1]=I p1[2]=M p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=It p2[2]=Mu p3[-2]=can p3[-1]=you p3[0]=pla p3[1]= p3[2]=Mus p4[-2]= p4[-1]= p4[0]=play p4[1]= p4[2]=Must s1[-2]=n s1[-1]=u s1[0]=y s1[1]=t s1[2]=t s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=It s2[2]=st s3[-2]=can s3[-1]=you s3[0]=lay s3[1]= s3[2]=ust s4[-2]= s4[-1]= s4[0]=play s4[1]= s4[2]=Must 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|It w[1]|w[2]=It|Must pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[1..4]=It w[1..4]=Must w[1..4]=Have w[1..4]=Been +song w[-2]=you w[-1]=play w[0]=It w[1]=Must w[2]=Have wl[-2]=you wl[-1]=play wl[0]=it wl[1]=must wl[2]=have pos[-2]=PRP pos[-1]=VB pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=UL shape[1]=ULLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=y p1[-1]=p p1[0]=I p1[1]=M p1[2]=H p2[-2]=yo p2[-1]=pl p2[0]=It p2[1]=Mu p2[2]=Ha p3[-2]=you p3[-1]=pla p3[0]= p3[1]=Mus p3[2]=Hav p4[-2]= p4[-1]=play p4[0]= p4[1]=Must p4[2]=Have s1[-2]=u s1[-1]=y s1[0]=t s1[1]=t s1[2]=e s2[-2]=ou s2[-1]=ay s2[0]=It s2[1]=st s2[2]=ve s3[-2]=you s3[-1]=lay s3[0]= s3[1]=ust s3[2]=ave s4[-2]= s4[-1]=play s4[0]= s4[1]=Must s4[2]=Have 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|It w[0]|w[1]=It|Must w[1]|w[2]=Must|Have pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[1..4]=Must w[1..4]=Have w[1..4]=Been w[1..4]=Love +song w[-2]=play w[-1]=It w[0]=Must w[1]=Have w[2]=Been wl[-2]=play wl[-1]=it wl[0]=must wl[1]=have wl[2]=been pos[-2]=VB pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=UL shape[0]=ULLL shape[1]=ULLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=I p1[0]=M p1[1]=H p1[2]=B p2[-2]=pl p2[-1]=It p2[0]=Mu p2[1]=Ha p2[2]=Be p3[-2]=pla p3[-1]= p3[0]=Mus p3[1]=Hav p3[2]=Bee p4[-2]=play p4[-1]= p4[0]=Must p4[1]=Have p4[2]=Been s1[-2]=y s1[-1]=t s1[0]=t s1[1]=e s1[2]=n s2[-2]=ay s2[-1]=It s2[0]=st s2[1]=ve s2[2]=en s3[-2]=lay s3[-1]= s3[0]=ust s3[1]=ave s3[2]=een s4[-2]=play s4[-1]= s4[0]=Must s4[1]=Have s4[2]=Been 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|It w[-1]|w[0]=It|Must w[0]|w[1]=Must|Have w[1]|w[2]=Have|Been pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[-4..-1]=It w[1..4]=Have w[1..4]=Been w[1..4]=Love +song w[-2]=It w[-1]=Must w[0]=Have w[1]=Been w[2]=Love wl[-2]=it wl[-1]=must wl[0]=have wl[1]=been wl[2]=love pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=UL shape[-1]=ULLL shape[0]=ULLL shape[1]=ULLL shape[2]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=I p1[-1]=M p1[0]=H p1[1]=B p1[2]=L p2[-2]=It p2[-1]=Mu p2[0]=Ha p2[1]=Be p2[2]=Lo p3[-2]= p3[-1]=Mus p3[0]=Hav p3[1]=Bee p3[2]=Lov p4[-2]= p4[-1]=Must p4[0]=Have p4[1]=Been p4[2]=Love s1[-2]=t s1[-1]=t s1[0]=e s1[1]=n s1[2]=e s2[-2]=It s2[-1]=st s2[0]=ve s2[1]=en s2[2]=ve s3[-2]= s3[-1]=ust s3[0]=ave s3[1]=een s3[2]=ove s4[-2]= s4[-1]=Must s4[0]=Have s4[1]=Been s4[2]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=It|Must w[-1]|w[0]=Must|Have w[0]|w[1]=Have|Been w[1]|w[2]=Been|Love pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=you w[-4..-1]=play w[-4..-1]=It w[-4..-1]=Must w[1..4]=Been w[1..4]=Love +song w[-2]=Must w[-1]=Have w[0]=Been w[1]=Love wl[-2]=must wl[-1]=have wl[0]=been wl[1]=love pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=PRP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=ULLL shape[0]=ULLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=M p1[-1]=H p1[0]=B p1[1]=L p2[-2]=Mu p2[-1]=Ha p2[0]=Be p2[1]=Lo p3[-2]=Mus p3[-1]=Hav p3[0]=Bee p3[1]=Lov p4[-2]=Must p4[-1]=Have p4[0]=Been p4[1]=Love s1[-2]=t s1[-1]=e s1[0]=n s1[1]=e s2[-2]=st s2[-1]=ve s2[0]=en s2[1]=ve s3[-2]=ust s3[-1]=ave s3[0]=een s3[1]=ove s4[-2]=Must s4[-1]=Have s4[0]=Been s4[1]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Must|Have w[-1]|w[0]=Have|Been w[0]|w[1]=Been|Love pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=It w[-4..-1]=Must w[-4..-1]=Have w[1..4]=Love +song w[-2]=Have w[-1]=Been w[0]=Love wl[-2]=have wl[-1]=been wl[0]=love pos[-2]=PRP pos[-1]=PRP pos[0]=PRP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=ULLL shape[0]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=H p1[-1]=B p1[0]=L p2[-2]=Ha p2[-1]=Be p2[0]=Lo p3[-2]=Hav p3[-1]=Bee p3[0]=Lov p4[-2]=Have p4[-1]=Been p4[0]=Love s1[-2]=e s1[-1]=n s1[0]=e s2[-2]=ve s2[-1]=en s2[0]=ve s3[-2]=ave s3[-1]=een s3[0]=ove s4[-2]=Have s4[-1]=Been s4[0]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Have|Been w[-1]|w[0]=Been|Love pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=It w[-4..-1]=Must w[-4..-1]=Have w[-4..-1]=Been __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=country w[1..4]=music __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=country wl[-1]=can wl[0]=you wl[1]=play wl[2]=country pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=c p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=co p3[-1]=can p3[0]=you p3[1]=pla p3[2]=cou p4[-1]= p4[0]= p4[1]=play p4[2]=coun s1[-1]=n s1[0]=u s1[1]=y s1[2]=y s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=ry s3[-1]=can s3[0]=you s3[1]=lay s3[2]=try s4[-1]= s4[0]= s4[1]=play s4[2]=ntry 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|country pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=play w[1..4]=country w[1..4]=music +O w[-2]=can w[-1]=you w[0]=play w[1]=country w[2]=music wl[-2]=can wl[-1]=you wl[0]=play wl[1]=country wl[2]=music pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLLLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=c p1[2]=m p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=co p2[2]=mu p3[-2]=can p3[-1]=you p3[0]=pla p3[1]=cou p3[2]=mus p4[-2]= p4[-1]= p4[0]=play p4[1]=coun p4[2]=musi s1[-2]=n s1[-1]=u s1[0]=y s1[1]=y s1[2]=c s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=ry s2[2]=ic s3[-2]=can s3[-1]=you s3[0]=lay s3[1]=try s3[2]=sic s4[-2]= s4[-1]= s4[0]=play s4[1]=ntry s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|country w[1]|w[2]=country|music pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=country w[1..4]=music +genre w[-2]=you w[-1]=play w[0]=country w[1]=music wl[-2]=you wl[-1]=play wl[0]=country wl[1]=music pos[-2]=PRP pos[-1]=VB pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=y p1[-1]=p p1[0]=c p1[1]=m p2[-2]=yo p2[-1]=pl p2[0]=co p2[1]=mu p3[-2]=you p3[-1]=pla p3[0]=cou p3[1]=mus p4[-2]= p4[-1]=play p4[0]=coun p4[1]=musi s1[-2]=u s1[-1]=y s1[0]=y s1[1]=c s2[-2]=ou s2[-1]=ay s2[0]=ry s2[1]=ic s3[-2]=you s3[-1]=lay s3[0]=try s3[1]=sic s4[-2]= s4[-1]=play s4[0]=ntry s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|country w[0]|w[1]=country|music pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[1..4]=music +O w[-2]=play w[-1]=country w[0]=music wl[-2]=play wl[-1]=country wl[0]=music pos[-2]=VB pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=LLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=c p1[0]=m p2[-2]=pl p2[-1]=co p2[0]=mu p3[-2]=pla p3[-1]=cou p3[0]=mus p4[-2]=play p4[-1]=coun p4[0]=musi s1[-2]=y s1[-1]=y s1[0]=c s2[-2]=ay s2[-1]=ry s2[0]=ic s3[-2]=lay s3[-1]=try s3[0]=sic s4[-2]=play s4[-1]=ntry s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|country w[-1]|w[0]=country|music pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[-4..-1]=country __EOS__ + +O w[0]=let's w[1]=listen w[2]=to wl[0]=let's wl[1]=listen wl[2]=to pos[0]=VB pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL'L shape[1]=LLLLLL shape[2]=LL shaped[0]=L'L shaped[1]=L shaped[2]=L type[0]=NO type[1]=AllLetter type[2]=AllLetter p1[0]=l p1[1]=l p1[2]=t p2[0]=le p2[1]=li p2[2]=to p3[0]=let p3[1]=lis p3[2]= p4[0]=let' p4[1]=list p4[2]= s1[0]=s s1[1]=n s1[2]=o s2[0]='s s2[1]=en s2[2]=to s3[0]=t's s3[1]=ten s3[2]= s4[0]=et's s4[1]=sten s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=let's|listen w[1]|w[2]=listen|to pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=NO|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=listen w[1..4]=to w[1..4]=Come w[1..4]=together __BOS__ +O w[-1]=let's w[0]=listen w[1]=to w[2]=Come wl[-1]=let's wl[0]=listen wl[1]=to wl[2]=come pos[-1]=VB pos[0]=PRP pos[1]=VB pos[2]=TO chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL'L shape[0]=LLLLLL shape[1]=LL shape[2]=ULLL shaped[-1]=L'L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=NO type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=l p1[0]=l p1[1]=t p1[2]=C p2[-1]=le p2[0]=li p2[1]=to p2[2]=Co p3[-1]=let p3[0]=lis p3[1]= p3[2]=Com p4[-1]=let' p4[0]=list p4[1]= p4[2]=Come s1[-1]=s s1[0]=n s1[1]=o s1[2]=e s2[-1]='s s2[0]=en s2[1]=to s2[2]=me s3[-1]=t's s3[0]=ten s3[1]= s3[2]=ome s4[-1]=et's s4[0]=sten s4[1]= s4[2]=Come 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=let's|listen w[0]|w[1]=listen|to w[1]|w[2]=to|Come pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|TO chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L'L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=NO|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=let's w[1..4]=to w[1..4]=Come w[1..4]=together w[1..4]=by +O w[-2]=let's w[-1]=listen w[0]=to w[1]=Come w[2]=together wl[-2]=let's wl[-1]=listen wl[0]=to wl[1]=come wl[2]=together pos[-2]=VB pos[-1]=PRP pos[0]=VB pos[1]=TO pos[2]=TO chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL'L shape[-1]=LLLLLL shape[0]=LL shape[1]=ULLL shape[2]=LLLLLLLL shaped[-2]=L'L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=NO type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=l p1[-1]=l p1[0]=t p1[1]=C p1[2]=t p2[-2]=le p2[-1]=li p2[0]=to p2[1]=Co p2[2]=to p3[-2]=let p3[-1]=lis p3[0]= p3[1]=Com p3[2]=tog p4[-2]=let' p4[-1]=list p4[0]= p4[1]=Come p4[2]=toge s1[-2]=s s1[-1]=n s1[0]=o s1[1]=e s1[2]=r s2[-2]='s s2[-1]=en s2[0]=to s2[1]=me s2[2]=er s3[-2]=t's s3[-1]=ten s3[0]= s3[1]=ome s3[2]=her s4[-2]=et's s4[-1]=sten s4[0]= s4[1]=Come s4[2]=ther 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=let's|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|Come w[1]|w[2]=Come|together pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|TO pos[1]|pos[2]=TO|TO chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L'L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=NO|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=let's w[-4..-1]=listen w[1..4]=Come w[1..4]=together w[1..4]=by w[1..4]=Beatles +song w[-2]=listen w[-1]=to w[0]=Come w[1]=together w[2]=by wl[-2]=listen wl[-1]=to wl[0]=come wl[1]=together wl[2]=by pos[-2]=PRP pos[-1]=VB pos[0]=TO pos[1]=TO pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=ULLL shape[1]=LLLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=C p1[1]=t p1[2]=b p2[-2]=li p2[-1]=to p2[0]=Co p2[1]=to p2[2]=by p3[-2]=lis p3[-1]= p3[0]=Com p3[1]=tog p3[2]= p4[-2]=list p4[-1]= p4[0]=Come p4[1]=toge p4[2]= s1[-2]=n s1[-1]=o s1[0]=e s1[1]=r s1[2]=y s2[-2]=en s2[-1]=to s2[0]=me s2[1]=er s2[2]=by s3[-2]=ten s3[-1]= s3[0]=ome s3[1]=her s3[2]= s4[-2]=sten s4[-1]= s4[0]=Come s4[1]=ther s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|Come w[0]|w[1]=Come|together w[1]|w[2]=together|by pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|TO pos[0]|pos[1]=TO|TO pos[1]|pos[2]=TO|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=let's w[-4..-1]=listen w[-4..-1]=to w[1..4]=together w[1..4]=by w[1..4]=Beatles +song w[-2]=to w[-1]=Come w[0]=together w[1]=by w[2]=Beatles wl[-2]=to wl[-1]=come wl[0]=together wl[1]=by wl[2]=beatles pos[-2]=VB pos[-1]=TO pos[0]=TO pos[1]=RB pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=ULLL shape[0]=LLLLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=C p1[0]=t p1[1]=b p1[2]=B p2[-2]=to p2[-1]=Co p2[0]=to p2[1]=by p2[2]=Be p3[-2]= p3[-1]=Com p3[0]=tog p3[1]= p3[2]=Bea p4[-2]= p4[-1]=Come p4[0]=toge p4[1]= p4[2]=Beat s1[-2]=o s1[-1]=e s1[0]=r s1[1]=y s1[2]=s s2[-2]=to s2[-1]=me s2[0]=er s2[1]=by s2[2]=es s3[-2]= s3[-1]=ome s3[0]=her s3[1]= s3[2]=les s4[-2]= s4[-1]=Come s4[0]=ther s4[1]= s4[2]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|Come w[-1]|w[0]=Come|together w[0]|w[1]=together|by w[1]|w[2]=by|Beatles pos[-2]|pos[-1]=VB|TO pos[-1]|pos[0]=TO|TO pos[0]|pos[1]=TO|RB pos[1]|pos[2]=RB|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=let's w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Come w[1..4]=by w[1..4]=Beatles +O w[-2]=Come w[-1]=together w[0]=by w[1]=Beatles wl[-2]=come wl[-1]=together wl[0]=by wl[1]=beatles pos[-2]=TO pos[-1]=TO pos[0]=RB pos[1]=IN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULLL shape[-1]=LLLLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=C p1[-1]=t p1[0]=b p1[1]=B p2[-2]=Co p2[-1]=to p2[0]=by p2[1]=Be p3[-2]=Com p3[-1]=tog p3[0]= p3[1]=Bea p4[-2]=Come p4[-1]=toge p4[0]= p4[1]=Beat s1[-2]=e s1[-1]=r s1[0]=y s1[1]=s s2[-2]=me s2[-1]=er s2[0]=by s2[1]=es s3[-2]=ome s3[-1]=her s3[0]= s3[1]=les s4[-2]=Come s4[-1]=ther s4[0]= s4[1]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Come|together w[-1]|w[0]=together|by w[0]|w[1]=by|Beatles pos[-2]|pos[-1]=TO|TO pos[-1]|pos[0]=TO|RB pos[0]|pos[1]=RB|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Come w[-4..-1]=together w[1..4]=Beatles +artist w[-2]=together w[-1]=by w[0]=Beatles wl[-2]=together wl[-1]=by wl[0]=beatles pos[-2]=TO pos[-1]=RB pos[0]=IN chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=LLLLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=b p1[0]=B p2[-2]=to p2[-1]=by p2[0]=Be p3[-2]=tog p3[-1]= p3[0]=Bea p4[-2]=toge p4[-1]= p4[0]=Beat s1[-2]=r s1[-1]=y s1[0]=s s2[-2]=er s2[-1]=by s2[0]=es s3[-2]=her s3[-1]= s3[0]=les s4[-2]=ther s4[-1]= s4[0]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=together|by w[-1]|w[0]=by|Beatles pos[-2]|pos[-1]=TO|RB pos[-1]|pos[0]=RB|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=to w[-4..-1]=Come w[-4..-1]=together w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=songs w[2]=by wl[0]=play wl[1]=songs wl[2]=by pos[0]=VBP pos[1]=NNS pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=son p3[2]= p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=s s1[2]=y s2[0]=ay s2[1]=gs s2[2]=by s3[0]=lay s3[1]=ngs s3[2]= s4[0]=play s4[1]=ongs s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|songs w[1]|w[2]=songs|by pos[0]|pos[1]=VBP|NNS pos[1]|pos[2]=NNS|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=songs w[1..4]=by w[1..4]=Enrique w[1..4]=Iglesias __BOS__ +O w[-1]=play w[0]=songs w[1]=by w[2]=Enrique wl[-1]=play wl[0]=songs wl[1]=by wl[2]=enrique pos[-1]=VBP pos[0]=NNS pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=E p2[-1]=pl p2[0]=so p2[1]=by p2[2]=En p3[-1]=pla p3[0]=son p3[1]= p3[2]=Enr p4[-1]=play p4[0]=song p4[1]= p4[2]=Enri s1[-1]=y s1[0]=s s1[1]=y s1[2]=e s2[-1]=ay s2[0]=gs s2[1]=by s2[2]=ue s3[-1]=lay s3[0]=ngs s3[1]= s3[2]=que s4[-1]=play s4[0]=ongs s4[1]= s4[2]=ique 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|songs w[0]|w[1]=songs|by w[1]|w[2]=by|Enrique pos[-1]|pos[0]=VBP|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Enrique w[1..4]=Iglesias +O w[-2]=play w[-1]=songs w[0]=by w[1]=Enrique w[2]=Iglesias wl[-2]=play wl[-1]=songs wl[0]=by wl[1]=enrique wl[2]=iglesias pos[-2]=VBP pos[-1]=NNS pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLLLL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=b p1[1]=E p1[2]=I p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=En p2[2]=Ig p3[-2]=pla p3[-1]=son p3[0]= p3[1]=Enr p3[2]=Igl p4[-2]=play p4[-1]=song p4[0]= p4[1]=Enri p4[2]=Igle s1[-2]=y s1[-1]=s s1[0]=y s1[1]=e s1[2]=s s2[-2]=ay s2[-1]=gs s2[0]=by s2[1]=ue s2[2]=as s3[-2]=lay s3[-1]=ngs s3[0]= s3[1]=que s3[2]=ias s4[-2]=play s4[-1]=ongs s4[0]= s4[1]=ique s4[2]=sias 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|songs w[-1]|w[0]=songs|by w[0]|w[1]=by|Enrique w[1]|w[2]=Enrique|Iglesias pos[-2]|pos[-1]=VBP|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=songs w[1..4]=Enrique w[1..4]=Iglesias +artist w[-2]=songs w[-1]=by w[0]=Enrique w[1]=Iglesias wl[-2]=songs wl[-1]=by wl[0]=enrique wl[1]=iglesias pos[-2]=NNS pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLLLL shape[1]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=b p1[0]=E p1[1]=I p2[-2]=so p2[-1]=by p2[0]=En p2[1]=Ig p3[-2]=son p3[-1]= p3[0]=Enr p3[1]=Igl p4[-2]=song p4[-1]= p4[0]=Enri p4[1]=Igle s1[-2]=s s1[-1]=y s1[0]=e s1[1]=s s2[-2]=gs s2[-1]=by s2[0]=ue s2[1]=as s3[-2]=ngs s3[-1]= s3[0]=que s3[1]=ias s4[-2]=ongs s4[-1]= s4[0]=ique s4[1]=sias 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=songs|by w[-1]|w[0]=by|Enrique w[0]|w[1]=Enrique|Iglesias pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=songs w[-4..-1]=by w[1..4]=Iglesias +artist w[-2]=by w[-1]=Enrique w[0]=Iglesias wl[-2]=by wl[-1]=enrique wl[0]=iglesias pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLLL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=E p1[0]=I p2[-2]=by p2[-1]=En p2[0]=Ig p3[-2]= p3[-1]=Enr p3[0]=Igl p4[-2]= p4[-1]=Enri p4[0]=Igle s1[-2]=y s1[-1]=e s1[0]=s s2[-2]=by s2[-1]=ue s2[0]=as s3[-2]= s3[-1]=que s3[0]=ias s4[-2]= s4[-1]=ique s4[0]=sias 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Enrique w[-1]|w[0]=Enrique|Iglesias pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=songs w[-4..-1]=by w[-4..-1]=Enrique __EOS__ + +O w[0]=play w[1]=an w[2]=album wl[0]=play wl[1]=an wl[2]=album pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=a p2[0]=pl p2[1]=an p2[2]=al p3[0]=pla p3[1]= p3[2]=alb p4[0]=play p4[1]= p4[2]=albu s1[0]=y s1[1]=n s1[2]=m s2[0]=ay s2[1]=an s2[2]=um s3[0]=lay s3[1]= s3[2]=bum s4[0]=play s4[1]= s4[2]=lbum 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|an w[1]|w[2]=an|album pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=an w[1..4]=album w[1..4]=by w[1..4]=Madonna __BOS__ +O w[-1]=play w[0]=an w[1]=album w[2]=by wl[-1]=play wl[0]=an wl[1]=album wl[2]=by pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=a p1[2]=b p2[-1]=pl p2[0]=an p2[1]=al p2[2]=by p3[-1]=pla p3[0]= p3[1]=alb p3[2]= p4[-1]=play p4[0]= p4[1]=albu p4[2]= s1[-1]=y s1[0]=n s1[1]=m s1[2]=y s2[-1]=ay s2[0]=an s2[1]=um s2[2]=by s3[-1]=lay s3[0]= s3[1]=bum s3[2]= s4[-1]=play s4[0]= s4[1]=lbum s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|an w[0]|w[1]=an|album w[1]|w[2]=album|by pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=album w[1..4]=by w[1..4]=Madonna +O w[-2]=play w[-1]=an w[0]=album w[1]=by w[2]=Madonna wl[-2]=play wl[-1]=an wl[0]=album wl[1]=by wl[2]=madonna pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=a p1[1]=b p1[2]=M p2[-2]=pl p2[-1]=an p2[0]=al p2[1]=by p2[2]=Ma p3[-2]=pla p3[-1]= p3[0]=alb p3[1]= p3[2]=Mad p4[-2]=play p4[-1]= p4[0]=albu p4[1]= p4[2]=Mado s1[-2]=y s1[-1]=n s1[0]=m s1[1]=y s1[2]=a s2[-2]=ay s2[-1]=an s2[0]=um s2[1]=by s2[2]=na s3[-2]=lay s3[-1]= s3[0]=bum s3[1]= s3[2]=nna s4[-2]=play s4[-1]= s4[0]=lbum s4[1]= s4[2]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|an w[-1]|w[0]=an|album w[0]|w[1]=album|by w[1]|w[2]=by|Madonna pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=an w[1..4]=by w[1..4]=Madonna +O w[-2]=an w[-1]=album w[0]=by w[1]=Madonna wl[-2]=an wl[-1]=album wl[0]=by wl[1]=madonna pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=a p1[-1]=a p1[0]=b p1[1]=M p2[-2]=an p2[-1]=al p2[0]=by p2[1]=Ma p3[-2]= p3[-1]=alb p3[0]= p3[1]=Mad p4[-2]= p4[-1]=albu p4[0]= p4[1]=Mado s1[-2]=n s1[-1]=m s1[0]=y s1[1]=a s2[-2]=an s2[-1]=um s2[0]=by s2[1]=na s3[-2]= s3[-1]=bum s3[0]= s3[1]=nna s4[-2]= s4[-1]=lbum s4[0]= s4[1]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=an|album w[-1]|w[0]=album|by w[0]|w[1]=by|Madonna pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=an w[-4..-1]=album w[1..4]=Madonna +artist w[-2]=album w[-1]=by w[0]=Madonna wl[-2]=album wl[-1]=by wl[0]=madonna pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=a p1[-1]=b p1[0]=M p2[-2]=al p2[-1]=by p2[0]=Ma p3[-2]=alb p3[-1]= p3[0]=Mad p4[-2]=albu p4[-1]= p4[0]=Mado s1[-2]=m s1[-1]=y s1[0]=a s2[-2]=um s2[-1]=by s2[0]=na s3[-2]=bum s3[-1]= s3[0]=nna s4[-2]=lbum s4[-1]= s4[0]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=album|by w[-1]|w[0]=by|Madonna pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=an w[-4..-1]=album w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=Nirvana wl[0]=play wl[1]=nirvana pos[0]=VB pos[1]=NNP chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=ULLLLLL shaped[0]=L shaped[1]=UL type[0]=AllLetter type[1]=InitUpper p1[0]=p p1[1]=N p2[0]=pl p2[1]=Ni p3[0]=pla p3[1]=Nir p4[0]=play p4[1]=Nirv s1[0]=y s1[1]=a s2[0]=ay s2[1]=na s3[0]=lay s3[1]=ana s4[0]=play s4[1]=vana 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=yes cs[0]=no cs[1]=no w[0]|w[1]=play|Nirvana pos[0]|pos[1]=VB|NNP chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|UL type[0]|type[1]=AllLetter|InitUpper w[1..4]=Nirvana __BOS__ +artist w[-1]=play w[0]=Nirvana wl[-1]=play wl[0]=nirvana pos[-1]=VB pos[0]=NNP chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=ULLLLLL shaped[-1]=L shaped[0]=UL type[-1]=AllLetter type[0]=InitUpper p1[-1]=p p1[0]=N p2[-1]=pl p2[0]=Ni p3[-1]=pla p3[0]=Nir p4[-1]=play p4[0]=Nirv s1[-1]=y s1[0]=a s2[-1]=ay s2[0]=na s3[-1]=lay s3[0]=ana s4[-1]=play s4[0]=vana 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=yes cs[-1]=no cs[0]=no w[-1]|w[0]=play|Nirvana pos[-1]|pos[0]=VB|NNP chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|UL type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play __EOS__ + +O w[0]=please w[1]=play w[2]=song wl[0]=please wl[1]=play wl[2]=song pos[0]=UH pos[1]=VB pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=p p1[2]=s p2[0]=pl p2[1]=pl p2[2]=so p3[0]=ple p3[1]=pla p3[2]=son p4[0]=plea p4[1]=play p4[2]=song s1[0]=e s1[1]=y s1[2]=g s2[0]=se s2[1]=ay s2[2]=ng s3[0]=ase s3[1]=lay s3[2]=ong s4[0]=ease s4[1]=play s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=please|play w[1]|w[2]=play|song pos[0]|pos[1]=UH|VB pos[1]|pos[2]=VB|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=play w[1..4]=song w[1..4]=Secret w[1..4]=Love __BOS__ +O w[-1]=please w[0]=play w[1]=song w[2]=Secret wl[-1]=please wl[0]=play wl[1]=song wl[2]=secret pos[-1]=UH pos[0]=VB pos[1]=NN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=p p1[1]=s p1[2]=S p2[-1]=pl p2[0]=pl p2[1]=so p2[2]=Se p3[-1]=ple p3[0]=pla p3[1]=son p3[2]=Sec p4[-1]=plea p4[0]=play p4[1]=song p4[2]=Secr s1[-1]=e s1[0]=y s1[1]=g s1[2]=t s2[-1]=se s2[0]=ay s2[1]=ng s2[2]=et s3[-1]=ase s3[0]=lay s3[1]=ong s3[2]=ret s4[-1]=ease s4[0]=play s4[1]=song s4[2]=cret 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=please|play w[0]|w[1]=play|song w[1]|w[2]=song|Secret pos[-1]|pos[0]=UH|VB pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=please w[1..4]=song w[1..4]=Secret w[1..4]=Love w[1..4]=Song +O w[-2]=please w[-1]=play w[0]=song w[1]=Secret w[2]=Love wl[-2]=please wl[-1]=play wl[0]=song wl[1]=secret wl[2]=love pos[-2]=UH pos[-1]=VB pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=p p1[0]=s p1[1]=S p1[2]=L p2[-2]=pl p2[-1]=pl p2[0]=so p2[1]=Se p2[2]=Lo p3[-2]=ple p3[-1]=pla p3[0]=son p3[1]=Sec p3[2]=Lov p4[-2]=plea p4[-1]=play p4[0]=song p4[1]=Secr p4[2]=Love s1[-2]=e s1[-1]=y s1[0]=g s1[1]=t s1[2]=e s2[-2]=se s2[-1]=ay s2[0]=ng s2[1]=et s2[2]=ve s3[-2]=ase s3[-1]=lay s3[0]=ong s3[1]=ret s3[2]=ove s4[-2]=ease s4[-1]=play s4[0]=song s4[1]=cret s4[2]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=please|play w[-1]|w[0]=play|song w[0]|w[1]=song|Secret w[1]|w[2]=Secret|Love pos[-2]|pos[-1]=UH|VB pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=please w[-4..-1]=play w[1..4]=Secret w[1..4]=Love w[1..4]=Song +genre w[-2]=play w[-1]=song w[0]=Secret w[1]=Love w[2]=Song wl[-2]=play wl[-1]=song wl[0]=secret wl[1]=love wl[2]=song pos[-2]=VB pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLLL shape[1]=ULLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=S p1[1]=L p1[2]=S p2[-2]=pl p2[-1]=so p2[0]=Se p2[1]=Lo p2[2]=So p3[-2]=pla p3[-1]=son p3[0]=Sec p3[1]=Lov p3[2]=Son p4[-2]=play p4[-1]=song p4[0]=Secr p4[1]=Love p4[2]=Song s1[-2]=y s1[-1]=g s1[0]=t s1[1]=e s1[2]=g s2[-2]=ay s2[-1]=ng s2[0]=et s2[1]=ve s2[2]=ng s3[-2]=lay s3[-1]=ong s3[0]=ret s3[1]=ove s3[2]=ong s4[-2]=play s4[-1]=song s4[0]=cret s4[1]=Love s4[2]=Song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Secret w[0]|w[1]=Secret|Love w[1]|w[2]=Love|Song pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=please w[-4..-1]=play w[-4..-1]=song w[1..4]=Love w[1..4]=Song +genre w[-2]=song w[-1]=Secret w[0]=Love w[1]=Song wl[-2]=song wl[-1]=secret wl[0]=love wl[1]=song pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=ULLL shape[1]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=S p1[0]=L p1[1]=S p2[-2]=so p2[-1]=Se p2[0]=Lo p2[1]=So p3[-2]=son p3[-1]=Sec p3[0]=Lov p3[1]=Son p4[-2]=song p4[-1]=Secr p4[0]=Love p4[1]=Song s1[-2]=g s1[-1]=t s1[0]=e s1[1]=g s2[-2]=ng s2[-1]=et s2[0]=ve s2[1]=ng s3[-2]=ong s3[-1]=ret s3[0]=ove s3[1]=ong s4[-2]=song s4[-1]=cret s4[0]=Love s4[1]=Song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|Secret w[-1]|w[0]=Secret|Love w[0]|w[1]=Love|Song pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=please w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Secret w[1..4]=Song +genre w[-2]=Secret w[-1]=Love w[0]=Song wl[-2]=secret wl[-1]=love wl[0]=song pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLL shape[-1]=ULLL shape[0]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=S p1[-1]=L p1[0]=S p2[-2]=Se p2[-1]=Lo p2[0]=So p3[-2]=Sec p3[-1]=Lov p3[0]=Son p4[-2]=Secr p4[-1]=Love p4[0]=Song s1[-2]=t s1[-1]=e s1[0]=g s2[-2]=et s2[-1]=ve s2[0]=ng s3[-2]=ret s3[-1]=ove s3[0]=ong s4[-2]=cret s4[-1]=Love s4[0]=Song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Secret|Love w[-1]|w[0]=Love|Song pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Secret w[-4..-1]=Love __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=the w[1..4]=song __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=the wl[-1]=can wl[0]=you wl[1]=play wl[2]=the pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=t p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=th p3[-1]=can p3[0]=you p3[1]=pla p3[2]=the p4[-1]= p4[0]= p4[1]=play p4[2]= s1[-1]=n s1[0]=u s1[1]=y s1[2]=e s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=he s3[-1]=can s3[0]=you s3[1]=lay s3[2]=the s4[-1]= s4[0]= s4[1]=play s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|the pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=play w[1..4]=the w[1..4]=song w[1..4]=Beauty +O w[-2]=can w[-1]=you w[0]=play w[1]=the w[2]=song wl[-2]=can wl[-1]=you wl[0]=play wl[1]=the wl[2]=song pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=DT pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=t p1[2]=s p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=th p2[2]=so p3[-2]=can p3[-1]=you p3[0]=pla p3[1]=the p3[2]=son p4[-2]= p4[-1]= p4[0]=play p4[1]= p4[2]=song s1[-2]=n s1[-1]=u s1[0]=y s1[1]=e s1[2]=g s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=he s2[2]=ng s3[-2]=can s3[-1]=you s3[0]=lay s3[1]=the s3[2]=ong s4[-2]= s4[-1]= s4[0]=play s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|the w[1]|w[2]=the|song pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=the w[1..4]=song w[1..4]=Beauty w[1..4]=and +O w[-2]=you w[-1]=play w[0]=the w[1]=song w[2]=Beauty wl[-2]=you wl[-1]=play wl[0]=the wl[1]=song wl[2]=beauty pos[-2]=PRP pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=y p1[-1]=p p1[0]=t p1[1]=s p1[2]=B p2[-2]=yo p2[-1]=pl p2[0]=th p2[1]=so p2[2]=Be p3[-2]=you p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Bea p4[-2]= p4[-1]=play p4[0]= p4[1]=song p4[2]=Beau s1[-2]=u s1[-1]=y s1[0]=e s1[1]=g s1[2]=y s2[-2]=ou s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=ty s3[-2]=you s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=uty s4[-2]= s4[-1]=play s4[0]= s4[1]=song s4[2]=auty 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Beauty pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[1..4]=song w[1..4]=Beauty w[1..4]=and w[1..4]=a +O w[-2]=play w[-1]=the w[0]=song w[1]=Beauty w[2]=and wl[-2]=play wl[-1]=the wl[0]=song wl[1]=beauty wl[2]=and pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p1[1]=B p1[2]=a p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=Be p2[2]=an p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Bea p3[2]=and p4[-2]=play p4[-1]= p4[0]=song p4[1]=Beau p4[2]= s1[-2]=y s1[-1]=e s1[0]=g s1[1]=y s1[2]=d s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=ty s2[2]=nd s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=uty s3[2]=and s4[-2]=play s4[-1]= s4[0]=song s4[1]=auty s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Beauty w[1]|w[2]=Beauty|and pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[-4..-1]=the w[1..4]=Beauty w[1..4]=and w[1..4]=a w[1..4]=Beat +song w[-2]=the w[-1]=song w[0]=Beauty w[1]=and w[2]=a wl[-2]=the wl[-1]=song wl[0]=beauty wl[1]=and wl[2]=a pos[-2]=DT pos[-1]=JJ pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLLL shape[1]=LLL shape[2]=L shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=s p1[0]=B p1[1]=a p1[2]=a p2[-2]=th p2[-1]=so p2[0]=Be p2[1]=an p2[2]= p3[-2]=the p3[-1]=son p3[0]=Bea p3[1]=and p3[2]= p4[-2]= p4[-1]=song p4[0]=Beau p4[1]= p4[2]= s1[-2]=e s1[-1]=g s1[0]=y s1[1]=d s1[2]=a s2[-2]=he s2[-1]=ng s2[0]=ty s2[1]=nd s2[2]= s3[-2]=the s3[-1]=ong s3[0]=uty s3[1]=and s3[2]= s4[-2]= s4[-1]=song s4[0]=auty s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Beauty w[0]|w[1]=Beauty|and w[1]|w[2]=and|a pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=you w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[1..4]=and w[1..4]=a w[1..4]=Beat +song w[-2]=song w[-1]=Beauty w[0]=and w[1]=a w[2]=Beat wl[-2]=song wl[-1]=beauty wl[0]=and wl[1]=a wl[2]=beat pos[-2]=JJ pos[-1]=NNP pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=LLL shape[1]=L shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=B p1[0]=a p1[1]=a p1[2]=B p2[-2]=so p2[-1]=Be p2[0]=an p2[1]= p2[2]=Be p3[-2]=son p3[-1]=Bea p3[0]=and p3[1]= p3[2]=Bea p4[-2]=song p4[-1]=Beau p4[0]= p4[1]= p4[2]=Beat s1[-2]=g s1[-1]=y s1[0]=d s1[1]=a s1[2]=t s2[-2]=ng s2[-1]=ty s2[0]=nd s2[1]= s2[2]=at s3[-2]=ong s3[-1]=uty s3[0]=and s3[1]= s3[2]=eat s4[-2]=song s4[-1]=auty s4[0]= s4[1]= s4[2]=Beat 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Beauty w[-1]|w[0]=Beauty|and w[0]|w[1]=and|a w[1]|w[2]=a|Beat pos[-2]|pos[-1]=JJ|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Beauty w[1..4]=a w[1..4]=Beat +song w[-2]=Beauty w[-1]=and w[0]=a w[1]=Beat wl[-2]=beauty wl[-1]=and wl[0]=a wl[1]=beat pos[-2]=NNP pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLLLL shape[-1]=LLL shape[0]=L shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=B p1[-1]=a p1[0]=a p1[1]=B p2[-2]=Be p2[-1]=an p2[0]= p2[1]=Be p3[-2]=Bea p3[-1]=and p3[0]= p3[1]=Bea p4[-2]=Beau p4[-1]= p4[0]= p4[1]=Beat s1[-2]=y s1[-1]=d s1[0]=a s1[1]=t s2[-2]=ty s2[-1]=nd s2[0]= s2[1]=at s3[-2]=uty s3[-1]=and s3[0]= s3[1]=eat s4[-2]=auty s4[-1]= s4[0]= s4[1]=Beat 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Beauty|and w[-1]|w[0]=and|a w[0]|w[1]=a|Beat pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Beauty w[-4..-1]=and w[1..4]=Beat +song w[-2]=and w[-1]=a w[0]=Beat wl[-2]=and wl[-1]=a wl[0]=beat pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLL shape[-1]=L shape[0]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=a p1[-1]=a p1[0]=B p2[-2]=an p2[-1]= p2[0]=Be p3[-2]=and p3[-1]= p3[0]=Bea p4[-2]= p4[-1]= p4[0]=Beat s1[-2]=d s1[-1]=a s1[0]=t s2[-2]=nd s2[-1]= s2[0]=at s3[-2]=and s3[-1]= s3[0]=eat s4[-2]= s4[-1]= s4[0]=Beat 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=and|a w[-1]|w[0]=a|Beat pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=song w[-4..-1]=Beauty w[-4..-1]=and w[-4..-1]=a __EOS__ + +O w[0]=play w[1]=I w[2]=Will wl[0]=play wl[1]=i wl[2]=will pos[0]=VB pos[1]=PRP pos[2]=PRP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=U shape[2]=ULLL shaped[0]=L shaped[1]=U shaped[2]=UL type[0]=AllLetter type[1]=AllUpper type[2]=InitUpper p1[0]=p p1[1]=I p1[2]=W p2[0]=pl p2[1]= p2[2]=Wi p3[0]=pla p3[1]= p3[2]=Wil p4[0]=play p4[1]= p4[2]=Will s1[0]=y s1[1]=I s1[2]=l s2[0]=ay s2[1]= s2[2]=ll s3[0]=lay s3[1]= s3[2]=ill s4[0]=play s4[1]= s4[2]=Will 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=yes au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|I w[1]|w[2]=I|Will pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|PRP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|UL type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|InitUpper w[1..4]=I w[1..4]=Will w[1..4]=Always w[1..4]=Love __BOS__ +song w[-1]=play w[0]=I w[1]=Will w[2]=Always wl[-1]=play wl[0]=i wl[1]=will wl[2]=always pos[-1]=VB pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=U shape[1]=ULLL shape[2]=ULLLLL shaped[-1]=L shaped[0]=U shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=I p1[1]=W p1[2]=A p2[-1]=pl p2[0]= p2[1]=Wi p2[2]=Al p3[-1]=pla p3[0]= p3[1]=Wil p3[2]=Alw p4[-1]=play p4[0]= p4[1]=Will p4[2]=Alwa s1[-1]=y s1[0]=I s1[1]=l s1[2]=s s2[-1]=ay s2[0]= s2[1]=ll s2[2]=ys s3[-1]=lay s3[0]= s3[1]=ill s3[2]=ays s4[-1]=play s4[0]= s4[1]=Will s4[2]=ways 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=yes au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|I w[0]|w[1]=I|Will w[1]|w[2]=Will|Always pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Will w[1..4]=Always w[1..4]=Love w[1..4]=You +song w[-2]=play w[-1]=I w[0]=Will w[1]=Always w[2]=Love wl[-2]=play wl[-1]=i wl[0]=will wl[1]=always wl[2]=love pos[-2]=VB pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=U shape[0]=ULLL shape[1]=ULLLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=U shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=I p1[0]=W p1[1]=A p1[2]=L p2[-2]=pl p2[-1]= p2[0]=Wi p2[1]=Al p2[2]=Lo p3[-2]=pla p3[-1]= p3[0]=Wil p3[1]=Alw p3[2]=Lov p4[-2]=play p4[-1]= p4[0]=Will p4[1]=Alwa p4[2]=Love s1[-2]=y s1[-1]=I s1[0]=l s1[1]=s s1[2]=e s2[-2]=ay s2[-1]= s2[0]=ll s2[1]=ys s2[2]=ve s3[-2]=lay s3[-1]= s3[0]=ill s3[1]=ays s3[2]=ove s4[-2]=play s4[-1]= s4[0]=Will s4[1]=ways s4[2]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|I w[-1]|w[0]=I|Will w[0]|w[1]=Will|Always w[1]|w[2]=Always|Love pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=I w[1..4]=Always w[1..4]=Love w[1..4]=You w[1..4]=from +song w[-2]=I w[-1]=Will w[0]=Always w[1]=Love w[2]=You wl[-2]=i wl[-1]=will wl[0]=always wl[1]=love wl[2]=you pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=U shape[-1]=ULLL shape[0]=ULLLLL shape[1]=ULLL shape[2]=ULL shaped[-2]=U shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=I p1[-1]=W p1[0]=A p1[1]=L p1[2]=Y p2[-2]= p2[-1]=Wi p2[0]=Al p2[1]=Lo p2[2]=Yo p3[-2]= p3[-1]=Wil p3[0]=Alw p3[1]=Lov p3[2]=You p4[-2]= p4[-1]=Will p4[0]=Alwa p4[1]=Love p4[2]= s1[-2]=I s1[-1]=l s1[0]=s s1[1]=e s1[2]=u s2[-2]= s2[-1]=ll s2[0]=ys s2[1]=ve s2[2]=ou s3[-2]= s3[-1]=ill s3[0]=ays s3[1]=ove s3[2]=You s4[-2]= s4[-1]=Will s4[0]=ways s4[1]=Love s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|Will w[-1]|w[0]=Will|Always w[0]|w[1]=Always|Love w[1]|w[2]=Love|You pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=U|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=I w[-4..-1]=Will w[1..4]=Love w[1..4]=You w[1..4]=from w[1..4]=Whitney +song w[-2]=Will w[-1]=Always w[0]=Love w[1]=You w[2]=from wl[-2]=will wl[-1]=always wl[0]=love wl[1]=you wl[2]=from pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLL shape[-1]=ULLLLL shape[0]=ULLL shape[1]=ULL shape[2]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=W p1[-1]=A p1[0]=L p1[1]=Y p1[2]=f p2[-2]=Wi p2[-1]=Al p2[0]=Lo p2[1]=Yo p2[2]=fr p3[-2]=Wil p3[-1]=Alw p3[0]=Lov p3[1]=You p3[2]=fro p4[-2]=Will p4[-1]=Alwa p4[0]=Love p4[1]= p4[2]=from s1[-2]=l s1[-1]=s s1[0]=e s1[1]=u s1[2]=m s2[-2]=ll s2[-1]=ys s2[0]=ve s2[1]=ou s2[2]=om s3[-2]=ill s3[-1]=ays s3[0]=ove s3[1]=You s3[2]=rom s4[-2]=Will s4[-1]=ways s4[0]=Love s4[1]= s4[2]=from 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Will|Always w[-1]|w[0]=Always|Love w[0]|w[1]=Love|You w[1]|w[2]=You|from pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=I w[-4..-1]=Will w[-4..-1]=Always w[1..4]=You w[1..4]=from w[1..4]=Whitney w[1..4]=Houston +song w[-2]=Always w[-1]=Love w[0]=You w[1]=from w[2]=Whitney wl[-2]=always wl[-1]=love wl[0]=you wl[1]=from wl[2]=whitney pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLLLL shape[-1]=ULLL shape[0]=ULL shape[1]=LLLL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=A p1[-1]=L p1[0]=Y p1[1]=f p1[2]=W p2[-2]=Al p2[-1]=Lo p2[0]=Yo p2[1]=fr p2[2]=Wh p3[-2]=Alw p3[-1]=Lov p3[0]=You p3[1]=fro p3[2]=Whi p4[-2]=Alwa p4[-1]=Love p4[0]= p4[1]=from p4[2]=Whit s1[-2]=s s1[-1]=e s1[0]=u s1[1]=m s1[2]=y s2[-2]=ys s2[-1]=ve s2[0]=ou s2[1]=om s2[2]=ey s3[-2]=ays s3[-1]=ove s3[0]=You s3[1]=rom s3[2]=ney s4[-2]=ways s4[-1]=Love s4[0]= s4[1]=from s4[2]=tney 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Always|Love w[-1]|w[0]=Love|You w[0]|w[1]=You|from w[1]|w[2]=from|Whitney pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=I w[-4..-1]=Will w[-4..-1]=Always w[-4..-1]=Love w[1..4]=from w[1..4]=Whitney w[1..4]=Houston +O w[-2]=Love w[-1]=You w[0]=from w[1]=Whitney w[2]=Houston wl[-2]=love wl[-1]=you wl[0]=from wl[1]=whitney wl[2]=houston pos[-2]=PRP pos[-1]=PRP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=ULL shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=L p1[-1]=Y p1[0]=f p1[1]=W p1[2]=H p2[-2]=Lo p2[-1]=Yo p2[0]=fr p2[1]=Wh p2[2]=Ho p3[-2]=Lov p3[-1]=You p3[0]=fro p3[1]=Whi p3[2]=Hou p4[-2]=Love p4[-1]= p4[0]=from p4[1]=Whit p4[2]=Hous s1[-2]=e s1[-1]=u s1[0]=m s1[1]=y s1[2]=n s2[-2]=ve s2[-1]=ou s2[0]=om s2[1]=ey s2[2]=on s3[-2]=ove s3[-1]=You s3[0]=rom s3[1]=ney s3[2]=ton s4[-2]=Love s4[-1]= s4[0]=from s4[1]=tney s4[2]=ston 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Love|You w[-1]|w[0]=You|from w[0]|w[1]=from|Whitney w[1]|w[2]=Whitney|Houston pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=Will w[-4..-1]=Always w[-4..-1]=Love w[-4..-1]=You w[1..4]=Whitney w[1..4]=Houston +artist w[-2]=You w[-1]=from w[0]=Whitney w[1]=Houston wl[-2]=you wl[-1]=from wl[0]=whitney wl[1]=houston pos[-2]=PRP pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=Y p1[-1]=f p1[0]=W p1[1]=H p2[-2]=Yo p2[-1]=fr p2[0]=Wh p2[1]=Ho p3[-2]=You p3[-1]=fro p3[0]=Whi p3[1]=Hou p4[-2]= p4[-1]=from p4[0]=Whit p4[1]=Hous s1[-2]=u s1[-1]=m s1[0]=y s1[1]=n s2[-2]=ou s2[-1]=om s2[0]=ey s2[1]=on s3[-2]=You s3[-1]=rom s3[0]=ney s3[1]=ton s4[-2]= s4[-1]=from s4[0]=tney s4[1]=ston 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=You|from w[-1]|w[0]=from|Whitney w[0]|w[1]=Whitney|Houston pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Always w[-4..-1]=Love w[-4..-1]=You w[-4..-1]=from w[1..4]=Houston +artist w[-2]=from w[-1]=Whitney w[0]=Houston wl[-2]=from wl[-1]=whitney wl[0]=houston pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=f p1[-1]=W p1[0]=H p2[-2]=fr p2[-1]=Wh p2[0]=Ho p3[-2]=fro p3[-1]=Whi p3[0]=Hou p4[-2]=from p4[-1]=Whit p4[0]=Hous s1[-2]=m s1[-1]=y s1[0]=n s2[-2]=om s2[-1]=ey s2[0]=on s3[-2]=rom s3[-1]=ney s3[0]=ton s4[-2]=from s4[-1]=tney s4[0]=ston 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=from|Whitney w[-1]|w[0]=Whitney|Houston pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Love w[-4..-1]=You w[-4..-1]=from w[-4..-1]=Whitney __EOS__ + +O w[0]=can w[1]=you w[2]=start wl[0]=can wl[1]=you wl[2]=start pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=s p2[0]=ca p2[1]=yo p2[2]=st p3[0]=can p3[1]=you p3[2]=sta p4[0]= p4[1]= p4[2]=star s1[0]=n s1[1]=u s1[2]=t s2[0]=an s2[1]=ou s2[2]=rt s3[0]=can s3[1]=you s3[2]=art s4[0]= s4[1]= s4[2]=tart 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|start pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=start w[1..4]=playing w[1..4]=music __BOS__ +O w[-1]=can w[0]=you w[1]=start w[2]=playing wl[-1]=can wl[0]=you wl[1]=start wl[2]=playing pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=VBG chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLLL shape[2]=LLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=s p1[2]=p p2[-1]=ca p2[0]=yo p2[1]=st p2[2]=pl p3[-1]=can p3[0]=you p3[1]=sta p3[2]=pla p4[-1]= p4[0]= p4[1]=star p4[2]=play s1[-1]=n s1[0]=u s1[1]=t s1[2]=g s2[-1]=an s2[0]=ou s2[1]=rt s2[2]=ng s3[-1]=can s3[0]=you s3[1]=art s3[2]=ing s4[-1]= s4[0]= s4[1]=tart s4[2]=ying 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|start w[1]|w[2]=start|playing pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|VBG chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=start w[1..4]=playing w[1..4]=music +O w[-2]=can w[-1]=you w[0]=start w[1]=playing w[2]=music wl[-2]=can wl[-1]=you wl[0]=start wl[1]=playing wl[2]=music pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=VBG pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLLL shape[1]=LLLLLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=s p1[1]=p p1[2]=m p2[-2]=ca p2[-1]=yo p2[0]=st p2[1]=pl p2[2]=mu p3[-2]=can p3[-1]=you p3[0]=sta p3[1]=pla p3[2]=mus p4[-2]= p4[-1]= p4[0]=star p4[1]=play p4[2]=musi s1[-2]=n s1[-1]=u s1[0]=t s1[1]=g s1[2]=c s2[-2]=an s2[-1]=ou s2[0]=rt s2[1]=ng s2[2]=ic s3[-2]=can s3[-1]=you s3[0]=art s3[1]=ing s3[2]=sic s4[-2]= s4[-1]= s4[0]=tart s4[1]=ying s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|start w[0]|w[1]=start|playing w[1]|w[2]=playing|music pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|VBG pos[1]|pos[2]=VBG|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=playing w[1..4]=music +O w[-2]=you w[-1]=start w[0]=playing w[1]=music wl[-2]=you wl[-1]=start wl[0]=playing wl[1]=music pos[-2]=PRP pos[-1]=VB pos[0]=VBG pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLLLL shape[0]=LLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=y p1[-1]=s p1[0]=p p1[1]=m p2[-2]=yo p2[-1]=st p2[0]=pl p2[1]=mu p3[-2]=you p3[-1]=sta p3[0]=pla p3[1]=mus p4[-2]= p4[-1]=star p4[0]=play p4[1]=musi s1[-2]=u s1[-1]=t s1[0]=g s1[1]=c s2[-2]=ou s2[-1]=rt s2[0]=ng s2[1]=ic s3[-2]=you s3[-1]=art s3[0]=ing s3[1]=sic s4[-2]= s4[-1]=tart s4[0]=ying s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=you|start w[-1]|w[0]=start|playing w[0]|w[1]=playing|music pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|VBG pos[0]|pos[1]=VBG|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=start w[1..4]=music +O w[-2]=start w[-1]=playing w[0]=music wl[-2]=start wl[-1]=playing wl[0]=music pos[-2]=VB pos[-1]=VBG pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=p p1[0]=m p2[-2]=st p2[-1]=pl p2[0]=mu p3[-2]=sta p3[-1]=pla p3[0]=mus p4[-2]=star p4[-1]=play p4[0]=musi s1[-2]=t s1[-1]=g s1[0]=c s2[-2]=rt s2[-1]=ng s2[0]=ic s3[-2]=art s3[-1]=ing s3[0]=sic s4[-2]=tart s4[-1]=ying s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=start|playing w[-1]|w[0]=playing|music pos[-2]|pos[-1]=VB|VBG pos[-1]|pos[0]=VBG|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=start w[-4..-1]=playing __EOS__ + +O w[0]=play w[1]=21 w[2]=by wl[0]=play wl[1]=21 wl[2]=by pos[0]=VB pos[1]=CD pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=DD shape[2]=LL shaped[0]=L shaped[1]=D shaped[2]=L type[0]=AllLetter type[1]=AllDigit type[2]=AllLetter p1[0]=p p1[1]=2 p1[2]=b p2[0]=pl p2[1]=21 p2[2]=by p3[0]=pla p3[1]= p3[2]= p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=1 s1[2]=y s2[0]=ay s2[1]=21 s2[2]=by s3[0]=lay s3[1]= s3[2]= s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=yes 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=yes ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=no cl[2]=yes ca[0]=yes ca[1]=no ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|21 w[1]|w[2]=21|by pos[0]|pos[1]=VB|CD pos[1]|pos[2]=CD|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|D shaped[1]|shaped[2]=D|L type[0]|type[1]=AllLetter|AllDigit type[1]|type[2]=AllDigit|AllLetter w[1..4]=21 w[1..4]=by w[1..4]=Adele w[1..4]=on __BOS__ +song w[-1]=play w[0]=21 w[1]=by w[2]=Adele wl[-1]=play wl[0]=21 wl[1]=by wl[2]=adele pos[-1]=VB pos[0]=CD pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=DD shape[1]=LL shape[2]=ULLLL shaped[-1]=L shaped[0]=D shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllDigit type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=2 p1[1]=b p1[2]=A p2[-1]=pl p2[0]=21 p2[1]=by p2[2]=Ad p3[-1]=pla p3[0]= p3[1]= p3[2]=Ade p4[-1]=play p4[0]= p4[1]= p4[2]=Adel s1[-1]=y s1[0]=1 s1[1]=y s1[2]=e s2[-1]=ay s2[0]=21 s2[1]=by s2[2]=le s3[-1]=lay s3[0]= s3[1]= s3[2]=ele s4[-1]=play s4[0]= s4[1]= s4[2]=dele 2d[-1]=no 2d[0]=yes 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=yes ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=no ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|21 w[0]|w[1]=21|by w[1]|w[2]=by|Adele pos[-1]|pos[0]=VB|CD pos[0]|pos[1]=CD|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|D shaped[0]|shaped[1]=D|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllDigit type[0]|type[1]=AllDigit|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Adele w[1..4]=on w[1..4]=Spotify +O w[-2]=play w[-1]=21 w[0]=by w[1]=Adele w[2]=on wl[-2]=play wl[-1]=21 wl[0]=by wl[1]=adele wl[2]=on pos[-2]=VB pos[-1]=CD pos[0]=IN pos[1]=NNP pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=DD shape[0]=LL shape[1]=ULLLL shape[2]=LL shaped[-2]=L shaped[-1]=D shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllDigit type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=2 p1[0]=b p1[1]=A p1[2]=o p2[-2]=pl p2[-1]=21 p2[0]=by p2[1]=Ad p2[2]=on p3[-2]=pla p3[-1]= p3[0]= p3[1]=Ade p3[2]= p4[-2]=play p4[-1]= p4[0]= p4[1]=Adel p4[2]= s1[-2]=y s1[-1]=1 s1[0]=y s1[1]=e s1[2]=n s2[-2]=ay s2[-1]=21 s2[0]=by s2[1]=le s2[2]=on s3[-2]=lay s3[-1]= s3[0]= s3[1]=ele s3[2]= s4[-2]=play s4[-1]= s4[0]= s4[1]=dele s4[2]= 2d[-2]=no 2d[-1]=yes 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=yes ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|21 w[-1]|w[0]=21|by w[0]|w[1]=by|Adele w[1]|w[2]=Adele|on pos[-2]|pos[-1]=VB|CD pos[-1]|pos[0]=CD|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|D shaped[-1]|shaped[0]=D|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllDigit type[-1]|type[0]=AllDigit|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=21 w[1..4]=Adele w[1..4]=on w[1..4]=Spotify +artist w[-2]=21 w[-1]=by w[0]=Adele w[1]=on w[2]=Spotify wl[-2]=21 wl[-1]=by wl[0]=adele wl[1]=on wl[2]=spotify pos[-2]=CD pos[-1]=IN pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=DD shape[-1]=LL shape[0]=ULLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=D shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllDigit type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=2 p1[-1]=b p1[0]=A p1[1]=o p1[2]=S p2[-2]=21 p2[-1]=by p2[0]=Ad p2[1]=on p2[2]=Sp p3[-2]= p3[-1]= p3[0]=Ade p3[1]= p3[2]=Spo p4[-2]= p4[-1]= p4[0]=Adel p4[1]= p4[2]=Spot s1[-2]=1 s1[-1]=y s1[0]=e s1[1]=n s1[2]=y s2[-2]=21 s2[-1]=by s2[0]=le s2[1]=on s2[2]=fy s3[-2]= s3[-1]= s3[0]=ele s3[1]= s3[2]=ify s4[-2]= s4[-1]= s4[0]=dele s4[1]= s4[2]=tify 2d[-2]=yes 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=no ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=21|by w[-1]|w[0]=by|Adele w[0]|w[1]=Adele|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=CD|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=D|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllDigit|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=21 w[-4..-1]=by w[1..4]=on w[1..4]=Spotify +O w[-2]=by w[-1]=Adele w[0]=on w[1]=Spotify wl[-2]=by wl[-1]=adele wl[0]=on wl[1]=spotify pos[-2]=IN pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=b p1[-1]=A p1[0]=o p1[1]=S p2[-2]=by p2[-1]=Ad p2[0]=on p2[1]=Sp p3[-2]= p3[-1]=Ade p3[0]= p3[1]=Spo p4[-2]= p4[-1]=Adel p4[0]= p4[1]=Spot s1[-2]=y s1[-1]=e s1[0]=n s1[1]=y s2[-2]=by s2[-1]=le s2[0]=on s2[1]=fy s3[-2]= s3[-1]=ele s3[0]= s3[1]=ify s4[-2]= s4[-1]=dele s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=by|Adele w[-1]|w[0]=Adele|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=21 w[-4..-1]=by w[-4..-1]=Adele w[1..4]=Spotify +service w[-2]=Adele w[-1]=on w[0]=Spotify wl[-2]=adele wl[-1]=on wl[0]=spotify pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=A p1[-1]=o p1[0]=S p2[-2]=Ad p2[-1]=on p2[0]=Sp p3[-2]=Ade p3[-1]= p3[0]=Spo p4[-2]=Adel p4[-1]= p4[0]=Spot s1[-2]=e s1[-1]=n s1[0]=y s2[-2]=le s2[-1]=on s2[0]=fy s3[-2]=ele s3[-1]= s3[0]=ify s4[-2]=dele s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Adele|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=21 w[-4..-1]=by w[-4..-1]=Adele w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=Rihanna w[2]=on wl[0]=play wl[1]=rihanna wl[2]=on pos[0]=VB pos[1]=NNP pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=R p1[2]=o p2[0]=pl p2[1]=Ri p2[2]=on p3[0]=pla p3[1]=Rih p3[2]= p4[0]=play p4[1]=Riha p4[2]= s1[0]=y s1[1]=a s1[2]=n s2[0]=ay s2[1]=na s2[2]=on s3[0]=lay s3[1]=nna s3[2]= s4[0]=play s4[1]=anna s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Rihanna w[1]|w[2]=Rihanna|on pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Rihanna w[1..4]=on w[1..4]=Spotify __BOS__ +artist w[-1]=play w[0]=Rihanna w[1]=on w[2]=Spotify wl[-1]=play wl[0]=rihanna wl[1]=on wl[2]=spotify pos[-1]=VB pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=R p1[1]=o p1[2]=S p2[-1]=pl p2[0]=Ri p2[1]=on p2[2]=Sp p3[-1]=pla p3[0]=Rih p3[1]= p3[2]=Spo p4[-1]=play p4[0]=Riha p4[1]= p4[2]=Spot s1[-1]=y s1[0]=a s1[1]=n s1[2]=y s2[-1]=ay s2[0]=na s2[1]=on s2[2]=fy s3[-1]=lay s3[0]=nna s3[1]= s3[2]=ify s4[-1]=play s4[0]=anna s4[1]= s4[2]=tify 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Rihanna w[0]|w[1]=Rihanna|on w[1]|w[2]=on|Spotify pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=on w[1..4]=Spotify +O w[-2]=play w[-1]=Rihanna w[0]=on w[1]=Spotify wl[-2]=play wl[-1]=rihanna wl[0]=on wl[1]=spotify pos[-2]=VB pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=R p1[0]=o p1[1]=S p2[-2]=pl p2[-1]=Ri p2[0]=on p2[1]=Sp p3[-2]=pla p3[-1]=Rih p3[0]= p3[1]=Spo p4[-2]=play p4[-1]=Riha p4[0]= p4[1]=Spot s1[-2]=y s1[-1]=a s1[0]=n s1[1]=y s2[-2]=ay s2[-1]=na s2[0]=on s2[1]=fy s3[-2]=lay s3[-1]=nna s3[0]= s3[1]=ify s4[-2]=play s4[-1]=anna s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Rihanna w[-1]|w[0]=Rihanna|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Rihanna w[1..4]=Spotify +service w[-2]=Rihanna w[-1]=on w[0]=Spotify wl[-2]=rihanna wl[-1]=on wl[0]=spotify pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=R p1[-1]=o p1[0]=S p2[-2]=Ri p2[-1]=on p2[0]=Sp p3[-2]=Rih p3[-1]= p3[0]=Spo p4[-2]=Riha p4[-1]= p4[0]=Spot s1[-2]=a s1[-1]=n s1[0]=y s2[-2]=na s2[-1]=on s2[0]=fy s3[-2]=nna s3[-1]= s3[0]=ify s4[-2]=anna s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Rihanna|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Rihanna w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=the w[2]=song wl[0]=play wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=the p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=he s2[2]=ng s3[0]=lay s3[1]=the s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song w[1..4]=Back w[1..4]=in __BOS__ +O w[-1]=play w[0]=the w[1]=song w[2]=Back wl[-1]=play wl[0]=the wl[1]=song wl[2]=back pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=RB chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=s p1[2]=B p2[-1]=pl p2[0]=th p2[1]=so p2[2]=Ba p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Bac p4[-1]=play p4[0]= p4[1]=song p4[2]=Back s1[-1]=y s1[0]=e s1[1]=g s1[2]=k s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=ck s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ack s4[-1]=play s4[0]= s4[1]=song s4[2]=Back 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Back pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|RB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Back w[1..4]=in w[1..4]=time +O w[-2]=play w[-1]=the w[0]=song w[1]=Back w[2]=in wl[-2]=play wl[-1]=the wl[0]=song wl[1]=back wl[2]=in pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=RB pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p1[1]=B p1[2]=i p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=Ba p2[2]=in p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Bac p3[2]= p4[-2]=play p4[-1]= p4[0]=song p4[1]=Back p4[2]= s1[-2]=y s1[-1]=e s1[0]=g s1[1]=k s1[2]=n s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=ck s2[2]=in s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ack s3[2]= s4[-2]=play s4[-1]= s4[0]=song s4[1]=Back s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Back w[1]|w[2]=Back|in pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|RB pos[1]|pos[2]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=Back w[1..4]=in w[1..4]=time w[1..4]=by +song w[-2]=the w[-1]=song w[0]=Back w[1]=in w[2]=time wl[-2]=the wl[-1]=song wl[0]=back wl[1]=in wl[2]=time pos[-2]=DT pos[-1]=NN pos[0]=RB pos[1]=RB pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLL shape[1]=LL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=s p1[0]=B p1[1]=i p1[2]=t p2[-2]=th p2[-1]=so p2[0]=Ba p2[1]=in p2[2]=ti p3[-2]=the p3[-1]=son p3[0]=Bac p3[1]= p3[2]=tim p4[-2]= p4[-1]=song p4[0]=Back p4[1]= p4[2]=time s1[-2]=e s1[-1]=g s1[0]=k s1[1]=n s1[2]=e s2[-2]=he s2[-1]=ng s2[0]=ck s2[1]=in s2[2]=me s3[-2]=the s3[-1]=ong s3[0]=ack s3[1]= s3[2]=ime s4[-2]= s4[-1]=song s4[0]=Back s4[1]= s4[2]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Back w[0]|w[1]=Back|in w[1]|w[2]=in|time pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|RB pos[0]|pos[1]=RB|RB pos[1]|pos[2]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[1..4]=in w[1..4]=time w[1..4]=by w[1..4]=Pitbull +song w[-2]=song w[-1]=Back w[0]=in w[1]=time w[2]=by wl[-2]=song wl[-1]=back wl[0]=in wl[1]=time wl[2]=by pos[-2]=NN pos[-1]=RB pos[0]=RB pos[1]=RB pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULLL shape[0]=LL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=B p1[0]=i p1[1]=t p1[2]=b p2[-2]=so p2[-1]=Ba p2[0]=in p2[1]=ti p2[2]=by p3[-2]=son p3[-1]=Bac p3[0]= p3[1]=tim p3[2]= p4[-2]=song p4[-1]=Back p4[0]= p4[1]=time p4[2]= s1[-2]=g s1[-1]=k s1[0]=n s1[1]=e s1[2]=y s2[-2]=ng s2[-1]=ck s2[0]=in s2[1]=me s2[2]=by s3[-2]=ong s3[-1]=ack s3[0]= s3[1]=ime s3[2]= s4[-2]=song s4[-1]=Back s4[0]= s4[1]=time s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Back w[-1]|w[0]=Back|in w[0]|w[1]=in|time w[1]|w[2]=time|by pos[-2]|pos[-1]=NN|RB pos[-1]|pos[0]=RB|RB pos[0]|pos[1]=RB|RB pos[1]|pos[2]=RB|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Back w[1..4]=time w[1..4]=by w[1..4]=Pitbull +song w[-2]=Back w[-1]=in w[0]=time w[1]=by w[2]=Pitbull wl[-2]=back wl[-1]=in wl[0]=time wl[1]=by wl[2]=pitbull pos[-2]=RB pos[-1]=RB pos[0]=RB pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLL shape[-1]=LL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=B p1[-1]=i p1[0]=t p1[1]=b p1[2]=P p2[-2]=Ba p2[-1]=in p2[0]=ti p2[1]=by p2[2]=Pi p3[-2]=Bac p3[-1]= p3[0]=tim p3[1]= p3[2]=Pit p4[-2]=Back p4[-1]= p4[0]=time p4[1]= p4[2]=Pitb s1[-2]=k s1[-1]=n s1[0]=e s1[1]=y s1[2]=l s2[-2]=ck s2[-1]=in s2[0]=me s2[1]=by s2[2]=ll s3[-2]=ack s3[-1]= s3[0]=ime s3[1]= s3[2]=ull s4[-2]=Back s4[-1]= s4[0]=time s4[1]= s4[2]=bull 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Back|in w[-1]|w[0]=in|time w[0]|w[1]=time|by w[1]|w[2]=by|Pitbull pos[-2]|pos[-1]=RB|RB pos[-1]|pos[0]=RB|RB pos[0]|pos[1]=RB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Back w[-4..-1]=in w[1..4]=by w[1..4]=Pitbull +O w[-2]=in w[-1]=time w[0]=by w[1]=Pitbull wl[-2]=in wl[-1]=time wl[0]=by wl[1]=pitbull pos[-2]=RB pos[-1]=RB pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=i p1[-1]=t p1[0]=b p1[1]=P p2[-2]=in p2[-1]=ti p2[0]=by p2[1]=Pi p3[-2]= p3[-1]=tim p3[0]= p3[1]=Pit p4[-2]= p4[-1]=time p4[0]= p4[1]=Pitb s1[-2]=n s1[-1]=e s1[0]=y s1[1]=l s2[-2]=in s2[-1]=me s2[0]=by s2[1]=ll s3[-2]= s3[-1]=ime s3[0]= s3[1]=ull s4[-2]= s4[-1]=time s4[0]= s4[1]=bull 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=in|time w[-1]|w[0]=time|by w[0]|w[1]=by|Pitbull pos[-2]|pos[-1]=RB|RB pos[-1]|pos[0]=RB|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=song w[-4..-1]=Back w[-4..-1]=in w[-4..-1]=time w[1..4]=Pitbull +artist w[-2]=time w[-1]=by w[0]=Pitbull wl[-2]=time wl[-1]=by wl[0]=pitbull pos[-2]=RB pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=b p1[0]=P p2[-2]=ti p2[-1]=by p2[0]=Pi p3[-2]=tim p3[-1]= p3[0]=Pit p4[-2]=time p4[-1]= p4[0]=Pitb s1[-2]=e s1[-1]=y s1[0]=l s2[-2]=me s2[-1]=by s2[0]=ll s3[-2]=ime s3[-1]= s3[0]=ull s4[-2]=time s4[-1]= s4[0]=bull 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=time|by w[-1]|w[0]=by|Pitbull pos[-2]|pos[-1]=RB|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Back w[-4..-1]=in w[-4..-1]=time w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=artist w[2]=A wl[0]=play wl[1]=artist wl[2]=a pos[0]=VB pos[1]=NN pos[2]=DT chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLLL shape[2]=U shaped[0]=L shaped[1]=L shaped[2]=U type[0]=AllLetter type[1]=AllLetter type[2]=AllUpper p1[0]=p p1[1]=a p1[2]=A p2[0]=pl p2[1]=ar p2[2]= p3[0]=pla p3[1]=art p3[2]= p4[0]=play p4[1]=arti p4[2]= s1[0]=y s1[1]=t s1[2]=A s2[0]=ay s2[1]=st s2[2]= s3[0]=lay s3[1]=ist s3[2]= s4[0]=play s4[1]=tist s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=yes al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|artist w[1]|w[2]=artist|A pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|U type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllUpper w[1..4]=artist w[1..4]=A w[1..4]=great w[1..4]=big __BOS__ +O w[-1]=play w[0]=artist w[1]=A w[2]=great wl[-1]=play wl[0]=artist wl[1]=a wl[2]=great pos[-1]=VB pos[0]=NN pos[1]=DT pos[2]=DT chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLLL shape[1]=U shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=U shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=A p1[2]=g p2[-1]=pl p2[0]=ar p2[1]= p2[2]=gr p3[-1]=pla p3[0]=art p3[1]= p3[2]=gre p4[-1]=play p4[0]=arti p4[1]= p4[2]=grea s1[-1]=y s1[0]=t s1[1]=A s1[2]=t s2[-1]=ay s2[0]=st s2[1]= s2[2]=at s3[-1]=lay s3[0]=ist s3[1]= s3[2]=eat s4[-1]=play s4[0]=tist s4[1]= s4[2]=reat 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=yes au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|artist w[0]|w[1]=artist|A w[1]|w[2]=A|great pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|DT pos[1]|pos[2]=DT|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|AllLetter w[-4..-1]=play w[1..4]=A w[1..4]=great w[1..4]=big w[1..4]=world +artist w[-2]=play w[-1]=artist w[0]=A w[1]=great w[2]=big wl[-2]=play wl[-1]=artist wl[0]=a wl[1]=great wl[2]=big pos[-2]=VB pos[-1]=NN pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLLL shape[0]=U shape[1]=LLLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=U shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=A p1[1]=g p1[2]=b p2[-2]=pl p2[-1]=ar p2[0]= p2[1]=gr p2[2]=bi p3[-2]=pla p3[-1]=art p3[0]= p3[1]=gre p3[2]=big p4[-2]=play p4[-1]=arti p4[0]= p4[1]=grea p4[2]= s1[-2]=y s1[-1]=t s1[0]=A s1[1]=t s1[2]=g s2[-2]=ay s2[-1]=st s2[0]= s2[1]=at s2[2]=ig s3[-2]=lay s3[-1]=ist s3[0]= s3[1]=eat s3[2]=big s4[-2]=play s4[-1]=tist s4[0]= s4[1]=reat s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=yes au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|artist w[-1]|w[0]=artist|A w[0]|w[1]=A|great w[1]|w[2]=great|big pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=artist w[1..4]=great w[1..4]=big w[1..4]=world +artist w[-2]=artist w[-1]=A w[0]=great w[1]=big w[2]=world wl[-2]=artist wl[-1]=a wl[0]=great wl[1]=big wl[2]=world pos[-2]=NN pos[-1]=DT pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLLLL shape[-1]=U shape[0]=LLLLL shape[1]=LLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=A p1[0]=g p1[1]=b p1[2]=w p2[-2]=ar p2[-1]= p2[0]=gr p2[1]=bi p2[2]=wo p3[-2]=art p3[-1]= p3[0]=gre p3[1]=big p3[2]=wor p4[-2]=arti p4[-1]= p4[0]=grea p4[1]= p4[2]=worl s1[-2]=t s1[-1]=A s1[0]=t s1[1]=g s1[2]=d s2[-2]=st s2[-1]= s2[0]=at s2[1]=ig s2[2]=ld s3[-2]=ist s3[-1]= s3[0]=eat s3[1]=big s3[2]=rld s4[-2]=tist s4[-1]= s4[0]=reat s4[1]= s4[2]=orld 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=artist|A w[-1]|w[0]=A|great w[0]|w[1]=great|big w[1]|w[2]=big|world pos[-2]|pos[-1]=NN|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=artist w[-4..-1]=A w[1..4]=big w[1..4]=world +artist w[-2]=A w[-1]=great w[0]=big w[1]=world wl[-2]=a wl[-1]=great wl[0]=big wl[1]=world pos[-2]=DT pos[-1]=DT pos[0]=DT pos[1]=DT chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=U shape[-1]=LLLLL shape[0]=LLL shape[1]=LLLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=A p1[-1]=g p1[0]=b p1[1]=w p2[-2]= p2[-1]=gr p2[0]=bi p2[1]=wo p3[-2]= p3[-1]=gre p3[0]=big p3[1]=wor p4[-2]= p4[-1]=grea p4[0]= p4[1]=worl s1[-2]=A s1[-1]=t s1[0]=g s1[1]=d s2[-2]= s2[-1]=at s2[0]=ig s2[1]=ld s3[-2]= s3[-1]=eat s3[0]=big s3[1]=rld s4[-2]= s4[-1]=reat s4[0]= s4[1]=orld 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=A|great w[-1]|w[0]=great|big w[0]|w[1]=big|world pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=artist w[-4..-1]=A w[-4..-1]=great w[1..4]=world +artist w[-2]=great w[-1]=big w[0]=world wl[-2]=great wl[-1]=big wl[0]=world pos[-2]=DT pos[-1]=DT pos[0]=DT chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLLLL shape[-1]=LLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=g p1[-1]=b p1[0]=w p2[-2]=gr p2[-1]=bi p2[0]=wo p3[-2]=gre p3[-1]=big p3[0]=wor p4[-2]=grea p4[-1]= p4[0]=worl s1[-2]=t s1[-1]=g s1[0]=d s2[-2]=at s2[-1]=ig s2[0]=ld s3[-2]=eat s3[-1]=big s3[0]=rld s4[-2]=reat s4[-1]= s4[0]=orld 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=great|big w[-1]|w[0]=big|world pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=artist w[-4..-1]=A w[-4..-1]=great w[-4..-1]=big __EOS__ + +O w[0]=can w[1]=I w[2]=listen wl[0]=can wl[1]=i wl[2]=listen pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=U shape[2]=LLLLLL shaped[0]=L shaped[1]=U shaped[2]=L type[0]=AllLetter type[1]=AllUpper type[2]=AllLetter p1[0]=c p1[1]=I p1[2]=l p2[0]=ca p2[1]= p2[2]=li p3[0]=can p3[1]= p3[2]=lis p4[0]= p4[1]= p4[2]=list s1[0]=n s1[1]=I s1[2]=n s2[0]=an s2[1]= s2[2]=en s3[0]=can s3[1]= s3[2]=ten s4[0]= s4[1]= s4[2]=sten 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=yes au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=no cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|I w[1]|w[2]=I|listen pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|L type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|AllLetter w[1..4]=I w[1..4]=listen w[1..4]=to w[1..4]=Gangsta's __BOS__ +O w[-1]=can w[0]=I w[1]=listen w[2]=to wl[-1]=can wl[0]=i wl[1]=listen wl[2]=to pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=U shape[1]=LLLLLL shape[2]=LL shaped[-1]=L shaped[0]=U shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=I p1[1]=l p1[2]=t p2[-1]=ca p2[0]= p2[1]=li p2[2]=to p3[-1]=can p3[0]= p3[1]=lis p3[2]= p4[-1]= p4[0]= p4[1]=list p4[2]= s1[-1]=n s1[0]=I s1[1]=n s1[2]=o s2[-1]=an s2[0]= s2[1]=en s2[2]=to s3[-1]=can s3[0]= s3[1]=ten s3[2]= s4[-1]= s4[0]= s4[1]=sten s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=yes au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|I w[0]|w[1]=I|listen w[1]|w[2]=listen|to pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=listen w[1..4]=to w[1..4]=Gangsta's w[1..4]=Paradise +O w[-2]=can w[-1]=I w[0]=listen w[1]=to w[2]=Gangsta's wl[-2]=can wl[-1]=i wl[0]=listen wl[1]=to wl[2]=gangsta's pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=U shape[0]=LLLLLL shape[1]=LL shape[2]=ULLLLLL'L shaped[-2]=L shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=UL'L type[-2]=AllLetter type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=c p1[-1]=I p1[0]=l p1[1]=t p1[2]=G p2[-2]=ca p2[-1]= p2[0]=li p2[1]=to p2[2]=Ga p3[-2]=can p3[-1]= p3[0]=lis p3[1]= p3[2]=Gan p4[-2]= p4[-1]= p4[0]=list p4[1]= p4[2]=Gang s1[-2]=n s1[-1]=I s1[0]=n s1[1]=o s1[2]=s s2[-2]=an s2[-1]= s2[0]=en s2[1]=to s2[2]='s s3[-2]=can s3[-1]= s3[0]=ten s3[1]= s3[2]=a's s4[-2]= s4[-1]= s4[0]=sten s4[1]= s4[2]=ta's 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=yes w[-2]|w[-1]=can|I w[-1]|w[0]=I|listen w[0]|w[1]=listen|to w[1]|w[2]=to|Gangsta's pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL'L type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=I w[1..4]=to w[1..4]=Gangsta's w[1..4]=Paradise w[1..4]=song +O w[-2]=I w[-1]=listen w[0]=to w[1]=Gangsta's w[2]=Paradise wl[-2]=i wl[-1]=listen wl[0]=to wl[1]=gangsta's wl[2]=paradise pos[-2]=PRP pos[-1]=VB pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=U shape[-1]=LLLLLL shape[0]=LL shape[1]=ULLLLLL'L shape[2]=ULLLLLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=UL'L shaped[2]=UL type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=I p1[-1]=l p1[0]=t p1[1]=G p1[2]=P p2[-2]= p2[-1]=li p2[0]=to p2[1]=Ga p2[2]=Pa p3[-2]= p3[-1]=lis p3[0]= p3[1]=Gan p3[2]=Par p4[-2]= p4[-1]=list p4[0]= p4[1]=Gang p4[2]=Para s1[-2]=I s1[-1]=n s1[0]=o s1[1]=s s1[2]=e s2[-2]= s2[-1]=en s2[0]=to s2[1]='s s2[2]=se s3[-2]= s3[-1]=ten s3[0]= s3[1]=a's s3[2]=ise s4[-2]= s4[-1]=sten s4[0]= s4[1]=ta's s4[2]=dise 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=yes cs[2]=no w[-2]|w[-1]=I|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|Gangsta's w[1]|w[2]=Gangsta's|Paradise pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL'L shaped[1]|shaped[2]=UL'L|UL type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=I w[-4..-1]=listen w[1..4]=Gangsta's w[1..4]=Paradise w[1..4]=song +song w[-2]=listen w[-1]=to w[0]=Gangsta's w[1]=Paradise w[2]=song wl[-2]=listen wl[-1]=to wl[0]=gangsta's wl[1]=paradise wl[2]=song pos[-2]=VB pos[-1]=IN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=ULLLLLL'L shape[1]=ULLLLLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL'L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=G p1[1]=P p1[2]=s p2[-2]=li p2[-1]=to p2[0]=Ga p2[1]=Pa p2[2]=so p3[-2]=lis p3[-1]= p3[0]=Gan p3[1]=Par p3[2]=son p4[-2]=list p4[-1]= p4[0]=Gang p4[1]=Para p4[2]=song s1[-2]=n s1[-1]=o s1[0]=s s1[1]=e s1[2]=g s2[-2]=en s2[-1]=to s2[0]='s s2[1]=se s2[2]=ng s3[-2]=ten s3[-1]= s3[0]=a's s3[1]=ise s3[2]=ong s4[-2]=sten s4[-1]= s4[0]=ta's s4[1]=dise s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=yes cs[1]=no cs[2]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|Gangsta's w[0]|w[1]=Gangsta's|Paradise w[1]|w[2]=Paradise|song pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL'L shaped[0]|shaped[1]=UL'L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=can w[-4..-1]=I w[-4..-1]=listen w[-4..-1]=to w[1..4]=Paradise w[1..4]=song +song w[-2]=to w[-1]=Gangsta's w[0]=Paradise w[1]=song wl[-2]=to wl[-1]=gangsta's wl[0]=paradise wl[1]=song pos[-2]=IN pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=ULLLLLL'L shape[0]=ULLLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=UL'L shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-2]=t p1[-1]=G p1[0]=P p1[1]=s p2[-2]=to p2[-1]=Ga p2[0]=Pa p2[1]=so p3[-2]= p3[-1]=Gan p3[0]=Par p3[1]=son p4[-2]= p4[-1]=Gang p4[0]=Para p4[1]=song s1[-2]=o s1[-1]=s s1[0]=e s1[1]=g s2[-2]=to s2[-1]='s s2[0]=se s2[1]=ng s3[-2]= s3[-1]=a's s3[0]=ise s3[1]=ong s4[-2]= s4[-1]=ta's s4[0]=dise s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cs[-2]=no cs[-1]=yes cs[0]=no cs[1]=no w[-2]|w[-1]=to|Gangsta's w[-1]|w[0]=Gangsta's|Paradise w[0]|w[1]=Paradise|song pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|UL'L shaped[-1]|shaped[0]=UL'L|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=I w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Gangsta's w[1..4]=song +O w[-2]=Gangsta's w[-1]=Paradise w[0]=song wl[-2]=gangsta's wl[-1]=paradise wl[0]=song pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULLLLLL'L shape[-1]=ULLLLLLL shape[0]=LLLL shaped[-2]=UL'L shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=G p1[-1]=P p1[0]=s p2[-2]=Ga p2[-1]=Pa p2[0]=so p3[-2]=Gan p3[-1]=Par p3[0]=son p4[-2]=Gang p4[-1]=Para p4[0]=song s1[-2]=s s1[-1]=e s1[0]=g s2[-2]='s s2[-1]=se s2[0]=ng s3[-2]=a's s3[-1]=ise s3[0]=ong s4[-2]=ta's s4[-1]=dise s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cs[-2]=yes cs[-1]=no cs[0]=no w[-2]|w[-1]=Gangsta's|Paradise w[-1]|w[0]=Paradise|song pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL'L|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Gangsta's w[-4..-1]=Paradise __EOS__ + +O w[0]=play w[1]=r&b w[2]=music wl[0]=play wl[1]=r&b wl[2]=music pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=L&L shape[2]=LLLLL shaped[0]=L shaped[1]=L&L shaped[2]=L type[0]=AllLetter type[1]=NO type[2]=AllLetter p1[0]=p p1[1]=r p1[2]=m p2[0]=pl p2[1]=r& p2[2]=mu p3[0]=pla p3[1]=r&b p3[2]=mus p4[0]=play p4[1]= p4[2]=musi s1[0]=y s1[1]=b s1[2]=c s2[0]=ay s2[1]=&b s2[2]=ic s3[0]=lay s3[1]=r&b s3[2]=sic s4[0]=play s4[1]= s4[2]=usic 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=yes cs[2]=no w[0]|w[1]=play|r&b w[1]|w[2]=r&b|music pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|L&L shaped[1]|shaped[2]=L&L|L type[0]|type[1]=AllLetter|NO type[1]|type[2]=NO|AllLetter w[1..4]=r&b w[1..4]=music __BOS__ +song w[-1]=play w[0]=r&b w[1]=music wl[-1]=play wl[0]=r&b wl[1]=music pos[-1]=VB pos[0]=NN pos[1]=NN chk[-1]=O chk[0]=I chk[1]=O shape[-1]=LLLL shape[0]=L&L shape[1]=LLLLL shaped[-1]=L shaped[0]=L&L shaped[1]=L type[-1]=AllLetter type[0]=NO type[1]=AllLetter p1[-1]=p p1[0]=r p1[1]=m p2[-1]=pl p2[0]=r& p2[1]=mu p3[-1]=pla p3[0]=r&b p3[1]=mus p4[-1]=play p4[0]= p4[1]=musi s1[-1]=y s1[0]=b s1[1]=c s2[-1]=ay s2[0]=&b s2[1]=ic s3[-1]=lay s3[0]=r&b s3[1]=sic s4[-1]=play s4[0]= s4[1]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=yes cs[1]=no w[-1]|w[0]=play|r&b w[0]|w[1]=r&b|music pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-1]|shaped[0]=L|L&L shaped[0]|shaped[1]=L&L|L type[-1]|type[0]=AllLetter|NO type[0]|type[1]=NO|AllLetter w[-4..-1]=play w[1..4]=music +O w[-2]=play w[-1]=r&b w[0]=music wl[-2]=play wl[-1]=r&b wl[0]=music pos[-2]=VB pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=L&L shape[0]=LLLLL shaped[-2]=L shaped[-1]=L&L shaped[0]=L type[-2]=AllLetter type[-1]=NO type[0]=AllLetter p1[-2]=p p1[-1]=r p1[0]=m p2[-2]=pl p2[-1]=r& p2[0]=mu p3[-2]=pla p3[-1]=r&b p3[0]=mus p4[-2]=play p4[-1]= p4[0]=musi s1[-2]=y s1[-1]=b s1[0]=c s2[-2]=ay s2[-1]=&b s2[0]=ic s3[-2]=lay s3[-1]=r&b s3[0]=sic s4[-2]=play s4[-1]= s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=yes cs[0]=no w[-2]|w[-1]=play|r&b w[-1]|w[0]=r&b|music pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L&L shaped[-1]|shaped[0]=L&L|L type[-2]|type[-1]=AllLetter|NO type[-1]|type[0]=NO|AllLetter w[-4..-1]=play w[-4..-1]=r&b __EOS__ + +O w[0]=play w[1]=Do w[2]=you wl[0]=play wl[1]=do wl[2]=you pos[0]=NN pos[1]=VBP pos[2]=VBP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=UL shape[2]=LLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=D p1[2]=y p2[0]=pl p2[1]=Do p2[2]=yo p3[0]=pla p3[1]= p3[2]=you p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=o s1[2]=u s2[0]=ay s2[1]=Do s2[2]=ou s3[0]=lay s3[1]= s3[2]=you s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Do w[1]|w[2]=Do|you pos[0]|pos[1]=NN|VBP pos[1]|pos[2]=VBP|VBP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Do w[1..4]=you w[1..4]=Mind w[1..4]=by __BOS__ +song w[-1]=play w[0]=Do w[1]=you w[2]=Mind wl[-1]=play wl[0]=do wl[1]=you wl[2]=mind pos[-1]=NN pos[0]=VBP pos[1]=VBP pos[2]=VBP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=UL shape[1]=LLL shape[2]=ULLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=D p1[1]=y p1[2]=M p2[-1]=pl p2[0]=Do p2[1]=yo p2[2]=Mi p3[-1]=pla p3[0]= p3[1]=you p3[2]=Min p4[-1]=play p4[0]= p4[1]= p4[2]=Mind s1[-1]=y s1[0]=o s1[1]=u s1[2]=d s2[-1]=ay s2[0]=Do s2[1]=ou s2[2]=nd s3[-1]=lay s3[0]= s3[1]=you s3[2]=ind s4[-1]=play s4[0]= s4[1]= s4[2]=Mind 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Do w[0]|w[1]=Do|you w[1]|w[2]=you|Mind pos[-1]|pos[0]=NN|VBP pos[0]|pos[1]=VBP|VBP pos[1]|pos[2]=VBP|VBP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=you w[1..4]=Mind w[1..4]=by w[1..4]=Changing +song w[-2]=play w[-1]=Do w[0]=you w[1]=Mind w[2]=by wl[-2]=play wl[-1]=do wl[0]=you wl[1]=mind wl[2]=by pos[-2]=NN pos[-1]=VBP pos[0]=VBP pos[1]=VBP pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=UL shape[0]=LLL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=D p1[0]=y p1[1]=M p1[2]=b p2[-2]=pl p2[-1]=Do p2[0]=yo p2[1]=Mi p2[2]=by p3[-2]=pla p3[-1]= p3[0]=you p3[1]=Min p3[2]= p4[-2]=play p4[-1]= p4[0]= p4[1]=Mind p4[2]= s1[-2]=y s1[-1]=o s1[0]=u s1[1]=d s1[2]=y s2[-2]=ay s2[-1]=Do s2[0]=ou s2[1]=nd s2[2]=by s3[-2]=lay s3[-1]= s3[0]=you s3[1]=ind s3[2]= s4[-2]=play s4[-1]= s4[0]= s4[1]=Mind s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Do w[-1]|w[0]=Do|you w[0]|w[1]=you|Mind w[1]|w[2]=Mind|by pos[-2]|pos[-1]=NN|VBP pos[-1]|pos[0]=VBP|VBP pos[0]|pos[1]=VBP|VBP pos[1]|pos[2]=VBP|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Do w[1..4]=Mind w[1..4]=by w[1..4]=Changing w[1..4]=Faces +song w[-2]=Do w[-1]=you w[0]=Mind w[1]=by w[2]=Changing wl[-2]=do wl[-1]=you wl[0]=mind wl[1]=by wl[2]=changing pos[-2]=VBP pos[-1]=VBP pos[0]=VBP pos[1]=IN pos[2]=VBG chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=UL shape[-1]=LLL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=D p1[-1]=y p1[0]=M p1[1]=b p1[2]=C p2[-2]=Do p2[-1]=yo p2[0]=Mi p2[1]=by p2[2]=Ch p3[-2]= p3[-1]=you p3[0]=Min p3[1]= p3[2]=Cha p4[-2]= p4[-1]= p4[0]=Mind p4[1]= p4[2]=Chan s1[-2]=o s1[-1]=u s1[0]=d s1[1]=y s1[2]=g s2[-2]=Do s2[-1]=ou s2[0]=nd s2[1]=by s2[2]=ng s3[-2]= s3[-1]=you s3[0]=ind s3[1]= s3[2]=ing s4[-2]= s4[-1]= s4[0]=Mind s4[1]= s4[2]=ging 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Do|you w[-1]|w[0]=you|Mind w[0]|w[1]=Mind|by w[1]|w[2]=by|Changing pos[-2]|pos[-1]=VBP|VBP pos[-1]|pos[0]=VBP|VBP pos[0]|pos[1]=VBP|IN pos[1]|pos[2]=IN|VBG chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Do w[-4..-1]=you w[1..4]=by w[1..4]=Changing w[1..4]=Faces +O w[-2]=you w[-1]=Mind w[0]=by w[1]=Changing w[2]=Faces wl[-2]=you wl[-1]=mind wl[0]=by wl[1]=changing wl[2]=faces pos[-2]=VBP pos[-1]=VBP pos[0]=IN pos[1]=VBG pos[2]=VBG chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=y p1[-1]=M p1[0]=b p1[1]=C p1[2]=F p2[-2]=yo p2[-1]=Mi p2[0]=by p2[1]=Ch p2[2]=Fa p3[-2]=you p3[-1]=Min p3[0]= p3[1]=Cha p3[2]=Fac p4[-2]= p4[-1]=Mind p4[0]= p4[1]=Chan p4[2]=Face s1[-2]=u s1[-1]=d s1[0]=y s1[1]=g s1[2]=s s2[-2]=ou s2[-1]=nd s2[0]=by s2[1]=ng s2[2]=es s3[-2]=you s3[-1]=ind s3[0]= s3[1]=ing s3[2]=ces s4[-2]= s4[-1]=Mind s4[0]= s4[1]=ging s4[2]=aces 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|Mind w[-1]|w[0]=Mind|by w[0]|w[1]=by|Changing w[1]|w[2]=Changing|Faces pos[-2]|pos[-1]=VBP|VBP pos[-1]|pos[0]=VBP|IN pos[0]|pos[1]=IN|VBG pos[1]|pos[2]=VBG|VBG chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Do w[-4..-1]=you w[-4..-1]=Mind w[1..4]=Changing w[1..4]=Faces +artist w[-2]=Mind w[-1]=by w[0]=Changing w[1]=Faces wl[-2]=mind wl[-1]=by wl[0]=changing wl[1]=faces pos[-2]=VBP pos[-1]=IN pos[0]=VBG pos[1]=VBG chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLLLL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=M p1[-1]=b p1[0]=C p1[1]=F p2[-2]=Mi p2[-1]=by p2[0]=Ch p2[1]=Fa p3[-2]=Min p3[-1]= p3[0]=Cha p3[1]=Fac p4[-2]=Mind p4[-1]= p4[0]=Chan p4[1]=Face s1[-2]=d s1[-1]=y s1[0]=g s1[1]=s s2[-2]=nd s2[-1]=by s2[0]=ng s2[1]=es s3[-2]=ind s3[-1]= s3[0]=ing s3[1]=ces s4[-2]=Mind s4[-1]= s4[0]=ging s4[1]=aces 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Mind|by w[-1]|w[0]=by|Changing w[0]|w[1]=Changing|Faces pos[-2]|pos[-1]=VBP|IN pos[-1]|pos[0]=IN|VBG pos[0]|pos[1]=VBG|VBG chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Do w[-4..-1]=you w[-4..-1]=Mind w[-4..-1]=by w[1..4]=Faces +artist w[-2]=by w[-1]=Changing w[0]=Faces wl[-2]=by wl[-1]=changing wl[0]=faces pos[-2]=IN pos[-1]=VBG pos[0]=VBG chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=C p1[0]=F p2[-2]=by p2[-1]=Ch p2[0]=Fa p3[-2]= p3[-1]=Cha p3[0]=Fac p4[-2]= p4[-1]=Chan p4[0]=Face s1[-2]=y s1[-1]=g s1[0]=s s2[-2]=by s2[-1]=ng s2[0]=es s3[-2]= s3[-1]=ing s3[0]=ces s4[-2]= s4[-1]=ging s4[0]=aces 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Changing w[-1]|w[0]=Changing|Faces pos[-2]|pos[-1]=IN|VBG pos[-1]|pos[0]=VBG|VBG chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=you w[-4..-1]=Mind w[-4..-1]=by w[-4..-1]=Changing __EOS__ + +O w[0]=put w[1]=on w[2]=some wl[0]=put wl[1]=on wl[2]=some pos[0]=VBN pos[1]=RP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=o p1[2]=s p2[0]=pu p2[1]=on p2[2]=so p3[0]=put p3[1]= p3[2]=som p4[0]= p4[1]= p4[2]=some s1[0]=t s1[1]=n s1[2]=e s2[0]=ut s2[1]=on s2[2]=me s3[0]=put s3[1]= s3[2]=ome s4[0]= s4[1]= s4[2]=some 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|on w[1]|w[2]=on|some pos[0]|pos[1]=VBN|RP pos[1]|pos[2]=RP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=some w[1..4]=music __BOS__ +O w[-1]=put w[0]=on w[1]=some w[2]=music wl[-1]=put wl[0]=on wl[1]=some wl[2]=music pos[-1]=VBN pos[0]=RP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=o p1[1]=s p1[2]=m p2[-1]=pu p2[0]=on p2[1]=so p2[2]=mu p3[-1]=put p3[0]= p3[1]=som p3[2]=mus p4[-1]= p4[0]= p4[1]=some p4[2]=musi s1[-1]=t s1[0]=n s1[1]=e s1[2]=c s2[-1]=ut s2[0]=on s2[1]=me s2[2]=ic s3[-1]=put s3[0]= s3[1]=ome s3[2]=sic s4[-1]= s4[0]= s4[1]=some s4[2]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|on w[0]|w[1]=on|some w[1]|w[2]=some|music pos[-1]|pos[0]=VBN|RP pos[0]|pos[1]=RP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=some w[1..4]=music +O w[-2]=put w[-1]=on w[0]=some w[1]=music wl[-2]=put wl[-1]=on wl[0]=some wl[1]=music pos[-2]=VBN pos[-1]=RP pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=o p1[0]=s p1[1]=m p2[-2]=pu p2[-1]=on p2[0]=so p2[1]=mu p3[-2]=put p3[-1]= p3[0]=som p3[1]=mus p4[-2]= p4[-1]= p4[0]=some p4[1]=musi s1[-2]=t s1[-1]=n s1[0]=e s1[1]=c s2[-2]=ut s2[-1]=on s2[0]=me s2[1]=ic s3[-2]=put s3[-1]= s3[0]=ome s3[1]=sic s4[-2]= s4[-1]= s4[0]=some s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=put|on w[-1]|w[0]=on|some w[0]|w[1]=some|music pos[-2]|pos[-1]=VBN|RP pos[-1]|pos[0]=RP|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=on w[1..4]=music +O w[-2]=on w[-1]=some w[0]=music wl[-2]=on wl[-1]=some wl[0]=music pos[-2]=RP pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=s p1[0]=m p2[-2]=on p2[-1]=so p2[0]=mu p3[-2]= p3[-1]=som p3[0]=mus p4[-2]= p4[-1]=some p4[0]=musi s1[-2]=n s1[-1]=e s1[0]=c s2[-2]=on s2[-1]=me s2[0]=ic s3[-2]= s3[-1]=ome s3[0]=sic s4[-2]= s4[-1]=some s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=on|some w[-1]|w[0]=some|music pos[-2]|pos[-1]=RP|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=on w[-4..-1]=some __EOS__ + +O w[0]=playing w[1]=Mozart w[2]=song wl[0]=playing wl[1]=mozart wl[2]=song pos[0]=VBG pos[1]=NNP pos[2]=NN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLLLLL shape[1]=ULLLLL shape[2]=LLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=M p1[2]=s p2[0]=pl p2[1]=Mo p2[2]=so p3[0]=pla p3[1]=Moz p3[2]=son p4[0]=play p4[1]=Moza p4[2]=song s1[0]=g s1[1]=t s1[2]=g s2[0]=ng s2[1]=rt s2[2]=ng s3[0]=ing s3[1]=art s3[2]=ong s4[0]=ying s4[1]=zart s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=playing|Mozart w[1]|w[2]=Mozart|song pos[0]|pos[1]=VBG|NNP pos[1]|pos[2]=NNP|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Mozart w[1..4]=song __BOS__ +artist w[-1]=playing w[0]=Mozart w[1]=song wl[-1]=playing wl[0]=mozart wl[1]=song pos[-1]=VBG pos[0]=NNP pos[1]=NN chk[-1]=O chk[0]=I chk[1]=O shape[-1]=LLLLLLL shape[0]=ULLLLL shape[1]=LLLL shaped[-1]=L shaped[0]=UL shaped[1]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter p1[-1]=p p1[0]=M p1[1]=s p2[-1]=pl p2[0]=Mo p2[1]=so p3[-1]=pla p3[0]=Moz p3[1]=son p4[-1]=play p4[0]=Moza p4[1]=song s1[-1]=g s1[0]=t s1[1]=g s2[-1]=ng s2[0]=rt s2[1]=ng s3[-1]=ing s3[0]=art s3[1]=ong s4[-1]=ying s4[0]=zart s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=yes cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=playing|Mozart w[0]|w[1]=Mozart|song pos[-1]|pos[0]=VBG|NNP pos[0]|pos[1]=NNP|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=playing w[1..4]=song +O w[-2]=playing w[-1]=Mozart w[0]=song wl[-2]=playing wl[-1]=mozart wl[0]=song pos[-2]=VBG pos[-1]=NNP pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLLLLL shape[-1]=ULLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter p1[-2]=p p1[-1]=M p1[0]=s p2[-2]=pl p2[-1]=Mo p2[0]=so p3[-2]=pla p3[-1]=Moz p3[0]=son p4[-2]=play p4[-1]=Moza p4[0]=song s1[-2]=g s1[-1]=t s1[0]=g s2[-2]=ng s2[-1]=rt s2[0]=ng s3[-2]=ing s3[-1]=art s3[0]=ong s4[-2]=ying s4[-1]=zart s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=playing|Mozart w[-1]|w[0]=Mozart|song pos[-2]|pos[-1]=VBG|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=playing w[-4..-1]=Mozart __EOS__ + +O w[0]=play w[1]=The w[2]=Antlers wl[0]=play wl[1]=the wl[2]=antlers pos[0]=VB pos[1]=DT pos[2]=DT chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=T p1[2]=A p2[0]=pl p2[1]=Th p2[2]=An p3[0]=pla p3[1]=The p3[2]=Ant p4[0]=play p4[1]= p4[2]=Antl s1[0]=y s1[1]=e s1[2]=s s2[0]=ay s2[1]=he s2[2]=rs s3[0]=lay s3[1]=The s3[2]=ers s4[0]=play s4[1]= s4[2]=lers 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|The w[1]|w[2]=The|Antlers pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|DT chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=The w[1..4]=Antlers __BOS__ +artist w[-1]=play w[0]=The w[1]=Antlers wl[-1]=play wl[0]=the wl[1]=antlers pos[-1]=VB pos[0]=DT pos[1]=DT chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=T p1[1]=A p2[-1]=pl p2[0]=Th p2[1]=An p3[-1]=pla p3[0]=The p3[1]=Ant p4[-1]=play p4[0]= p4[1]=Antl s1[-1]=y s1[0]=e s1[1]=s s2[-1]=ay s2[0]=he s2[1]=rs s3[-1]=lay s3[0]=The s3[1]=ers s4[-1]=play s4[0]= s4[1]=lers 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|The w[0]|w[1]=The|Antlers pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|DT chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Antlers +artist w[-2]=play w[-1]=The w[0]=Antlers wl[-2]=play wl[-1]=the wl[0]=antlers pos[-2]=VB pos[-1]=DT pos[0]=DT chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=T p1[0]=A p2[-2]=pl p2[-1]=Th p2[0]=An p3[-2]=pla p3[-1]=The p3[0]=Ant p4[-2]=play p4[-1]= p4[0]=Antl s1[-2]=y s1[-1]=e s1[0]=s s2[-2]=ay s2[-1]=he s2[0]=rs s3[-2]=lay s3[-1]=The s3[0]=ers s4[-2]=play s4[-1]= s4[0]=lers 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|The w[-1]|w[0]=The|Antlers pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=The __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=Adele __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=Adele wl[-1]=can wl[0]=you wl[1]=play wl[2]=adele pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=c p1[0]=y p1[1]=p p1[2]=A p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=Ad p3[-1]=can p3[0]=you p3[1]=pla p3[2]=Ade p4[-1]= p4[0]= p4[1]=play p4[2]=Adel s1[-1]=n s1[0]=u s1[1]=y s1[2]=e s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=le s3[-1]=can s3[0]=you s3[1]=lay s3[2]=ele s4[-1]= s4[0]= s4[1]=play s4[2]=dele 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|Adele pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[1..4]=play w[1..4]=Adele +O w[-2]=can w[-1]=you w[0]=play w[1]=Adele wl[-2]=can wl[-1]=you wl[0]=play wl[1]=adele pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=c p1[-1]=y p1[0]=p p1[1]=A p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=Ad p3[-2]=can p3[-1]=you p3[0]=pla p3[1]=Ade p4[-2]= p4[-1]= p4[0]=play p4[1]=Adel s1[-2]=n s1[-1]=u s1[0]=y s1[1]=e s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=le s3[-2]=can s3[-1]=you s3[0]=lay s3[1]=ele s4[-2]= s4[-1]= s4[0]=play s4[1]=dele 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|Adele pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=you w[1..4]=Adele +artist w[-2]=you w[-1]=play w[0]=Adele wl[-2]=you wl[-1]=play wl[0]=adele pos[-2]=PRP pos[-1]=VB pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=y p1[-1]=p p1[0]=A p2[-2]=yo p2[-1]=pl p2[0]=Ad p3[-2]=you p3[-1]=pla p3[0]=Ade p4[-2]= p4[-1]=play p4[0]=Adel s1[-2]=u s1[-1]=y s1[0]=e s2[-2]=ou s2[-1]=ay s2[0]=le s3[-2]=you s3[-1]=lay s3[0]=ele s4[-2]= s4[-1]=play s4[0]=dele 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|Adele pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play __EOS__ + +O w[0]=play w[1]=Blackbird w[2]=from wl[0]=play wl[1]=blackbird wl[2]=from pos[0]=VBP pos[1]=NNP pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLLL shape[2]=LLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=B p1[2]=f p2[0]=pl p2[1]=Bl p2[2]=fr p3[0]=pla p3[1]=Bla p3[2]=fro p4[0]=play p4[1]=Blac p4[2]=from s1[0]=y s1[1]=d s1[2]=m s2[0]=ay s2[1]=rd s2[2]=om s3[0]=lay s3[1]=ird s3[2]=rom s4[0]=play s4[1]=bird s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Blackbird w[1]|w[2]=Blackbird|from pos[0]|pos[1]=VBP|NNP pos[1]|pos[2]=NNP|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Blackbird w[1..4]=from w[1..4]=SD w[1..4]=card __BOS__ +song w[-1]=play w[0]=Blackbird w[1]=from w[2]=SD wl[-1]=play wl[0]=blackbird wl[1]=from wl[2]=sd pos[-1]=VBP pos[0]=NNP pos[1]=IN pos[2]=NN chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=ULLLLLLLL shape[1]=LLLL shape[2]=UU shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=U type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllUpper p1[-1]=p p1[0]=B p1[1]=f p1[2]=S p2[-1]=pl p2[0]=Bl p2[1]=fr p2[2]=SD p3[-1]=pla p3[0]=Bla p3[1]=fro p3[2]= p4[-1]=play p4[0]=Blac p4[1]=from p4[2]= s1[-1]=y s1[0]=d s1[1]=m s1[2]=D s2[-1]=ay s2[0]=rd s2[1]=om s2[2]=SD s3[-1]=lay s3[0]=ird s3[1]=rom s3[2]= s4[-1]=play s4[0]=bird s4[1]=from s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Blackbird w[0]|w[1]=Blackbird|from w[1]|w[2]=from|SD pos[-1]|pos[0]=VBP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|U type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllUpper w[-4..-1]=play w[1..4]=from w[1..4]=SD w[1..4]=card +O w[-2]=play w[-1]=Blackbird w[0]=from w[1]=SD w[2]=card wl[-2]=play wl[-1]=blackbird wl[0]=from wl[1]=sd wl[2]=card pos[-2]=VBP pos[-1]=NNP pos[0]=IN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=ULLLLLLLL shape[0]=LLLL shape[1]=UU shape[2]=LLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=U shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllUpper type[2]=AllLetter p1[-2]=p p1[-1]=B p1[0]=f p1[1]=S p1[2]=c p2[-2]=pl p2[-1]=Bl p2[0]=fr p2[1]=SD p2[2]=ca p3[-2]=pla p3[-1]=Bla p3[0]=fro p3[1]= p3[2]=car p4[-2]=play p4[-1]=Blac p4[0]=from p4[1]= p4[2]=card s1[-2]=y s1[-1]=d s1[0]=m s1[1]=D s1[2]=d s2[-2]=ay s2[-1]=rd s2[0]=om s2[1]=SD s2[2]=rd s3[-2]=lay s3[-1]=ird s3[0]=rom s3[1]= s3[2]=ard s4[-2]=play s4[-1]=bird s4[0]=from s4[1]= s4[2]=card 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=yes au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Blackbird w[-1]|w[0]=Blackbird|from w[0]|w[1]=from|SD w[1]|w[2]=SD|card pos[-2]|pos[-1]=VBP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|AllLetter w[-4..-1]=play w[-4..-1]=Blackbird w[1..4]=SD w[1..4]=card +O w[-2]=Blackbird w[-1]=from w[0]=SD w[1]=card wl[-2]=blackbird wl[-1]=from wl[0]=sd wl[1]=card pos[-2]=NNP pos[-1]=IN pos[0]=NN pos[1]=NN chk[-2]=I chk[-1]=O chk[0]=O chk[1]=O shape[-2]=ULLLLLLLL shape[-1]=LLLL shape[0]=UU shape[1]=LLLL shaped[-2]=UL shaped[-1]=L shaped[0]=U shaped[1]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllUpper type[1]=AllLetter p1[-2]=B p1[-1]=f p1[0]=S p1[1]=c p2[-2]=Bl p2[-1]=fr p2[0]=SD p2[1]=ca p3[-2]=Bla p3[-1]=fro p3[0]= p3[1]=car p4[-2]=Blac p4[-1]=from p4[0]= p4[1]=card s1[-2]=d s1[-1]=m s1[0]=D s1[1]=d s2[-2]=rd s2[-1]=om s2[0]=SD s2[1]=rd s3[-2]=ird s3[-1]=rom s3[0]= s3[1]=ard s4[-2]=bird s4[-1]=from s4[0]= s4[1]=card 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=yes au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Blackbird|from w[-1]|w[0]=from|SD w[0]|w[1]=SD|card pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|AllLetter w[-4..-1]=play w[-4..-1]=Blackbird w[-4..-1]=from w[1..4]=card +O w[-2]=from w[-1]=SD w[0]=card wl[-2]=from wl[-1]=sd wl[0]=card pos[-2]=IN pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=UU shape[0]=LLLL shaped[-2]=L shaped[-1]=U shaped[0]=L type[-2]=AllLetter type[-1]=AllUpper type[0]=AllLetter p1[-2]=f p1[-1]=S p1[0]=c p2[-2]=fr p2[-1]=SD p2[0]=ca p3[-2]=fro p3[-1]= p3[0]=car p4[-2]=from p4[-1]= p4[0]=card s1[-2]=m s1[-1]=D s1[0]=d s2[-2]=om s2[-1]=SD s2[0]=rd s3[-2]=rom s3[-1]= s3[0]=ard s4[-2]=from s4[-1]= s4[0]=card 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=yes au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=no cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=from|SD w[-1]|w[0]=SD|card pos[-2]|pos[-1]=IN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|L type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|AllLetter w[-4..-1]=play w[-4..-1]=Blackbird w[-4..-1]=from w[-4..-1]=SD __EOS__ + +O w[0]=play w[1]=music w[2]=on wl[0]=play wl[1]=music wl[2]=on pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=o p2[0]=pl p2[1]=mu p2[2]=on p3[0]=pla p3[1]=mus p3[2]= p4[0]=play p4[1]=musi p4[2]= s1[0]=y s1[1]=c s1[2]=n s2[0]=ay s2[1]=ic s2[2]=on s3[0]=lay s3[1]=sic s3[2]= s4[0]=play s4[1]=usic s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|music w[1]|w[2]=music|on pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=music w[1..4]=on w[1..4]=Spotify __BOS__ +O w[-1]=play w[0]=music w[1]=on w[2]=Spotify wl[-1]=play wl[0]=music wl[1]=on wl[2]=spotify pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=m p1[1]=o p1[2]=S p2[-1]=pl p2[0]=mu p2[1]=on p2[2]=Sp p3[-1]=pla p3[0]=mus p3[1]= p3[2]=Spo p4[-1]=play p4[0]=musi p4[1]= p4[2]=Spot s1[-1]=y s1[0]=c s1[1]=n s1[2]=y s2[-1]=ay s2[0]=ic s2[1]=on s2[2]=fy s3[-1]=lay s3[0]=sic s3[1]= s3[2]=ify s4[-1]=play s4[0]=usic s4[1]= s4[2]=tify 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|music w[0]|w[1]=music|on w[1]|w[2]=on|Spotify pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=on w[1..4]=Spotify +O w[-2]=play w[-1]=music w[0]=on w[1]=Spotify wl[-2]=play wl[-1]=music wl[0]=on wl[1]=spotify pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=m p1[0]=o p1[1]=S p2[-2]=pl p2[-1]=mu p2[0]=on p2[1]=Sp p3[-2]=pla p3[-1]=mus p3[0]= p3[1]=Spo p4[-2]=play p4[-1]=musi p4[0]= p4[1]=Spot s1[-2]=y s1[-1]=c s1[0]=n s1[1]=y s2[-2]=ay s2[-1]=ic s2[0]=on s2[1]=fy s3[-2]=lay s3[-1]=sic s3[0]= s3[1]=ify s4[-2]=play s4[-1]=usic s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|music w[-1]|w[0]=music|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=music w[1..4]=Spotify +service w[-2]=music w[-1]=on w[0]=Spotify wl[-2]=music wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=m p1[-1]=o p1[0]=S p2[-2]=mu p2[-1]=on p2[0]=Sp p3[-2]=mus p3[-1]= p3[0]=Spo p4[-2]=musi p4[-1]= p4[0]=Spot s1[-2]=c s1[-1]=n s1[0]=y s2[-2]=ic s2[-1]=on s2[0]=fy s3[-2]=sic s3[-1]= s3[0]=ify s4[-2]=usic s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=music|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=music w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=One w[2]=Direction wl[0]=play wl[1]=one wl[2]=direction pos[0]=VB pos[1]=CD pos[2]=CD chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=O p1[2]=D p2[0]=pl p2[1]=On p2[2]=Di p3[0]=pla p3[1]=One p3[2]=Dir p4[0]=play p4[1]= p4[2]=Dire s1[0]=y s1[1]=e s1[2]=n s2[0]=ay s2[1]=ne s2[2]=on s3[0]=lay s3[1]=One s3[2]=ion s4[0]=play s4[1]= s4[2]=tion 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|One w[1]|w[2]=One|Direction pos[0]|pos[1]=VB|CD pos[1]|pos[2]=CD|CD chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=One w[1..4]=Direction __BOS__ +artist w[-1]=play w[0]=One w[1]=Direction wl[-1]=play wl[0]=one wl[1]=direction pos[-1]=VB pos[0]=CD pos[1]=CD chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=O p1[1]=D p2[-1]=pl p2[0]=On p2[1]=Di p3[-1]=pla p3[0]=One p3[1]=Dir p4[-1]=play p4[0]= p4[1]=Dire s1[-1]=y s1[0]=e s1[1]=n s2[-1]=ay s2[0]=ne s2[1]=on s3[-1]=lay s3[0]=One s3[1]=ion s4[-1]=play s4[0]= s4[1]=tion 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|One w[0]|w[1]=One|Direction pos[-1]|pos[0]=VB|CD pos[0]|pos[1]=CD|CD chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Direction +artist w[-2]=play w[-1]=One w[0]=Direction wl[-2]=play wl[-1]=one wl[0]=direction pos[-2]=VB pos[-1]=CD pos[0]=CD chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=O p1[0]=D p2[-2]=pl p2[-1]=On p2[0]=Di p3[-2]=pla p3[-1]=One p3[0]=Dir p4[-2]=play p4[-1]= p4[0]=Dire s1[-2]=y s1[-1]=e s1[0]=n s2[-2]=ay s2[-1]=ne s2[0]=on s3[-2]=lay s3[-1]=One s3[0]=ion s4[-2]=play s4[-1]= s4[0]=tion 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|One w[-1]|w[0]=One|Direction pos[-2]|pos[-1]=VB|CD pos[-1]|pos[0]=CD|CD chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=One __EOS__ + +O w[0]=I'd w[1]=like w[2]=to wl[0]=i'd wl[1]=like wl[2]=to pos[0]=PRP pos[1]=MD pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=U'L shape[1]=LLLL shape[2]=LL shaped[0]=U'L shaped[1]=L shaped[2]=L type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=l p1[2]=t p2[0]=I' p2[1]=li p2[2]=to p3[0]=I'd p3[1]=lik p3[2]= p4[0]= p4[1]=like p4[2]= s1[0]=d s1[1]=e s1[2]=o s2[0]='d s2[1]=ke s2[2]=to s3[0]=I'd s3[1]=ike s3[2]= s4[0]= s4[1]=like s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=I'd|like w[1]|w[2]=like|to pos[0]|pos[1]=PRP|MD pos[1]|pos[2]=MD|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=like w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I'd w[0]=like w[1]=to w[2]=listen wl[-1]=i'd wl[0]=like wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=MD pos[1]=VB pos[2]=TO chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U'L shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U'L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=l p1[1]=t p1[2]=l p2[-1]=I' p2[0]=li p2[1]=to p2[2]=li p3[-1]=I'd p3[0]=lik p3[1]= p3[2]=lis p4[-1]= p4[0]=like p4[1]= p4[2]=list s1[-1]=d s1[0]=e s1[1]=o s1[2]=n s2[-1]='d s2[0]=ke s2[1]=to s2[2]=en s3[-1]=I'd s3[0]=ike s3[1]= s3[2]=ten s4[-1]= s4[0]=like s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I'd|like w[0]|w[1]=like|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|MD pos[0]|pos[1]=MD|VB pos[1]|pos[2]=VB|TO chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U'L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=some +O w[-2]=I'd w[-1]=like w[0]=to w[1]=listen w[2]=to wl[-2]=i'd wl[-1]=like wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=MD pos[0]=VB pos[1]=TO pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U'L shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U'L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=l p1[0]=t p1[1]=l p1[2]=t p2[-2]=I' p2[-1]=li p2[0]=to p2[1]=li p2[2]=to p3[-2]=I'd p3[-1]=lik p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=like p4[0]= p4[1]=list p4[2]= s1[-2]=d s1[-1]=e s1[0]=o s1[1]=n s1[2]=o s2[-2]='d s2[-1]=ke s2[0]=to s2[1]=en s2[2]=to s3[-2]=I'd s3[-1]=ike s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=like s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I'd|like w[-1]|w[0]=like|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|MD pos[-1]|pos[0]=MD|VB pos[0]|pos[1]=VB|TO pos[1]|pos[2]=TO|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U'L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[1..4]=listen w[1..4]=to w[1..4]=some w[1..4]=music +O w[-2]=like w[-1]=to w[0]=listen w[1]=to w[2]=some wl[-2]=like wl[-1]=to wl[0]=listen wl[1]=to wl[2]=some pos[-2]=MD pos[-1]=VB pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=l p1[1]=t p1[2]=s p2[-2]=li p2[-1]=to p2[0]=li p2[1]=to p2[2]=so p3[-2]=lik p3[-1]= p3[0]=lis p3[1]= p3[2]=som p4[-2]=like p4[-1]= p4[0]=list p4[1]= p4[2]=some s1[-2]=e s1[-1]=o s1[0]=n s1[1]=o s1[2]=e s2[-2]=ke s2[-1]=to s2[0]=en s2[1]=to s2[2]=me s3[-2]=ike s3[-1]= s3[0]=ten s3[1]= s3[2]=ome s4[-2]=like s4[-1]= s4[0]=sten s4[1]= s4[2]=some 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=like|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|some pos[-2]|pos[-1]=MD|VB pos[-1]|pos[0]=VB|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[-4..-1]=to w[1..4]=to w[1..4]=some w[1..4]=music +O w[-2]=to w[-1]=listen w[0]=to w[1]=some w[2]=music wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=some wl[2]=music pos[-2]=VB pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=s p1[2]=m p2[-2]=to p2[-1]=li p2[0]=to p2[1]=so p2[2]=mu p3[-2]= p3[-1]=lis p3[0]= p3[1]=som p3[2]=mus p4[-2]= p4[-1]=list p4[0]= p4[1]=some p4[2]=musi s1[-2]=o s1[-1]=n s1[0]=o s1[1]=e s1[2]=c s2[-2]=to s2[-1]=en s2[0]=to s2[1]=me s2[2]=ic s3[-2]= s3[-1]=ten s3[0]= s3[1]=ome s3[2]=sic s4[-2]= s4[-1]=sten s4[0]= s4[1]=some s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|some w[1]|w[2]=some|music pos[-2]|pos[-1]=VB|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[-4..-1]=to w[-4..-1]=listen w[1..4]=some w[1..4]=music +O w[-2]=listen w[-1]=to w[0]=some w[1]=music wl[-2]=listen wl[-1]=to wl[0]=some wl[1]=music pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=l p1[-1]=t p1[0]=s p1[1]=m p2[-2]=li p2[-1]=to p2[0]=so p2[1]=mu p3[-2]=lis p3[-1]= p3[0]=som p3[1]=mus p4[-2]=list p4[-1]= p4[0]=some p4[1]=musi s1[-2]=n s1[-1]=o s1[0]=e s1[1]=c s2[-2]=en s2[-1]=to s2[0]=me s2[1]=ic s3[-2]=ten s3[-1]= s3[0]=ome s3[1]=sic s4[-2]=sten s4[-1]= s4[0]=some s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|some w[0]|w[1]=some|music pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=like w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=music +O w[-2]=to w[-1]=some w[0]=music wl[-2]=to wl[-1]=some wl[0]=music pos[-2]=VB pos[-1]=IN pos[0]=DT chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=s p1[0]=m p2[-2]=to p2[-1]=so p2[0]=mu p3[-2]= p3[-1]=som p3[0]=mus p4[-2]= p4[-1]=some p4[0]=musi s1[-2]=o s1[-1]=e s1[0]=c s2[-2]=to s2[-1]=me s2[0]=ic s3[-2]= s3[-1]=ome s3[0]=sic s4[-2]= s4[-1]=some s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|some w[-1]|w[0]=some|music pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=some __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=hear w[1..4]=Owner __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=hear wl[-1]=i wl[0]=want wl[1]=to wl[2]=hear pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=h p2[-1]= p2[0]=wa p2[1]=to p2[2]=he p3[-1]= p3[0]=wan p3[1]= p3[2]=hea p4[-1]= p4[0]=want p4[1]= p4[2]=hear s1[-1]=I s1[0]=t s1[1]=o s1[2]=r s2[-1]= s2[0]=nt s2[1]=to s2[2]=ar s3[-1]= s3[0]=ant s3[1]= s3[2]=ear s4[-1]= s4[0]=want s4[1]= s4[2]=hear 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|hear pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=hear w[1..4]=Owner w[1..4]=of +O w[-2]=I w[-1]=want w[0]=to w[1]=hear w[2]=Owner wl[-2]=i wl[-1]=want wl[0]=to wl[1]=hear wl[2]=owner pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shape[2]=ULLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=I p1[-1]=w p1[0]=t p1[1]=h p1[2]=O p2[-2]= p2[-1]=wa p2[0]=to p2[1]=he p2[2]=Ow p3[-2]= p3[-1]=wan p3[0]= p3[1]=hea p3[2]=Own p4[-2]= p4[-1]=want p4[0]= p4[1]=hear p4[2]=Owne s1[-2]=I s1[-1]=t s1[0]=o s1[1]=r s1[2]=r s2[-2]= s2[-1]=nt s2[0]=to s2[1]=ar s2[2]=er s3[-2]= s3[-1]=ant s3[0]= s3[1]=ear s3[2]=ner s4[-2]= s4[-1]=want s4[0]= s4[1]=hear s4[2]=wner 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|hear w[1]|w[2]=hear|Owner pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=I w[-4..-1]=want w[1..4]=hear w[1..4]=Owner w[1..4]=of w[1..4]=a +O w[-2]=want w[-1]=to w[0]=hear w[1]=Owner w[2]=of wl[-2]=want wl[-1]=to wl[0]=hear wl[1]=owner wl[2]=of pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shape[1]=ULLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=w p1[-1]=t p1[0]=h p1[1]=O p1[2]=o p2[-2]=wa p2[-1]=to p2[0]=he p2[1]=Ow p2[2]=of p3[-2]=wan p3[-1]= p3[0]=hea p3[1]=Own p3[2]= p4[-2]=want p4[-1]= p4[0]=hear p4[1]=Owne p4[2]= s1[-2]=t s1[-1]=o s1[0]=r s1[1]=r s1[2]=f s2[-2]=nt s2[-1]=to s2[0]=ar s2[1]=er s2[2]=of s3[-2]=ant s3[-1]= s3[0]=ear s3[1]=ner s3[2]= s4[-2]=want s4[-1]= s4[0]=hear s4[1]=wner s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|hear w[0]|w[1]=hear|Owner w[1]|w[2]=Owner|of pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=Owner w[1..4]=of w[1..4]=a w[1..4]=Lonely +song w[-2]=to w[-1]=hear w[0]=Owner w[1]=of w[2]=a wl[-2]=to wl[-1]=hear wl[0]=owner wl[1]=of wl[2]=a pos[-2]=TO pos[-1]=VB pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=LLLL shape[0]=ULLLL shape[1]=LL shape[2]=L shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=h p1[0]=O p1[1]=o p1[2]=a p2[-2]=to p2[-1]=he p2[0]=Ow p2[1]=of p2[2]= p3[-2]= p3[-1]=hea p3[0]=Own p3[1]= p3[2]= p4[-2]= p4[-1]=hear p4[0]=Owne p4[1]= p4[2]= s1[-2]=o s1[-1]=r s1[0]=r s1[1]=f s1[2]=a s2[-2]=to s2[-1]=ar s2[0]=er s2[1]=of s2[2]= s3[-2]= s3[-1]=ear s3[0]=ner s3[1]= s3[2]= s4[-2]= s4[-1]=hear s4[0]=wner s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|hear w[-1]|w[0]=hear|Owner w[0]|w[1]=Owner|of w[1]|w[2]=of|a pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=hear w[1..4]=of w[1..4]=a w[1..4]=Lonely w[1..4]=Heart +song w[-2]=hear w[-1]=Owner w[0]=of w[1]=a w[2]=Lonely wl[-2]=hear wl[-1]=owner wl[0]=of wl[1]=a wl[2]=lonely pos[-2]=VB pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=LL shape[1]=L shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=h p1[-1]=O p1[0]=o p1[1]=a p1[2]=L p2[-2]=he p2[-1]=Ow p2[0]=of p2[1]= p2[2]=Lo p3[-2]=hea p3[-1]=Own p3[0]= p3[1]= p3[2]=Lon p4[-2]=hear p4[-1]=Owne p4[0]= p4[1]= p4[2]=Lone s1[-2]=r s1[-1]=r s1[0]=f s1[1]=a s1[2]=y s2[-2]=ar s2[-1]=er s2[0]=of s2[1]= s2[2]=ly s3[-2]=ear s3[-1]=ner s3[0]= s3[1]= s3[2]=ely s4[-2]=hear s4[-1]=wner s4[0]= s4[1]= s4[2]=nely 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=hear|Owner w[-1]|w[0]=Owner|of w[0]|w[1]=of|a w[1]|w[2]=a|Lonely pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=want w[-4..-1]=to w[-4..-1]=hear w[-4..-1]=Owner w[1..4]=a w[1..4]=Lonely w[1..4]=Heart +song w[-2]=Owner w[-1]=of w[0]=a w[1]=Lonely w[2]=Heart wl[-2]=owner wl[-1]=of wl[0]=a wl[1]=lonely wl[2]=heart pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=L shape[1]=ULLLLL shape[2]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=O p1[-1]=o p1[0]=a p1[1]=L p1[2]=H p2[-2]=Ow p2[-1]=of p2[0]= p2[1]=Lo p2[2]=He p3[-2]=Own p3[-1]= p3[0]= p3[1]=Lon p3[2]=Hea p4[-2]=Owne p4[-1]= p4[0]= p4[1]=Lone p4[2]=Hear s1[-2]=r s1[-1]=f s1[0]=a s1[1]=y s1[2]=t s2[-2]=er s2[-1]=of s2[0]= s2[1]=ly s2[2]=rt s3[-2]=ner s3[-1]= s3[0]= s3[1]=ely s3[2]=art s4[-2]=wner s4[-1]= s4[0]= s4[1]=nely s4[2]=eart 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Owner|of w[-1]|w[0]=of|a w[0]|w[1]=a|Lonely w[1]|w[2]=Lonely|Heart pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=to w[-4..-1]=hear w[-4..-1]=Owner w[-4..-1]=of w[1..4]=Lonely w[1..4]=Heart +song w[-2]=of w[-1]=a w[0]=Lonely w[1]=Heart wl[-2]=of wl[-1]=a wl[0]=lonely wl[1]=heart pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LL shape[-1]=L shape[0]=ULLLLL shape[1]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=o p1[-1]=a p1[0]=L p1[1]=H p2[-2]=of p2[-1]= p2[0]=Lo p2[1]=He p3[-2]= p3[-1]= p3[0]=Lon p3[1]=Hea p4[-2]= p4[-1]= p4[0]=Lone p4[1]=Hear s1[-2]=f s1[-1]=a s1[0]=y s1[1]=t s2[-2]=of s2[-1]= s2[0]=ly s2[1]=rt s3[-2]= s3[-1]= s3[0]=ely s3[1]=art s4[-2]= s4[-1]= s4[0]=nely s4[1]=eart 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=of|a w[-1]|w[0]=a|Lonely w[0]|w[1]=Lonely|Heart pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=hear w[-4..-1]=Owner w[-4..-1]=of w[-4..-1]=a w[1..4]=Heart +song w[-2]=a w[-1]=Lonely w[0]=Heart wl[-2]=a wl[-1]=lonely wl[0]=heart pos[-2]=NN pos[-1]=NN pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=L shape[-1]=ULLLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=a p1[-1]=L p1[0]=H p2[-2]= p2[-1]=Lo p2[0]=He p3[-2]= p3[-1]=Lon p3[0]=Hea p4[-2]= p4[-1]=Lone p4[0]=Hear s1[-2]=a s1[-1]=y s1[0]=t s2[-2]= s2[-1]=ly s2[0]=rt s3[-2]= s3[-1]=ely s3[0]=art s4[-2]= s4[-1]=nely s4[0]=eart 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=a|Lonely w[-1]|w[0]=Lonely|Heart pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Owner w[-4..-1]=of w[-4..-1]=a w[-4..-1]=Lonely __EOS__ + +song w[0]=No w[1]=Scrubs w[2]=song wl[0]=no wl[1]=scrubs wl[2]=song pos[0]=DT pos[1]=DT pos[2]=NN chk[0]=I chk[1]=I chk[2]=O shape[0]=UL shape[1]=ULLLLL shape[2]=LLLL shaped[0]=UL shaped[1]=UL shaped[2]=L type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[0]=N p1[1]=S p1[2]=s p2[0]=No p2[1]=Sc p2[2]=so p3[0]= p3[1]=Scr p3[2]=son p4[0]= p4[1]=Scru p4[2]=song s1[0]=o s1[1]=s s1[2]=g s2[0]=No s2[1]=bs s2[2]=ng s3[0]= s3[1]=ubs s3[2]=ong s4[0]= s4[1]=rubs s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=No|Scrubs w[1]|w[2]=Scrubs|song pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Scrubs w[1..4]=song w[1..4]=play __BOS__ +song w[-1]=No w[0]=Scrubs w[1]=song w[2]=play wl[-1]=no wl[0]=scrubs wl[1]=song wl[2]=play pos[-1]=DT pos[0]=DT pos[1]=NN pos[2]=NN chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-1]=UL shape[0]=ULLLLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=N p1[0]=S p1[1]=s p1[2]=p p2[-1]=No p2[0]=Sc p2[1]=so p2[2]=pl p3[-1]= p3[0]=Scr p3[1]=son p3[2]=pla p4[-1]= p4[0]=Scru p4[1]=song p4[2]=play s1[-1]=o s1[0]=s s1[1]=g s1[2]=y s2[-1]=No s2[0]=bs s2[1]=ng s2[2]=ay s3[-1]= s3[0]=ubs s3[1]=ong s3[2]=lay s4[-1]= s4[0]=rubs s4[1]=song s4[2]=play 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=No|Scrubs w[0]|w[1]=Scrubs|song w[1]|w[2]=song|play pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=No w[1..4]=song w[1..4]=play +O w[-2]=No w[-1]=Scrubs w[0]=song w[1]=play wl[-2]=no wl[-1]=scrubs wl[0]=song wl[1]=play pos[-2]=DT pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O shape[-2]=UL shape[-1]=ULLLLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter p1[-2]=N p1[-1]=S p1[0]=s p1[1]=p p2[-2]=No p2[-1]=Sc p2[0]=so p2[1]=pl p3[-2]= p3[-1]=Scr p3[0]=son p3[1]=pla p4[-2]= p4[-1]=Scru p4[0]=song p4[1]=play s1[-2]=o s1[-1]=s s1[0]=g s1[1]=y s2[-2]=No s2[-1]=bs s2[0]=ng s2[1]=ay s3[-2]= s3[-1]=ubs s3[0]=ong s3[1]=lay s4[-2]= s4[-1]=rubs s4[0]=song s4[1]=play 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=No|Scrubs w[-1]|w[0]=Scrubs|song w[0]|w[1]=song|play pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=No w[-4..-1]=Scrubs w[1..4]=play +O w[-2]=Scrubs w[-1]=song w[0]=play wl[-2]=scrubs wl[-1]=song wl[0]=play pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=I chk[-1]=O chk[0]=O shape[-2]=ULLLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter p1[-2]=S p1[-1]=s p1[0]=p p2[-2]=Sc p2[-1]=so p2[0]=pl p3[-2]=Scr p3[-1]=son p3[0]=pla p4[-2]=Scru p4[-1]=song p4[0]=play s1[-2]=s s1[-1]=g s1[0]=y s2[-2]=bs s2[-1]=ng s2[0]=ay s3[-2]=ubs s3[-1]=ong s3[0]=lay s4[-2]=rubs s4[-1]=song s4[0]=play 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Scrubs|song w[-1]|w[0]=song|play pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=No w[-4..-1]=Scrubs w[-4..-1]=song __EOS__ + +O w[0]=play w[1]=me w[2]=some wl[0]=play wl[1]=me wl[2]=some pos[0]=VB pos[1]=PRP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=s p2[0]=pl p2[1]=me p2[2]=so p3[0]=pla p3[1]= p3[2]=som p4[0]=play p4[1]= p4[2]=some s1[0]=y s1[1]=e s1[2]=e s2[0]=ay s2[1]=me s2[2]=me s3[0]=lay s3[1]= s3[2]=ome s4[0]=play s4[1]= s4[2]=some 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|me w[1]|w[2]=me|some pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=me w[1..4]=some w[1..4]=jazz __BOS__ +O w[-1]=play w[0]=me w[1]=some w[2]=jazz wl[-1]=play wl[0]=me wl[1]=some wl[2]=jazz pos[-1]=VB pos[0]=PRP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=m p1[1]=s p1[2]=j p2[-1]=pl p2[0]=me p2[1]=so p2[2]=ja p3[-1]=pla p3[0]= p3[1]=som p3[2]=jaz p4[-1]=play p4[0]= p4[1]=some p4[2]=jazz s1[-1]=y s1[0]=e s1[1]=e s1[2]=z s2[-1]=ay s2[0]=me s2[1]=me s2[2]=zz s3[-1]=lay s3[0]= s3[1]=ome s3[2]=azz s4[-1]=play s4[0]= s4[1]=some s4[2]=jazz 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|me w[0]|w[1]=me|some w[1]|w[2]=some|jazz pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=some w[1..4]=jazz +O w[-2]=play w[-1]=me w[0]=some w[1]=jazz wl[-2]=play wl[-1]=me wl[0]=some wl[1]=jazz pos[-2]=VB pos[-1]=PRP pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=m p1[0]=s p1[1]=j p2[-2]=pl p2[-1]=me p2[0]=so p2[1]=ja p3[-2]=pla p3[-1]= p3[0]=som p3[1]=jaz p4[-2]=play p4[-1]= p4[0]=some p4[1]=jazz s1[-2]=y s1[-1]=e s1[0]=e s1[1]=z s2[-2]=ay s2[-1]=me s2[0]=me s2[1]=zz s3[-2]=lay s3[-1]= s3[0]=ome s3[1]=azz s4[-2]=play s4[-1]= s4[0]=some s4[1]=jazz 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|me w[-1]|w[0]=me|some w[0]|w[1]=some|jazz pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[1..4]=jazz +genre w[-2]=me w[-1]=some w[0]=jazz wl[-2]=me wl[-1]=some wl[0]=jazz pos[-2]=PRP pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=s p1[0]=j p2[-2]=me p2[-1]=so p2[0]=ja p3[-2]= p3[-1]=som p3[0]=jaz p4[-2]= p4[-1]=some p4[0]=jazz s1[-2]=e s1[-1]=e s1[0]=z s2[-2]=me s2[-1]=me s2[0]=zz s3[-2]= s3[-1]=ome s3[0]=azz s4[-2]= s4[-1]=some s4[0]=jazz 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=me|some w[-1]|w[0]=some|jazz pos[-2]|pos[-1]=PRP|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=Bleeding +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=Bleeding w[1..4]=Love +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=Bleeding wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=bleeding pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=B p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=Bl p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=Ble p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]=Blee s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=g s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=ng s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=ing s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]=ding 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|Bleeding pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=Bleeding w[1..4]=Love +O w[-2]=to w[-1]=listen w[0]=to w[1]=Bleeding w[2]=Love wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=bleeding wl[2]=love pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=ULLLLLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=t p1[-1]=l p1[0]=t p1[1]=B p1[2]=L p2[-2]=to p2[-1]=li p2[0]=to p2[1]=Bl p2[2]=Lo p3[-2]= p3[-1]=lis p3[0]= p3[1]=Ble p3[2]=Lov p4[-2]= p4[-1]=list p4[0]= p4[1]=Blee p4[2]=Love s1[-2]=o s1[-1]=n s1[0]=o s1[1]=g s1[2]=e s2[-2]=to s2[-1]=en s2[0]=to s2[1]=ng s2[2]=ve s3[-2]= s3[-1]=ten s3[0]= s3[1]=ing s3[2]=ove s4[-2]= s4[-1]=sten s4[0]= s4[1]=ding s4[2]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|Bleeding w[1]|w[2]=Bleeding|Love pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=Bleeding w[1..4]=Love +song w[-2]=listen w[-1]=to w[0]=Bleeding w[1]=Love wl[-2]=listen wl[-1]=to wl[0]=bleeding wl[1]=love pos[-2]=VB pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=ULLLLLLL shape[1]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=l p1[-1]=t p1[0]=B p1[1]=L p2[-2]=li p2[-1]=to p2[0]=Bl p2[1]=Lo p3[-2]=lis p3[-1]= p3[0]=Ble p3[1]=Lov p4[-2]=list p4[-1]= p4[0]=Blee p4[1]=Love s1[-2]=n s1[-1]=o s1[0]=g s1[1]=e s2[-2]=en s2[-1]=to s2[0]=ng s2[1]=ve s3[-2]=ten s3[-1]= s3[0]=ing s3[1]=ove s4[-2]=sten s4[-1]= s4[0]=ding s4[1]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|Bleeding w[0]|w[1]=Bleeding|Love pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=Love +song w[-2]=to w[-1]=Bleeding w[0]=Love wl[-2]=to wl[-1]=bleeding wl[0]=love pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLLLL shape[0]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=t p1[-1]=B p1[0]=L p2[-2]=to p2[-1]=Bl p2[0]=Lo p3[-2]= p3[-1]=Ble p3[0]=Lov p4[-2]= p4[-1]=Blee p4[0]=Love s1[-2]=o s1[-1]=g s1[0]=e s2[-2]=to s2[-1]=ng s2[0]=ve s3[-2]= s3[-1]=ing s3[0]=ove s4[-2]= s4[-1]=ding s4[0]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|Bleeding w[-1]|w[0]=Bleeding|Love pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Bleeding __EOS__ + +O w[0]=play w[1]=song w[2]=She's wl[0]=play wl[1]=song wl[2]=she's pos[0]=VBP pos[1]=NN pos[2]=PRP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULL'L shaped[0]=L shaped[1]=L shaped[2]=UL'L type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=S p2[0]=pl p2[1]=so p2[2]=Sh p3[0]=pla p3[1]=son p3[2]=She p4[0]=play p4[1]=song p4[2]=She' s1[0]=y s1[1]=g s1[2]=s s2[0]=ay s2[1]=ng s2[2]='s s3[0]=lay s3[1]=ong s3[2]=e's s4[0]=play s4[1]=song s4[2]=he's 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=yes w[0]|w[1]=play|song w[1]|w[2]=song|She's pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|PRP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL'L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=She's w[1..4]=Got w[1..4]=the __BOS__ +O w[-1]=play w[0]=song w[1]=She's w[2]=Got wl[-1]=play wl[0]=song wl[1]=she's wl[2]=got pos[-1]=VBP pos[0]=NN pos[1]=PRP pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULL'L shape[2]=ULL shaped[-1]=L shaped[0]=L shaped[1]=UL'L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=S p1[2]=G p2[-1]=pl p2[0]=so p2[1]=Sh p2[2]=Go p3[-1]=pla p3[0]=son p3[1]=She p3[2]=Got p4[-1]=play p4[0]=song p4[1]=She' p4[2]= s1[-1]=y s1[0]=g s1[1]=s s1[2]=t s2[-1]=ay s2[0]=ng s2[1]='s s2[2]=ot s3[-1]=lay s3[0]=ong s3[1]=e's s3[2]=Got s4[-1]=play s4[0]=song s4[1]=he's s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=yes cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|She's w[1]|w[2]=She's|Got pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|PRP pos[1]|pos[2]=PRP|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL'L shaped[1]|shaped[2]=UL'L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=She's w[1..4]=Got w[1..4]=the w[1..4]=Look +song w[-2]=play w[-1]=song w[0]=She's w[1]=Got w[2]=the wl[-2]=play wl[-1]=song wl[0]=she's wl[1]=got wl[2]=the pos[-2]=VBP pos[-1]=NN pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULL'L shape[1]=ULL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=UL'L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=s p1[0]=S p1[1]=G p1[2]=t p2[-2]=pl p2[-1]=so p2[0]=Sh p2[1]=Go p2[2]=th p3[-2]=pla p3[-1]=son p3[0]=She p3[1]=Got p3[2]=the p4[-2]=play p4[-1]=song p4[0]=She' p4[1]= p4[2]= s1[-2]=y s1[-1]=g s1[0]=s s1[1]=t s1[2]=e s2[-2]=ay s2[-1]=ng s2[0]='s s2[1]=ot s2[2]=he s3[-2]=lay s3[-1]=ong s3[0]=e's s3[1]=Got s3[2]=the s4[-2]=play s4[-1]=song s4[0]=he's s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=yes cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|She's w[0]|w[1]=She's|Got w[1]|w[2]=Got|the pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL'L shaped[0]|shaped[1]=UL'L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=song w[1..4]=Got w[1..4]=the w[1..4]=Look +song w[-2]=song w[-1]=She's w[0]=Got w[1]=the w[2]=Look wl[-2]=song wl[-1]=she's wl[0]=got wl[1]=the wl[2]=look pos[-2]=NN pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULL'L shape[0]=ULL shape[1]=LLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL'L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=S p1[0]=G p1[1]=t p1[2]=L p2[-2]=so p2[-1]=Sh p2[0]=Go p2[1]=th p2[2]=Lo p3[-2]=son p3[-1]=She p3[0]=Got p3[1]=the p3[2]=Loo p4[-2]=song p4[-1]=She' p4[0]= p4[1]= p4[2]=Look s1[-2]=g s1[-1]=s s1[0]=t s1[1]=e s1[2]=k s2[-2]=ng s2[-1]='s s2[0]=ot s2[1]=he s2[2]=ok s3[-2]=ong s3[-1]=e's s3[0]=Got s3[1]=the s3[2]=ook s4[-2]=song s4[-1]=he's s4[0]= s4[1]= s4[2]=Look 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|She's w[-1]|w[0]=She's|Got w[0]|w[1]=Got|the w[1]|w[2]=the|Look pos[-2]|pos[-1]=NN|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL'L shaped[-1]|shaped[0]=UL'L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=She's w[1..4]=the w[1..4]=Look +song w[-2]=She's w[-1]=Got w[0]=the w[1]=Look wl[-2]=she's wl[-1]=got wl[0]=the wl[1]=look pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=PRP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULL'L shape[-1]=ULL shape[0]=LLL shape[1]=ULLL shaped[-2]=UL'L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=S p1[-1]=G p1[0]=t p1[1]=L p2[-2]=Sh p2[-1]=Go p2[0]=th p2[1]=Lo p3[-2]=She p3[-1]=Got p3[0]=the p3[1]=Loo p4[-2]=She' p4[-1]= p4[0]= p4[1]=Look s1[-2]=s s1[-1]=t s1[0]=e s1[1]=k s2[-2]='s s2[-1]=ot s2[0]=he s2[1]=ok s3[-2]=e's s3[-1]=Got s3[0]=the s3[1]=ook s4[-2]=he's s4[-1]= s4[0]= s4[1]=Look 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=She's|Got w[-1]|w[0]=Got|the w[0]|w[1]=the|Look pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL'L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=She's w[-4..-1]=Got w[1..4]=Look +song w[-2]=Got w[-1]=the w[0]=Look wl[-2]=got wl[-1]=the wl[0]=look pos[-2]=PRP pos[-1]=PRP pos[0]=PRP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=LLL shape[0]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=G p1[-1]=t p1[0]=L p2[-2]=Go p2[-1]=th p2[0]=Lo p3[-2]=Got p3[-1]=the p3[0]=Loo p4[-2]= p4[-1]= p4[0]=Look s1[-2]=t s1[-1]=e s1[0]=k s2[-2]=ot s2[-1]=he s2[0]=ok s3[-2]=Got s3[-1]=the s3[0]=ook s4[-2]= s4[-1]= s4[0]=Look 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Got|the w[-1]|w[0]=the|Look pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=song w[-4..-1]=She's w[-4..-1]=Got w[-4..-1]=the __EOS__ + +O w[0]=play w[1]=a w[2]=song wl[0]=play wl[1]=a wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=s p2[0]=pl p2[1]= p2[2]=so p3[0]=pla p3[1]= p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=a s1[2]=g s2[0]=ay s2[1]= s2[2]=ng s3[0]=lay s3[1]= s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=song __BOS__ +O w[-1]=play w[0]=a w[1]=song wl[-1]=play wl[0]=a wl[1]=song pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=L shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=a p1[1]=s p2[-1]=pl p2[0]= p2[1]=so p3[-1]=pla p3[0]= p3[1]=son p4[-1]=play p4[0]= p4[1]=song s1[-1]=y s1[0]=a s1[1]=g s2[-1]=ay s2[0]= s2[1]=ng s3[-1]=lay s3[0]= s3[1]=ong s4[-1]=play s4[0]= s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|a w[0]|w[1]=a|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=song +O w[-2]=play w[-1]=a w[0]=song wl[-2]=play wl[-1]=a wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=a p1[0]=s p2[-2]=pl p2[-1]= p2[0]=so p3[-2]=pla p3[-1]= p3[0]=son p4[-2]=play p4[-1]= p4[0]=song s1[-2]=y s1[-1]=a s1[0]=g s2[-2]=ay s2[-1]= s2[0]=ng s3[-2]=lay s3[-1]= s3[0]=ong s4[-2]=play s4[-1]= s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a __EOS__ + +O w[0]=play w[1]=R&B wl[0]=play wl[1]=r&b pos[0]=VB pos[1]=NNP chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=U&U shaped[0]=L shaped[1]=U&U type[0]=AllLetter type[1]=AllUpperSymbol p1[0]=p p1[1]=R p2[0]=pl p2[1]=R& p3[0]=pla p3[1]=R&B p4[0]=play p4[1]= s1[0]=y s1[1]=B s2[0]=ay s2[1]=&B s3[0]=lay s3[1]=R&B s4[0]=play s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=no ca[0]=yes ca[1]=yes cd[0]=no cd[1]=yes cs[0]=no cs[1]=yes w[0]|w[1]=play|R&B pos[0]|pos[1]=VB|NNP chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|U&U type[0]|type[1]=AllLetter|AllUpperSymbol w[1..4]=R&B __BOS__ +genre w[-1]=play w[0]=R&B wl[-1]=play wl[0]=r&b pos[-1]=VB pos[0]=NNP chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=U&U shaped[-1]=L shaped[0]=U&U type[-1]=AllLetter type[0]=AllUpperSymbol p1[-1]=p p1[0]=R p2[-1]=pl p2[0]=R& p3[-1]=pla p3[0]=R&B p4[-1]=play p4[0]= s1[-1]=y s1[0]=B s2[-1]=ay s2[0]=&B s3[-1]=lay s3[0]=R&B s4[-1]=play s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=no ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=yes cs[-1]=no cs[0]=yes w[-1]|w[0]=play|R&B pos[-1]|pos[0]=VB|NNP chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|U&U type[-1]|type[0]=AllLetter|AllUpperSymbol w[-4..-1]=play __EOS__ + +O w[0]=play w[1]=Let w[2]=Her wl[0]=play wl[1]=let wl[2]=her pos[0]=VB pos[1]=VB pos[2]=VB chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=ULL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=L p1[2]=H p2[0]=pl p2[1]=Le p2[2]=He p3[0]=pla p3[1]=Let p3[2]=Her p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=t s1[2]=r s2[0]=ay s2[1]=et s2[2]=er s3[0]=lay s3[1]=Let s3[2]=Her s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Let w[1]|w[2]=Let|Her pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Let w[1..4]=Her w[1..4]=Go w[1..4]=by __BOS__ +song w[-1]=play w[0]=Let w[1]=Her w[2]=Go wl[-1]=play wl[0]=let wl[1]=her wl[2]=go pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=VB chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULL shape[1]=ULL shape[2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=L p1[1]=H p1[2]=G p2[-1]=pl p2[0]=Le p2[1]=He p2[2]=Go p3[-1]=pla p3[0]=Let p3[1]=Her p3[2]= p4[-1]=play p4[0]= p4[1]= p4[2]= s1[-1]=y s1[0]=t s1[1]=r s1[2]=o s2[-1]=ay s2[0]=et s2[1]=er s2[2]=Go s3[-1]=lay s3[0]=Let s3[1]=Her s3[2]= s4[-1]=play s4[0]= s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Let w[0]|w[1]=Let|Her w[1]|w[2]=Her|Go pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Her w[1..4]=Go w[1..4]=by w[1..4]=Passenger +song w[-2]=play w[-1]=Let w[0]=Her w[1]=Go w[2]=by wl[-2]=play wl[-1]=let wl[0]=her wl[1]=go wl[2]=by pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULL shape[0]=ULL shape[1]=UL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=L p1[0]=H p1[1]=G p1[2]=b p2[-2]=pl p2[-1]=Le p2[0]=He p2[1]=Go p2[2]=by p3[-2]=pla p3[-1]=Let p3[0]=Her p3[1]= p3[2]= p4[-2]=play p4[-1]= p4[0]= p4[1]= p4[2]= s1[-2]=y s1[-1]=t s1[0]=r s1[1]=o s1[2]=y s2[-2]=ay s2[-1]=et s2[0]=er s2[1]=Go s2[2]=by s3[-2]=lay s3[-1]=Let s3[0]=Her s3[1]= s3[2]= s4[-2]=play s4[-1]= s4[0]= s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Let w[-1]|w[0]=Let|Her w[0]|w[1]=Her|Go w[1]|w[2]=Go|by pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Let w[1..4]=Go w[1..4]=by w[1..4]=Passenger w[1..4]=song +song w[-2]=Let w[-1]=Her w[0]=Go w[1]=by w[2]=Passenger wl[-2]=let wl[-1]=her wl[0]=go wl[1]=by wl[2]=passenger pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULL shape[-1]=ULL shape[0]=UL shape[1]=LL shape[2]=ULLLLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=L p1[-1]=H p1[0]=G p1[1]=b p1[2]=P p2[-2]=Le p2[-1]=He p2[0]=Go p2[1]=by p2[2]=Pa p3[-2]=Let p3[-1]=Her p3[0]= p3[1]= p3[2]=Pas p4[-2]= p4[-1]= p4[0]= p4[1]= p4[2]=Pass s1[-2]=t s1[-1]=r s1[0]=o s1[1]=y s1[2]=r s2[-2]=et s2[-1]=er s2[0]=Go s2[1]=by s2[2]=er s3[-2]=Let s3[-1]=Her s3[0]= s3[1]= s3[2]=ger s4[-2]= s4[-1]= s4[0]= s4[1]= s4[2]=nger 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Let|Her w[-1]|w[0]=Her|Go w[0]|w[1]=Go|by w[1]|w[2]=by|Passenger pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Let w[-4..-1]=Her w[1..4]=by w[1..4]=Passenger w[1..4]=song w[1..4]=on +O w[-2]=Her w[-1]=Go w[0]=by w[1]=Passenger w[2]=song wl[-2]=her wl[-1]=go wl[0]=by wl[1]=passenger wl[2]=song pos[-2]=VB pos[-1]=VB pos[0]=IN pos[1]=NNP pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=O shape[-2]=ULL shape[-1]=UL shape[0]=LL shape[1]=ULLLLLLLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=H p1[-1]=G p1[0]=b p1[1]=P p1[2]=s p2[-2]=He p2[-1]=Go p2[0]=by p2[1]=Pa p2[2]=so p3[-2]=Her p3[-1]= p3[0]= p3[1]=Pas p3[2]=son p4[-2]= p4[-1]= p4[0]= p4[1]=Pass p4[2]=song s1[-2]=r s1[-1]=o s1[0]=y s1[1]=r s1[2]=g s2[-2]=er s2[-1]=Go s2[0]=by s2[1]=er s2[2]=ng s3[-2]=Her s3[-1]= s3[0]= s3[1]=ger s3[2]=ong s4[-2]= s4[-1]= s4[0]= s4[1]=nger s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Her|Go w[-1]|w[0]=Go|by w[0]|w[1]=by|Passenger w[1]|w[2]=Passenger|song pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Let w[-4..-1]=Her w[-4..-1]=Go w[1..4]=Passenger w[1..4]=song w[1..4]=on w[1..4]=Spotify +artist w[-2]=Go w[-1]=by w[0]=Passenger w[1]=song w[2]=on wl[-2]=go wl[-1]=by wl[0]=passenger wl[1]=song wl[2]=on pos[-2]=VB pos[-1]=IN pos[0]=NNP pos[1]=NN pos[2]=IN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-2]=UL shape[-1]=LL shape[0]=ULLLLLLLL shape[1]=LLLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=G p1[-1]=b p1[0]=P p1[1]=s p1[2]=o p2[-2]=Go p2[-1]=by p2[0]=Pa p2[1]=so p2[2]=on p3[-2]= p3[-1]= p3[0]=Pas p3[1]=son p3[2]= p4[-2]= p4[-1]= p4[0]=Pass p4[1]=song p4[2]= s1[-2]=o s1[-1]=y s1[0]=r s1[1]=g s1[2]=n s2[-2]=Go s2[-1]=by s2[0]=er s2[1]=ng s2[2]=on s3[-2]= s3[-1]= s3[0]=ger s3[1]=ong s3[2]= s4[-2]= s4[-1]= s4[0]=nger s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Go|by w[-1]|w[0]=by|Passenger w[0]|w[1]=Passenger|song w[1]|w[2]=song|on pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=Let w[-4..-1]=Her w[-4..-1]=Go w[-4..-1]=by w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=by w[-1]=Passenger w[0]=song w[1]=on w[2]=Spotify wl[-2]=by wl[-1]=passenger wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=IN pos[-1]=NNP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=ULLLLLLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=b p1[-1]=P p1[0]=s p1[1]=o p1[2]=S p2[-2]=by p2[-1]=Pa p2[0]=so p2[1]=on p2[2]=Sp p3[-2]= p3[-1]=Pas p3[0]=son p3[1]= p3[2]=Spo p4[-2]= p4[-1]=Pass p4[0]=song p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=r s1[0]=g s1[1]=n s1[2]=y s2[-2]=by s2[-1]=er s2[0]=ng s2[1]=on s2[2]=fy s3[-2]= s3[-1]=ger s3[0]=ong s3[1]= s3[2]=ify s4[-2]= s4[-1]=nger s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Passenger w[-1]|w[0]=Passenger|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Her w[-4..-1]=Go w[-4..-1]=by w[-4..-1]=Passenger w[1..4]=on w[1..4]=Spotify +O w[-2]=Passenger w[-1]=song w[0]=on w[1]=Spotify wl[-2]=passenger wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLLLLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=P p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Pa p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=Pas p3[-1]=son p3[0]= p3[1]=Spo p4[-2]=Pass p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=r s1[-1]=g s1[0]=n s1[1]=y s2[-2]=er s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]=ger s3[-1]=ong s3[0]= s3[1]=ify s4[-2]=nger s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Passenger|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=Go w[-4..-1]=by w[-4..-1]=Passenger w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Passenger w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=Ariana +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=Ariana w[1..4]=Grande +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=Ariana wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=ariana pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=A p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=Ar p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=Ari p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]=Aria s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=a s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=na s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=ana s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]=iana 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|Ariana pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=Ariana w[1..4]=Grande +O w[-2]=to w[-1]=listen w[0]=to w[1]=Ariana w[2]=Grande wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=ariana wl[2]=grande pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=ULLLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=t p1[-1]=l p1[0]=t p1[1]=A p1[2]=G p2[-2]=to p2[-1]=li p2[0]=to p2[1]=Ar p2[2]=Gr p3[-2]= p3[-1]=lis p3[0]= p3[1]=Ari p3[2]=Gra p4[-2]= p4[-1]=list p4[0]= p4[1]=Aria p4[2]=Gran s1[-2]=o s1[-1]=n s1[0]=o s1[1]=a s1[2]=e s2[-2]=to s2[-1]=en s2[0]=to s2[1]=na s2[2]=de s3[-2]= s3[-1]=ten s3[0]= s3[1]=ana s3[2]=nde s4[-2]= s4[-1]=sten s4[0]= s4[1]=iana s4[2]=ande 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|Ariana w[1]|w[2]=Ariana|Grande pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=Ariana w[1..4]=Grande +artist w[-2]=listen w[-1]=to w[0]=Ariana w[1]=Grande wl[-2]=listen wl[-1]=to wl[0]=ariana wl[1]=grande pos[-2]=VB pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=l p1[-1]=t p1[0]=A p1[1]=G p2[-2]=li p2[-1]=to p2[0]=Ar p2[1]=Gr p3[-2]=lis p3[-1]= p3[0]=Ari p3[1]=Gra p4[-2]=list p4[-1]= p4[0]=Aria p4[1]=Gran s1[-2]=n s1[-1]=o s1[0]=a s1[1]=e s2[-2]=en s2[-1]=to s2[0]=na s2[1]=de s3[-2]=ten s3[-1]= s3[0]=ana s3[1]=nde s4[-2]=sten s4[-1]= s4[0]=iana s4[1]=ande 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|Ariana w[0]|w[1]=Ariana|Grande pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=Grande +artist w[-2]=to w[-1]=Ariana w[0]=Grande wl[-2]=to wl[-1]=ariana wl[0]=grande pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=t p1[-1]=A p1[0]=G p2[-2]=to p2[-1]=Ar p2[0]=Gr p3[-2]= p3[-1]=Ari p3[0]=Gra p4[-2]= p4[-1]=Aria p4[0]=Gran s1[-2]=o s1[-1]=a s1[0]=e s2[-2]=to s2[-1]=na s2[0]=de s3[-2]= s3[-1]=ana s3[0]=nde s4[-2]= s4[-1]=iana s4[0]=ande 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|Ariana w[-1]|w[0]=Ariana|Grande pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Ariana __EOS__ + +O w[0]=can w[1]=you w[2]=please wl[0]=can wl[1]=you wl[2]=please pos[0]=MD pos[1]=PRP pos[2]=UH chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=ple p4[0]= p4[1]= p4[2]=plea s1[0]=n s1[1]=u s1[2]=e s2[0]=an s2[1]=ou s2[2]=se s3[0]=can s3[1]=you s3[2]=ase s4[0]= s4[1]= s4[2]=ease 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|please pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|UH chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=please w[1..4]=play w[1..4]=a __BOS__ +O w[-1]=can w[0]=you w[1]=please w[2]=play wl[-1]=can wl[0]=you wl[1]=please wl[2]=play pos[-1]=MD pos[0]=PRP pos[1]=UH pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=p p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=pl p3[-1]=can p3[0]=you p3[1]=ple p3[2]=pla p4[-1]= p4[0]= p4[1]=plea p4[2]=play s1[-1]=n s1[0]=u s1[1]=e s1[2]=y s2[-1]=an s2[0]=ou s2[1]=se s2[2]=ay s3[-1]=can s3[0]=you s3[1]=ase s3[2]=lay s4[-1]= s4[0]= s4[1]=ease s4[2]=play 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|please w[1]|w[2]=please|play pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|UH pos[1]|pos[2]=UH|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=please w[1..4]=play w[1..4]=a w[1..4]=song +O w[-2]=can w[-1]=you w[0]=please w[1]=play w[2]=a wl[-2]=can wl[-1]=you wl[0]=please wl[1]=play wl[2]=a pos[-2]=MD pos[-1]=PRP pos[0]=UH pos[1]=VB pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLLLL shape[1]=LLLL shape[2]=L shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=p p1[2]=a p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=pl p2[2]= p3[-2]=can p3[-1]=you p3[0]=ple p3[1]=pla p3[2]= p4[-2]= p4[-1]= p4[0]=plea p4[1]=play p4[2]= s1[-2]=n s1[-1]=u s1[0]=e s1[1]=y s1[2]=a s2[-2]=an s2[-1]=ou s2[0]=se s2[1]=ay s2[2]= s3[-2]=can s3[-1]=you s3[0]=ase s3[1]=lay s3[2]= s4[-2]= s4[-1]= s4[0]=ease s4[1]=play s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|please w[0]|w[1]=please|play w[1]|w[2]=play|a pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|UH pos[0]|pos[1]=UH|VB pos[1]|pos[2]=VB|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=play w[1..4]=a w[1..4]=song w[1..4]=from +O w[-2]=you w[-1]=please w[0]=play w[1]=a w[2]=song wl[-2]=you wl[-1]=please wl[0]=play wl[1]=a wl[2]=song pos[-2]=PRP pos[-1]=UH pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLLLL shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=y p1[-1]=p p1[0]=p p1[1]=a p1[2]=s p2[-2]=yo p2[-1]=pl p2[0]=pl p2[1]= p2[2]=so p3[-2]=you p3[-1]=ple p3[0]=pla p3[1]= p3[2]=son p4[-2]= p4[-1]=plea p4[0]=play p4[1]= p4[2]=song s1[-2]=u s1[-1]=e s1[0]=y s1[1]=a s1[2]=g s2[-2]=ou s2[-1]=se s2[0]=ay s2[1]= s2[2]=ng s3[-2]=you s3[-1]=ase s3[0]=lay s3[1]= s3[2]=ong s4[-2]= s4[-1]=ease s4[0]=play s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|please w[-1]|w[0]=please|play w[0]|w[1]=play|a w[1]|w[2]=a|song pos[-2]|pos[-1]=PRP|UH pos[-1]|pos[0]=UH|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=please w[1..4]=a w[1..4]=song w[1..4]=from w[1..4]=my +O w[-2]=please w[-1]=play w[0]=a w[1]=song w[2]=from wl[-2]=please wl[-1]=play wl[0]=a wl[1]=song wl[2]=from pos[-2]=UH pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=L shape[1]=LLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=p p1[0]=a p1[1]=s p1[2]=f p2[-2]=pl p2[-1]=pl p2[0]= p2[1]=so p2[2]=fr p3[-2]=ple p3[-1]=pla p3[0]= p3[1]=son p3[2]=fro p4[-2]=plea p4[-1]=play p4[0]= p4[1]=song p4[2]=from s1[-2]=e s1[-1]=y s1[0]=a s1[1]=g s1[2]=m s2[-2]=se s2[-1]=ay s2[0]= s2[1]=ng s2[2]=om s3[-2]=ase s3[-1]=lay s3[0]= s3[1]=ong s3[2]=rom s4[-2]=ease s4[-1]=play s4[0]= s4[1]=song s4[2]=from 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=please|play w[-1]|w[0]=play|a w[0]|w[1]=a|song w[1]|w[2]=song|from pos[-2]|pos[-1]=UH|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=please w[-4..-1]=play w[1..4]=song w[1..4]=from w[1..4]=my w[1..4]=favourite +O w[-2]=play w[-1]=a w[0]=song w[1]=from w[2]=my wl[-2]=play wl[-1]=a wl[0]=song wl[1]=from wl[2]=my pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=s p1[1]=f p1[2]=m p2[-2]=pl p2[-1]= p2[0]=so p2[1]=fr p2[2]=my p3[-2]=pla p3[-1]= p3[0]=son p3[1]=fro p3[2]= p4[-2]=play p4[-1]= p4[0]=song p4[1]=from p4[2]= s1[-2]=y s1[-1]=a s1[0]=g s1[1]=m s1[2]=y s2[-2]=ay s2[-1]= s2[0]=ng s2[1]=om s2[2]=my s3[-2]=lay s3[-1]= s3[0]=ong s3[1]=rom s3[2]= s4[-2]=play s4[-1]= s4[0]=song s4[1]=from s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|song w[0]|w[1]=song|from w[1]|w[2]=from|my pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=you w[-4..-1]=please w[-4..-1]=play w[-4..-1]=a w[1..4]=from w[1..4]=my w[1..4]=favourite w[1..4]=playlist +O w[-2]=a w[-1]=song w[0]=from w[1]=my w[2]=favourite wl[-2]=a wl[-1]=song wl[0]=from wl[1]=my wl[2]=favourite pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=PRP$ pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=L shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=s p1[0]=f p1[1]=m p1[2]=f p2[-2]= p2[-1]=so p2[0]=fr p2[1]=my p2[2]=fa p3[-2]= p3[-1]=son p3[0]=fro p3[1]= p3[2]=fav p4[-2]= p4[-1]=song p4[0]=from p4[1]= p4[2]=favo s1[-2]=a s1[-1]=g s1[0]=m s1[1]=y s1[2]=e s2[-2]= s2[-1]=ng s2[0]=om s2[1]=my s2[2]=te s3[-2]= s3[-1]=ong s3[0]=rom s3[1]= s3[2]=ite s4[-2]= s4[-1]=song s4[0]=from s4[1]= s4[2]=rite 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=a|song w[-1]|w[0]=song|from w[0]|w[1]=from|my w[1]|w[2]=my|favourite pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=please w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[1..4]=my w[1..4]=favourite w[1..4]=playlist +O w[-2]=song w[-1]=from w[0]=my w[1]=favourite w[2]=playlist wl[-2]=song wl[-1]=from wl[0]=my wl[1]=favourite wl[2]=playlist pos[-2]=NN pos[-1]=IN pos[0]=PRP$ pos[1]=JJ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLLLL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=f p1[0]=m p1[1]=f p1[2]=p p2[-2]=so p2[-1]=fr p2[0]=my p2[1]=fa p2[2]=pl p3[-2]=son p3[-1]=fro p3[0]= p3[1]=fav p3[2]=pla p4[-2]=song p4[-1]=from p4[0]= p4[1]=favo p4[2]=play s1[-2]=g s1[-1]=m s1[0]=y s1[1]=e s1[2]=t s2[-2]=ng s2[-1]=om s2[0]=my s2[1]=te s2[2]=st s3[-2]=ong s3[-1]=rom s3[0]= s3[1]=ite s3[2]=ist s4[-2]=song s4[-1]=from s4[0]= s4[1]=rite s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|from w[-1]|w[0]=from|my w[0]|w[1]=my|favourite w[1]|w[2]=favourite|playlist pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|JJ pos[1]|pos[2]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[-4..-1]=from w[1..4]=favourite w[1..4]=playlist +playlist w[-2]=from w[-1]=my w[0]=favourite w[1]=playlist wl[-2]=from wl[-1]=my wl[0]=favourite wl[1]=playlist pos[-2]=IN pos[-1]=PRP$ pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLLLL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=f p1[-1]=m p1[0]=f p1[1]=p p2[-2]=fr p2[-1]=my p2[0]=fa p2[1]=pl p3[-2]=fro p3[-1]= p3[0]=fav p3[1]=pla p4[-2]=from p4[-1]= p4[0]=favo p4[1]=play s1[-2]=m s1[-1]=y s1[0]=e s1[1]=t s2[-2]=om s2[-1]=my s2[0]=te s2[1]=st s3[-2]=rom s3[-1]= s3[0]=ite s3[1]=ist s4[-2]=from s4[-1]= s4[0]=rite s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=from|my w[-1]|w[0]=my|favourite w[0]|w[1]=favourite|playlist pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=a w[-4..-1]=song w[-4..-1]=from w[-4..-1]=my w[1..4]=playlist +O w[-2]=my w[-1]=favourite w[0]=playlist wl[-2]=my wl[-1]=favourite wl[0]=playlist pos[-2]=PRP$ pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LL shape[-1]=LLLLLLLLL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=f p1[0]=p p2[-2]=my p2[-1]=fa p2[0]=pl p3[-2]= p3[-1]=fav p3[0]=pla p4[-2]= p4[-1]=favo p4[0]=play s1[-2]=y s1[-1]=e s1[0]=t s2[-2]=my s2[-1]=te s2[0]=st s3[-2]= s3[-1]=ite s3[0]=ist s4[-2]= s4[-1]=rite s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=my|favourite w[-1]|w[0]=favourite|playlist pos[-2]|pos[-1]=PRP$|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=song w[-4..-1]=from w[-4..-1]=my w[-4..-1]=favourite __EOS__ + +O w[0]=songs w[1]=by w[2]=Tom wl[0]=songs wl[1]=by wl[2]=tom pos[0]=NNS pos[1]=IN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLLL shape[1]=LL shape[2]=ULL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=s p1[1]=b p1[2]=T p2[0]=so p2[1]=by p2[2]=To p3[0]=son p3[1]= p3[2]=Tom p4[0]=song p4[1]= p4[2]= s1[0]=s s1[1]=y s1[2]=m s2[0]=gs s2[1]=by s2[2]=om s3[0]=ngs s3[1]= s3[2]=Tom s4[0]=ongs s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=songs|by w[1]|w[2]=by|Tom pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=by w[1..4]=Tom w[1..4]=Waits __BOS__ +O w[-1]=songs w[0]=by w[1]=Tom w[2]=Waits wl[-1]=songs wl[0]=by wl[1]=tom wl[2]=waits pos[-1]=NNS pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLLL shape[0]=LL shape[1]=ULL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=s p1[0]=b p1[1]=T p1[2]=W p2[-1]=so p2[0]=by p2[1]=To p2[2]=Wa p3[-1]=son p3[0]= p3[1]=Tom p3[2]=Wai p4[-1]=song p4[0]= p4[1]= p4[2]=Wait s1[-1]=s s1[0]=y s1[1]=m s1[2]=s s2[-1]=gs s2[0]=by s2[1]=om s2[2]=ts s3[-1]=ngs s3[0]= s3[1]=Tom s3[2]=its s4[-1]=ongs s4[0]= s4[1]= s4[2]=aits 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=songs|by w[0]|w[1]=by|Tom w[1]|w[2]=Tom|Waits pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=songs w[1..4]=Tom w[1..4]=Waits +artist w[-2]=songs w[-1]=by w[0]=Tom w[1]=Waits wl[-2]=songs wl[-1]=by wl[0]=tom wl[1]=waits pos[-2]=NNS pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULL shape[1]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=b p1[0]=T p1[1]=W p2[-2]=so p2[-1]=by p2[0]=To p2[1]=Wa p3[-2]=son p3[-1]= p3[0]=Tom p3[1]=Wai p4[-2]=song p4[-1]= p4[0]= p4[1]=Wait s1[-2]=s s1[-1]=y s1[0]=m s1[1]=s s2[-2]=gs s2[-1]=by s2[0]=om s2[1]=ts s3[-2]=ngs s3[-1]= s3[0]=Tom s3[1]=its s4[-2]=ongs s4[-1]= s4[0]= s4[1]=aits 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=songs|by w[-1]|w[0]=by|Tom w[0]|w[1]=Tom|Waits pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=songs w[-4..-1]=by w[1..4]=Waits +artist w[-2]=by w[-1]=Tom w[0]=Waits wl[-2]=by wl[-1]=tom wl[0]=waits pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=T p1[0]=W p2[-2]=by p2[-1]=To p2[0]=Wa p3[-2]= p3[-1]=Tom p3[0]=Wai p4[-2]= p4[-1]= p4[0]=Wait s1[-2]=y s1[-1]=m s1[0]=s s2[-2]=by s2[-1]=om s2[0]=ts s3[-2]= s3[-1]=Tom s3[0]=its s4[-2]= s4[-1]= s4[0]=aits 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Tom w[-1]|w[0]=Tom|Waits pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=songs w[-4..-1]=by w[-4..-1]=Tom __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=the +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=the w[1..4]=song +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=the wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=the pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=t p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=th p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=the p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]= s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=e s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=he s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=the s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|the pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=the w[1..4]=song w[1..4]=New +O w[-2]=to w[-1]=listen w[0]=to w[1]=the w[2]=song wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=the wl[2]=song pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=t p1[2]=s p2[-2]=to p2[-1]=li p2[0]=to p2[1]=th p2[2]=so p3[-2]= p3[-1]=lis p3[0]= p3[1]=the p3[2]=son p4[-2]= p4[-1]=list p4[0]= p4[1]= p4[2]=song s1[-2]=o s1[-1]=n s1[0]=o s1[1]=e s1[2]=g s2[-2]=to s2[-1]=en s2[0]=to s2[1]=he s2[2]=ng s3[-2]= s3[-1]=ten s3[0]= s3[1]=the s3[2]=ong s4[-2]= s4[-1]=sten s4[0]= s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|the w[1]|w[2]=the|song pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=the w[1..4]=song w[1..4]=New w[1..4]=York +O w[-2]=listen w[-1]=to w[0]=the w[1]=song w[2]=New wl[-2]=listen wl[-1]=to wl[0]=the wl[1]=song wl[2]=new pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=JJ pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=l p1[-1]=t p1[0]=t p1[1]=s p1[2]=N p2[-2]=li p2[-1]=to p2[0]=th p2[1]=so p2[2]=Ne p3[-2]=lis p3[-1]= p3[0]=the p3[1]=son p3[2]=New p4[-2]=list p4[-1]= p4[0]= p4[1]=song p4[2]= s1[-2]=n s1[-1]=o s1[0]=e s1[1]=g s1[2]=w s2[-2]=en s2[-1]=to s2[0]=he s2[1]=ng s2[2]=ew s3[-2]=ten s3[-1]= s3[0]=the s3[1]=ong s3[2]=New s4[-2]=sten s4[-1]= s4[0]= s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|the w[0]|w[1]=the|song w[1]|w[2]=song|New pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=song w[1..4]=New w[1..4]=York +O w[-2]=to w[-1]=the w[0]=song w[1]=New w[2]=York wl[-2]=to wl[-1]=the wl[0]=song wl[1]=new wl[2]=york pos[-2]=IN pos[-1]=DT pos[0]=JJ pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=LLL shape[0]=LLLL shape[1]=ULL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=t p1[-1]=t p1[0]=s p1[1]=N p1[2]=Y p2[-2]=to p2[-1]=th p2[0]=so p2[1]=Ne p2[2]=Yo p3[-2]= p3[-1]=the p3[0]=son p3[1]=New p3[2]=Yor p4[-2]= p4[-1]= p4[0]=song p4[1]= p4[2]=York s1[-2]=o s1[-1]=e s1[0]=g s1[1]=w s1[2]=k s2[-2]=to s2[-1]=he s2[0]=ng s2[1]=ew s2[2]=rk s3[-2]= s3[-1]=the s3[0]=ong s3[1]=New s3[2]=ork s4[-2]= s4[-1]= s4[0]=song s4[1]= s4[2]=York 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|song w[0]|w[1]=song|New w[1]|w[2]=New|York pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=the w[1..4]=New w[1..4]=York +song w[-2]=the w[-1]=song w[0]=New w[1]=York wl[-2]=the wl[-1]=song wl[0]=new wl[1]=york pos[-2]=DT pos[-1]=JJ pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULL shape[1]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=t p1[-1]=s p1[0]=N p1[1]=Y p2[-2]=th p2[-1]=so p2[0]=Ne p2[1]=Yo p3[-2]=the p3[-1]=son p3[0]=New p3[1]=Yor p4[-2]= p4[-1]=song p4[0]= p4[1]=York s1[-2]=e s1[-1]=g s1[0]=w s1[1]=k s2[-2]=he s2[-1]=ng s2[0]=ew s2[1]=rk s3[-2]=the s3[-1]=ong s3[0]=New s3[1]=ork s4[-2]= s4[-1]=song s4[0]= s4[1]=York 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|New w[0]|w[1]=New|York pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=the w[-4..-1]=song w[1..4]=York +song w[-2]=song w[-1]=New w[0]=York wl[-2]=song wl[-1]=new wl[0]=york pos[-2]=JJ pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=s p1[-1]=N p1[0]=Y p2[-2]=so p2[-1]=Ne p2[0]=Yo p3[-2]=son p3[-1]=New p3[0]=Yor p4[-2]=song p4[-1]= p4[0]=York s1[-2]=g s1[-1]=w s1[0]=k s2[-2]=ng s2[-1]=ew s2[0]=rk s3[-2]=ong s3[-1]=New s3[0]=ork s4[-2]=song s4[-1]= s4[0]=York 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|New w[-1]|w[0]=New|York pos[-2]|pos[-1]=JJ|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=to w[-4..-1]=the w[-4..-1]=song w[-4..-1]=New __EOS__ + +O w[0]=play w[1]=Abbey w[2]=Road wl[0]=play wl[1]=abbey wl[2]=road pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLL shape[2]=ULLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=A p1[2]=R p2[0]=pl p2[1]=Ab p2[2]=Ro p3[0]=pla p3[1]=Abb p3[2]=Roa p4[0]=play p4[1]=Abbe p4[2]=Road s1[0]=y s1[1]=y s1[2]=d s2[0]=ay s2[1]=ey s2[2]=ad s3[0]=lay s3[1]=bey s3[2]=oad s4[0]=play s4[1]=bbey s4[2]=Road 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Abbey w[1]|w[2]=Abbey|Road pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Abbey w[1..4]=Road w[1..4]=remastered w[1..4]=by __BOS__ +album w[-1]=play w[0]=Abbey w[1]=Road w[2]=remastered wl[-1]=play wl[0]=abbey wl[1]=road wl[2]=remastered pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=VBN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULLL shape[2]=LLLLLLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=A p1[1]=R p1[2]=r p2[-1]=pl p2[0]=Ab p2[1]=Ro p2[2]=re p3[-1]=pla p3[0]=Abb p3[1]=Roa p3[2]=rem p4[-1]=play p4[0]=Abbe p4[1]=Road p4[2]=rema s1[-1]=y s1[0]=y s1[1]=d s1[2]=d s2[-1]=ay s2[0]=ey s2[1]=ad s2[2]=ed s3[-1]=lay s3[0]=bey s3[1]=oad s3[2]=red s4[-1]=play s4[0]=bbey s4[1]=Road s4[2]=ered 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Abbey w[0]|w[1]=Abbey|Road w[1]|w[2]=Road|remastered pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|VBN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Road w[1..4]=remastered w[1..4]=by w[1..4]=The +album w[-2]=play w[-1]=Abbey w[0]=Road w[1]=remastered w[2]=by wl[-2]=play wl[-1]=abbey wl[0]=road wl[1]=remastered wl[2]=by pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=VBN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULLL shape[1]=LLLLLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=A p1[0]=R p1[1]=r p1[2]=b p2[-2]=pl p2[-1]=Ab p2[0]=Ro p2[1]=re p2[2]=by p3[-2]=pla p3[-1]=Abb p3[0]=Roa p3[1]=rem p3[2]= p4[-2]=play p4[-1]=Abbe p4[0]=Road p4[1]=rema p4[2]= s1[-2]=y s1[-1]=y s1[0]=d s1[1]=d s1[2]=y s2[-2]=ay s2[-1]=ey s2[0]=ad s2[1]=ed s2[2]=by s3[-2]=lay s3[-1]=bey s3[0]=oad s3[1]=red s3[2]= s4[-2]=play s4[-1]=bbey s4[0]=Road s4[1]=ered s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Abbey w[-1]|w[0]=Abbey|Road w[0]|w[1]=Road|remastered w[1]|w[2]=remastered|by pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|VBN pos[1]|pos[2]=VBN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Abbey w[1..4]=remastered w[1..4]=by w[1..4]=The w[1..4]=Beatles +O w[-2]=Abbey w[-1]=Road w[0]=remastered w[1]=by w[2]=The wl[-2]=abbey wl[-1]=road wl[0]=remastered wl[1]=by wl[2]=the pos[-2]=NNP pos[-1]=NNP pos[0]=VBN pos[1]=IN pos[2]=DT chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=ULLLL shape[-1]=ULLL shape[0]=LLLLLLLLLL shape[1]=LL shape[2]=ULL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=A p1[-1]=R p1[0]=r p1[1]=b p1[2]=T p2[-2]=Ab p2[-1]=Ro p2[0]=re p2[1]=by p2[2]=Th p3[-2]=Abb p3[-1]=Roa p3[0]=rem p3[1]= p3[2]=The p4[-2]=Abbe p4[-1]=Road p4[0]=rema p4[1]= p4[2]= s1[-2]=y s1[-1]=d s1[0]=d s1[1]=y s1[2]=e s2[-2]=ey s2[-1]=ad s2[0]=ed s2[1]=by s2[2]=he s3[-2]=bey s3[-1]=oad s3[0]=red s3[1]= s3[2]=The s4[-2]=bbey s4[-1]=Road s4[0]=ered s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Abbey|Road w[-1]|w[0]=Road|remastered w[0]|w[1]=remastered|by w[1]|w[2]=by|The pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|VBN pos[0]|pos[1]=VBN|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Abbey w[-4..-1]=Road w[1..4]=by w[1..4]=The w[1..4]=Beatles +O w[-2]=Road w[-1]=remastered w[0]=by w[1]=The w[2]=Beatles wl[-2]=road wl[-1]=remastered wl[0]=by wl[1]=the wl[2]=beatles pos[-2]=NNP pos[-1]=VBN pos[0]=IN pos[1]=DT pos[2]=DT chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=LLLLLLLLLL shape[0]=LL shape[1]=ULL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=R p1[-1]=r p1[0]=b p1[1]=T p1[2]=B p2[-2]=Ro p2[-1]=re p2[0]=by p2[1]=Th p2[2]=Be p3[-2]=Roa p3[-1]=rem p3[0]= p3[1]=The p3[2]=Bea p4[-2]=Road p4[-1]=rema p4[0]= p4[1]= p4[2]=Beat s1[-2]=d s1[-1]=d s1[0]=y s1[1]=e s1[2]=s s2[-2]=ad s2[-1]=ed s2[0]=by s2[1]=he s2[2]=es s3[-2]=oad s3[-1]=red s3[0]= s3[1]=The s3[2]=les s4[-2]=Road s4[-1]=ered s4[0]= s4[1]= s4[2]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Road|remastered w[-1]|w[0]=remastered|by w[0]|w[1]=by|The w[1]|w[2]=The|Beatles pos[-2]|pos[-1]=NNP|VBN pos[-1]|pos[0]=VBN|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Abbey w[-4..-1]=Road w[-4..-1]=remastered w[1..4]=The w[1..4]=Beatles +artist w[-2]=remastered w[-1]=by w[0]=The w[1]=Beatles wl[-2]=remastered wl[-1]=by wl[0]=the wl[1]=beatles pos[-2]=VBN pos[-1]=IN pos[0]=DT pos[1]=DT chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLLLLLL shape[-1]=LL shape[0]=ULL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=r p1[-1]=b p1[0]=T p1[1]=B p2[-2]=re p2[-1]=by p2[0]=Th p2[1]=Be p3[-2]=rem p3[-1]= p3[0]=The p3[1]=Bea p4[-2]=rema p4[-1]= p4[0]= p4[1]=Beat s1[-2]=d s1[-1]=y s1[0]=e s1[1]=s s2[-2]=ed s2[-1]=by s2[0]=he s2[1]=es s3[-2]=red s3[-1]= s3[0]=The s3[1]=les s4[-2]=ered s4[-1]= s4[0]= s4[1]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=remastered|by w[-1]|w[0]=by|The w[0]|w[1]=The|Beatles pos[-2]|pos[-1]=VBN|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Abbey w[-4..-1]=Road w[-4..-1]=remastered w[-4..-1]=by w[1..4]=Beatles +artist w[-2]=by w[-1]=The w[0]=Beatles wl[-2]=by wl[-1]=the wl[0]=beatles pos[-2]=IN pos[-1]=DT pos[0]=DT chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=T p1[0]=B p2[-2]=by p2[-1]=Th p2[0]=Be p3[-2]= p3[-1]=The p3[0]=Bea p4[-2]= p4[-1]= p4[0]=Beat s1[-2]=y s1[-1]=e s1[0]=s s2[-2]=by s2[-1]=he s2[0]=es s3[-2]= s3[-1]=The s3[0]=les s4[-2]= s4[-1]= s4[0]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|The w[-1]|w[0]=The|Beatles pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Road w[-4..-1]=remastered w[-4..-1]=by w[-4..-1]=The __EOS__ + +O w[0]=I'd w[1]=like w[2]=to wl[0]=i'd wl[1]=like wl[2]=to pos[0]=PRP pos[1]=MD pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=U'L shape[1]=LLLL shape[2]=LL shaped[0]=U'L shaped[1]=L shaped[2]=L type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=l p1[2]=t p2[0]=I' p2[1]=li p2[2]=to p3[0]=I'd p3[1]=lik p3[2]= p4[0]= p4[1]=like p4[2]= s1[0]=d s1[1]=e s1[2]=o s2[0]='d s2[1]=ke s2[2]=to s3[0]=I'd s3[1]=ike s3[2]= s4[0]= s4[1]=like s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=I'd|like w[1]|w[2]=like|to pos[0]|pos[1]=PRP|MD pos[1]|pos[2]=MD|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=like w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I'd w[0]=like w[1]=to w[2]=listen wl[-1]=i'd wl[0]=like wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=MD pos[1]=VB pos[2]=TO chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U'L shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U'L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=l p1[1]=t p1[2]=l p2[-1]=I' p2[0]=li p2[1]=to p2[2]=li p3[-1]=I'd p3[0]=lik p3[1]= p3[2]=lis p4[-1]= p4[0]=like p4[1]= p4[2]=list s1[-1]=d s1[0]=e s1[1]=o s1[2]=n s2[-1]='d s2[0]=ke s2[1]=to s2[2]=en s3[-1]=I'd s3[0]=ike s3[1]= s3[2]=ten s4[-1]= s4[0]=like s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I'd|like w[0]|w[1]=like|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|MD pos[0]|pos[1]=MD|VB pos[1]|pos[2]=VB|TO chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U'L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=classic +O w[-2]=I'd w[-1]=like w[0]=to w[1]=listen w[2]=to wl[-2]=i'd wl[-1]=like wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=MD pos[0]=VB pos[1]=TO pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U'L shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U'L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=l p1[0]=t p1[1]=l p1[2]=t p2[-2]=I' p2[-1]=li p2[0]=to p2[1]=li p2[2]=to p3[-2]=I'd p3[-1]=lik p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=like p4[0]= p4[1]=list p4[2]= s1[-2]=d s1[-1]=e s1[0]=o s1[1]=n s1[2]=o s2[-2]='d s2[-1]=ke s2[0]=to s2[1]=en s2[2]=to s3[-2]=I'd s3[-1]=ike s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=like s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I'd|like w[-1]|w[0]=like|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|MD pos[-1]|pos[0]=MD|VB pos[0]|pos[1]=VB|TO pos[1]|pos[2]=TO|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U'L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[1..4]=listen w[1..4]=to w[1..4]=classic w[1..4]=opera +O w[-2]=like w[-1]=to w[0]=listen w[1]=to w[2]=classic wl[-2]=like wl[-1]=to wl[0]=listen wl[1]=to wl[2]=classic pos[-2]=MD pos[-1]=VB pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=l p1[1]=t p1[2]=c p2[-2]=li p2[-1]=to p2[0]=li p2[1]=to p2[2]=cl p3[-2]=lik p3[-1]= p3[0]=lis p3[1]= p3[2]=cla p4[-2]=like p4[-1]= p4[0]=list p4[1]= p4[2]=clas s1[-2]=e s1[-1]=o s1[0]=n s1[1]=o s1[2]=c s2[-2]=ke s2[-1]=to s2[0]=en s2[1]=to s2[2]=ic s3[-2]=ike s3[-1]= s3[0]=ten s3[1]= s3[2]=sic s4[-2]=like s4[-1]= s4[0]=sten s4[1]= s4[2]=ssic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=like|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|classic pos[-2]|pos[-1]=MD|VB pos[-1]|pos[0]=VB|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[-4..-1]=to w[1..4]=to w[1..4]=classic w[1..4]=opera +O w[-2]=to w[-1]=listen w[0]=to w[1]=classic w[2]=opera wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=classic wl[2]=opera pos[-2]=VB pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLLLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=c p1[2]=o p2[-2]=to p2[-1]=li p2[0]=to p2[1]=cl p2[2]=op p3[-2]= p3[-1]=lis p3[0]= p3[1]=cla p3[2]=ope p4[-2]= p4[-1]=list p4[0]= p4[1]=clas p4[2]=oper s1[-2]=o s1[-1]=n s1[0]=o s1[1]=c s1[2]=a s2[-2]=to s2[-1]=en s2[0]=to s2[1]=ic s2[2]=ra s3[-2]= s3[-1]=ten s3[0]= s3[1]=sic s3[2]=era s4[-2]= s4[-1]=sten s4[0]= s4[1]=ssic s4[2]=pera 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|classic w[1]|w[2]=classic|opera pos[-2]|pos[-1]=VB|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[-4..-1]=to w[-4..-1]=listen w[1..4]=classic w[1..4]=opera +genre w[-2]=listen w[-1]=to w[0]=classic w[1]=opera wl[-2]=listen wl[-1]=to wl[0]=classic wl[1]=opera pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=l p1[-1]=t p1[0]=c p1[1]=o p2[-2]=li p2[-1]=to p2[0]=cl p2[1]=op p3[-2]=lis p3[-1]= p3[0]=cla p3[1]=ope p4[-2]=list p4[-1]= p4[0]=clas p4[1]=oper s1[-2]=n s1[-1]=o s1[0]=c s1[1]=a s2[-2]=en s2[-1]=to s2[0]=ic s2[1]=ra s3[-2]=ten s3[-1]= s3[0]=sic s3[1]=era s4[-2]=sten s4[-1]= s4[0]=ssic s4[1]=pera 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|classic w[0]|w[1]=classic|opera pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=like w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=opera +genre w[-2]=to w[-1]=classic w[0]=opera wl[-2]=to wl[-1]=classic wl[0]=opera pos[-2]=VB pos[-1]=IN pos[0]=IN chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=LLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=c p1[0]=o p2[-2]=to p2[-1]=cl p2[0]=op p3[-2]= p3[-1]=cla p3[0]=ope p4[-2]= p4[-1]=clas p4[0]=oper s1[-2]=o s1[-1]=c s1[0]=a s2[-2]=to s2[-1]=ic s2[0]=ra s3[-2]= s3[-1]=sic s3[0]=era s4[-2]= s4[-1]=ssic s4[0]=pera 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|classic w[-1]|w[0]=classic|opera pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=classic __EOS__ + +O w[0]=play w[1]=Home w[2]=To wl[0]=play wl[1]=home wl[2]=to pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLL shape[2]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=H p1[2]=T p2[0]=pl p2[1]=Ho p2[2]=To p3[0]=pla p3[1]=Hom p3[2]= p4[0]=play p4[1]=Home p4[2]= s1[0]=y s1[1]=e s1[2]=o s2[0]=ay s2[1]=me s2[2]=To s3[0]=lay s3[1]=ome s3[2]= s4[0]=play s4[1]=Home s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Home w[1]|w[2]=Home|To pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Home w[1..4]=To w[1..4]=Mama w[1..4]=by __BOS__ +song w[-1]=play w[0]=Home w[1]=To w[2]=Mama wl[-1]=play wl[0]=home wl[1]=to wl[2]=mama pos[-1]=VB pos[0]=NN pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLL shape[1]=UL shape[2]=ULLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=H p1[1]=T p1[2]=M p2[-1]=pl p2[0]=Ho p2[1]=To p2[2]=Ma p3[-1]=pla p3[0]=Hom p3[1]= p3[2]=Mam p4[-1]=play p4[0]=Home p4[1]= p4[2]=Mama s1[-1]=y s1[0]=e s1[1]=o s1[2]=a s2[-1]=ay s2[0]=me s2[1]=To s2[2]=ma s3[-1]=lay s3[0]=ome s3[1]= s3[2]=ama s4[-1]=play s4[0]=Home s4[1]= s4[2]=Mama 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Home w[0]|w[1]=Home|To w[1]|w[2]=To|Mama pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=To w[1..4]=Mama w[1..4]=by w[1..4]=Justin +song w[-2]=play w[-1]=Home w[0]=To w[1]=Mama w[2]=by wl[-2]=play wl[-1]=home wl[0]=to wl[1]=mama wl[2]=by pos[-2]=VB pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULLL shape[0]=UL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=H p1[0]=T p1[1]=M p1[2]=b p2[-2]=pl p2[-1]=Ho p2[0]=To p2[1]=Ma p2[2]=by p3[-2]=pla p3[-1]=Hom p3[0]= p3[1]=Mam p3[2]= p4[-2]=play p4[-1]=Home p4[0]= p4[1]=Mama p4[2]= s1[-2]=y s1[-1]=e s1[0]=o s1[1]=a s1[2]=y s2[-2]=ay s2[-1]=me s2[0]=To s2[1]=ma s2[2]=by s3[-2]=lay s3[-1]=ome s3[0]= s3[1]=ama s3[2]= s4[-2]=play s4[-1]=Home s4[0]= s4[1]=Mama s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Home w[-1]|w[0]=Home|To w[0]|w[1]=To|Mama w[1]|w[2]=Mama|by pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Home w[1..4]=Mama w[1..4]=by w[1..4]=Justin w[1..4]=Bieber +song w[-2]=Home w[-1]=To w[0]=Mama w[1]=by w[2]=Justin wl[-2]=home wl[-1]=to wl[0]=mama wl[1]=by wl[2]=justin pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLL shape[-1]=UL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=H p1[-1]=T p1[0]=M p1[1]=b p1[2]=J p2[-2]=Ho p2[-1]=To p2[0]=Ma p2[1]=by p2[2]=Ju p3[-2]=Hom p3[-1]= p3[0]=Mam p3[1]= p3[2]=Jus p4[-2]=Home p4[-1]= p4[0]=Mama p4[1]= p4[2]=Just s1[-2]=e s1[-1]=o s1[0]=a s1[1]=y s1[2]=n s2[-2]=me s2[-1]=To s2[0]=ma s2[1]=by s2[2]=in s3[-2]=ome s3[-1]= s3[0]=ama s3[1]= s3[2]=tin s4[-2]=Home s4[-1]= s4[0]=Mama s4[1]= s4[2]=stin 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Home|To w[-1]|w[0]=To|Mama w[0]|w[1]=Mama|by w[1]|w[2]=by|Justin pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Home w[-4..-1]=To w[1..4]=by w[1..4]=Justin w[1..4]=Bieber w[1..4]=song +O w[-2]=To w[-1]=Mama w[0]=by w[1]=Justin w[2]=Bieber wl[-2]=to wl[-1]=mama wl[0]=by wl[1]=justin wl[2]=bieber pos[-2]=NN pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=UL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=T p1[-1]=M p1[0]=b p1[1]=J p1[2]=B p2[-2]=To p2[-1]=Ma p2[0]=by p2[1]=Ju p2[2]=Bi p3[-2]= p3[-1]=Mam p3[0]= p3[1]=Jus p3[2]=Bie p4[-2]= p4[-1]=Mama p4[0]= p4[1]=Just p4[2]=Bieb s1[-2]=o s1[-1]=a s1[0]=y s1[1]=n s1[2]=r s2[-2]=To s2[-1]=ma s2[0]=by s2[1]=in s2[2]=er s3[-2]= s3[-1]=ama s3[0]= s3[1]=tin s3[2]=ber s4[-2]= s4[-1]=Mama s4[0]= s4[1]=stin s4[2]=eber 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=To|Mama w[-1]|w[0]=Mama|by w[0]|w[1]=by|Justin w[1]|w[2]=Justin|Bieber pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Home w[-4..-1]=To w[-4..-1]=Mama w[1..4]=Justin w[1..4]=Bieber w[1..4]=song w[1..4]=on +artist w[-2]=Mama w[-1]=by w[0]=Justin w[1]=Bieber w[2]=song wl[-2]=mama wl[-1]=by wl[0]=justin wl[1]=bieber wl[2]=song pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP pos[2]=NN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLL shape[1]=ULLLLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=M p1[-1]=b p1[0]=J p1[1]=B p1[2]=s p2[-2]=Ma p2[-1]=by p2[0]=Ju p2[1]=Bi p2[2]=so p3[-2]=Mam p3[-1]= p3[0]=Jus p3[1]=Bie p3[2]=son p4[-2]=Mama p4[-1]= p4[0]=Just p4[1]=Bieb p4[2]=song s1[-2]=a s1[-1]=y s1[0]=n s1[1]=r s1[2]=g s2[-2]=ma s2[-1]=by s2[0]=in s2[1]=er s2[2]=ng s3[-2]=ama s3[-1]= s3[0]=tin s3[1]=ber s3[2]=ong s4[-2]=Mama s4[-1]= s4[0]=stin s4[1]=eber s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Mama|by w[-1]|w[0]=by|Justin w[0]|w[1]=Justin|Bieber w[1]|w[2]=Bieber|song pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Home w[-4..-1]=To w[-4..-1]=Mama w[-4..-1]=by w[1..4]=Bieber w[1..4]=song w[1..4]=on w[1..4]=Spotify +artist w[-2]=by w[-1]=Justin w[0]=Bieber w[1]=song w[2]=on wl[-2]=by wl[-1]=justin wl[0]=bieber wl[1]=song wl[2]=on pos[-2]=IN pos[-1]=NNP pos[0]=NNP pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=ULLLLL shape[0]=ULLLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=b p1[-1]=J p1[0]=B p1[1]=s p1[2]=o p2[-2]=by p2[-1]=Ju p2[0]=Bi p2[1]=so p2[2]=on p3[-2]= p3[-1]=Jus p3[0]=Bie p3[1]=son p3[2]= p4[-2]= p4[-1]=Just p4[0]=Bieb p4[1]=song p4[2]= s1[-2]=y s1[-1]=n s1[0]=r s1[1]=g s1[2]=n s2[-2]=by s2[-1]=in s2[0]=er s2[1]=ng s2[2]=on s3[-2]= s3[-1]=tin s3[0]=ber s3[1]=ong s3[2]= s4[-2]= s4[-1]=stin s4[0]=eber s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Justin w[-1]|w[0]=Justin|Bieber w[0]|w[1]=Bieber|song w[1]|w[2]=song|on pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=To w[-4..-1]=Mama w[-4..-1]=by w[-4..-1]=Justin w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=Justin w[-1]=Bieber w[0]=song w[1]=on w[2]=Spotify wl[-2]=justin wl[-1]=bieber wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=NNP pos[-1]=NNP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=ULLLLL shape[-1]=ULLLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=J p1[-1]=B p1[0]=s p1[1]=o p1[2]=S p2[-2]=Ju p2[-1]=Bi p2[0]=so p2[1]=on p2[2]=Sp p3[-2]=Jus p3[-1]=Bie p3[0]=son p3[1]= p3[2]=Spo p4[-2]=Just p4[-1]=Bieb p4[0]=song p4[1]= p4[2]=Spot s1[-2]=n s1[-1]=r s1[0]=g s1[1]=n s1[2]=y s2[-2]=in s2[-1]=er s2[0]=ng s2[1]=on s2[2]=fy s3[-2]=tin s3[-1]=ber s3[0]=ong s3[1]= s3[2]=ify s4[-2]=stin s4[-1]=eber s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Justin|Bieber w[-1]|w[0]=Bieber|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Mama w[-4..-1]=by w[-4..-1]=Justin w[-4..-1]=Bieber w[1..4]=on w[1..4]=Spotify +O w[-2]=Bieber w[-1]=song w[0]=on w[1]=Spotify wl[-2]=bieber wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=B p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Bi p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=Bie p3[-1]=son p3[0]= p3[1]=Spo p4[-2]=Bieb p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=r s1[-1]=g s1[0]=n s1[1]=y s2[-2]=er s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]=ber s3[-1]=ong s3[0]= s3[1]=ify s4[-2]=eber s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Bieber|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Justin w[-4..-1]=Bieber w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Justin w[-4..-1]=Bieber w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=genre w[2]=RnB wl[0]=play wl[1]=genre wl[2]=rnb pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULU shaped[0]=L shaped[1]=L shaped[2]=ULU type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=g p1[2]=R p2[0]=pl p2[1]=ge p2[2]=Rn p3[0]=pla p3[1]=gen p3[2]=RnB p4[0]=play p4[1]=genr p4[2]= s1[0]=y s1[1]=e s1[2]=B s2[0]=ay s2[1]=re s2[2]=nB s3[0]=lay s3[1]=nre s3[2]=RnB s4[0]=play s4[1]=enre s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|genre w[1]|w[2]=genre|RnB pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|ULU type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=genre w[1..4]=RnB __BOS__ +O w[-1]=play w[0]=genre w[1]=RnB wl[-1]=play wl[0]=genre wl[1]=rnb pos[-1]=VBP pos[0]=NN pos[1]=IN chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULU shaped[-1]=L shaped[0]=L shaped[1]=ULU type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-1]=p p1[0]=g p1[1]=R p2[-1]=pl p2[0]=ge p2[1]=Rn p3[-1]=pla p3[0]=gen p3[1]=RnB p4[-1]=play p4[0]=genr p4[1]= s1[-1]=y s1[0]=e s1[1]=B s2[-1]=ay s2[0]=re s2[1]=nB s3[-1]=lay s3[0]=nre s3[1]=RnB s4[-1]=play s4[0]=enre s4[1]= 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|genre w[0]|w[1]=genre|RnB pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|ULU type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=RnB +genre w[-2]=play w[-1]=genre w[0]=RnB wl[-2]=play wl[-1]=genre wl[0]=rnb pos[-2]=VBP pos[-1]=NN pos[0]=IN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULU shaped[-2]=L shaped[-1]=L shaped[0]=ULU type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=g p1[0]=R p2[-2]=pl p2[-1]=ge p2[0]=Rn p3[-2]=pla p3[-1]=gen p3[0]=RnB p4[-2]=play p4[-1]=genr p4[0]= s1[-2]=y s1[-1]=e s1[0]=B s2[-2]=ay s2[-1]=re s2[0]=nB s3[-2]=lay s3[-1]=nre s3[0]=RnB s4[-2]=play s4[-1]=enre s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|genre w[-1]|w[0]=genre|RnB pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|ULU type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=genre __EOS__ + +O w[0]=play w[1]=the w[2]=artist wl[0]=play wl[1]=the wl[2]=artist pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=a p2[0]=pl p2[1]=th p2[2]=ar p3[0]=pla p3[1]=the p3[2]=art p4[0]=play p4[1]= p4[2]=arti s1[0]=y s1[1]=e s1[2]=t s2[0]=ay s2[1]=he s2[2]=st s3[0]=lay s3[1]=the s3[2]=ist s4[0]=play s4[1]= s4[2]=tist 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|artist pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=artist w[1..4]=Rush __BOS__ +O w[-1]=play w[0]=the w[1]=artist w[2]=Rush wl[-1]=play wl[0]=the wl[1]=artist wl[2]=rush pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=a p1[2]=R p2[-1]=pl p2[0]=th p2[1]=ar p2[2]=Ru p3[-1]=pla p3[0]=the p3[1]=art p3[2]=Rus p4[-1]=play p4[0]= p4[1]=arti p4[2]=Rush s1[-1]=y s1[0]=e s1[1]=t s1[2]=h s2[-1]=ay s2[0]=he s2[1]=st s2[2]=sh s3[-1]=lay s3[0]=the s3[1]=ist s3[2]=ush s4[-1]=play s4[0]= s4[1]=tist s4[2]=Rush 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|artist w[1]|w[2]=artist|Rush pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=artist w[1..4]=Rush +O w[-2]=play w[-1]=the w[0]=artist w[1]=Rush wl[-2]=play wl[-1]=the wl[0]=artist wl[1]=rush pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLLL shape[1]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=t p1[0]=a p1[1]=R p2[-2]=pl p2[-1]=th p2[0]=ar p2[1]=Ru p3[-2]=pla p3[-1]=the p3[0]=art p3[1]=Rus p4[-2]=play p4[-1]= p4[0]=arti p4[1]=Rush s1[-2]=y s1[-1]=e s1[0]=t s1[1]=h s2[-2]=ay s2[-1]=he s2[0]=st s2[1]=sh s3[-2]=lay s3[-1]=the s3[0]=ist s3[1]=ush s4[-2]=play s4[-1]= s4[0]=tist s4[1]=Rush 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|artist w[0]|w[1]=artist|Rush pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[1..4]=Rush +artist w[-2]=the w[-1]=artist w[0]=Rush wl[-2]=the wl[-1]=artist wl[0]=rush pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL shape[-1]=LLLLLL shape[0]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=a p1[0]=R p2[-2]=th p2[-1]=ar p2[0]=Ru p3[-2]=the p3[-1]=art p3[0]=Rus p4[-2]= p4[-1]=arti p4[0]=Rush s1[-2]=e s1[-1]=t s1[0]=h s2[-2]=he s2[-1]=st s2[0]=sh s3[-2]=the s3[-1]=ist s3[0]=ush s4[-2]= s4[-1]=tist s4[0]=Rush 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|artist w[-1]|w[0]=artist|Rush pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=artist __EOS__ + +O w[0]=play w[1]=Theory w[2]=of wl[0]=play wl[1]=theory wl[2]=of pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=T p1[2]=o p2[0]=pl p2[1]=Th p2[2]=of p3[0]=pla p3[1]=The p3[2]= p4[0]=play p4[1]=Theo p4[2]= s1[0]=y s1[1]=y s1[2]=f s2[0]=ay s2[1]=ry s2[2]=of s3[0]=lay s3[1]=ory s3[2]= s4[0]=play s4[1]=eory s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Theory w[1]|w[2]=Theory|of pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Theory w[1..4]=of w[1..4]=a w[1..4]=Deadman __BOS__ +artist w[-1]=play w[0]=Theory w[1]=of w[2]=a wl[-1]=play wl[0]=theory wl[1]=of wl[2]=a pos[-1]=VB pos[0]=NN pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLLL shape[1]=LL shape[2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=T p1[1]=o p1[2]=a p2[-1]=pl p2[0]=Th p2[1]=of p2[2]= p3[-1]=pla p3[0]=The p3[1]= p3[2]= p4[-1]=play p4[0]=Theo p4[1]= p4[2]= s1[-1]=y s1[0]=y s1[1]=f s1[2]=a s2[-1]=ay s2[0]=ry s2[1]=of s2[2]= s3[-1]=lay s3[0]=ory s3[1]= s3[2]= s4[-1]=play s4[0]=eory s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Theory w[0]|w[1]=Theory|of w[1]|w[2]=of|a pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=of w[1..4]=a w[1..4]=Deadman +artist w[-2]=play w[-1]=Theory w[0]=of w[1]=a w[2]=Deadman wl[-2]=play wl[-1]=theory wl[0]=of wl[1]=a wl[2]=deadman pos[-2]=VB pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=LL shape[1]=L shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=T p1[0]=o p1[1]=a p1[2]=D p2[-2]=pl p2[-1]=Th p2[0]=of p2[1]= p2[2]=De p3[-2]=pla p3[-1]=The p3[0]= p3[1]= p3[2]=Dea p4[-2]=play p4[-1]=Theo p4[0]= p4[1]= p4[2]=Dead s1[-2]=y s1[-1]=y s1[0]=f s1[1]=a s1[2]=n s2[-2]=ay s2[-1]=ry s2[0]=of s2[1]= s2[2]=an s3[-2]=lay s3[-1]=ory s3[0]= s3[1]= s3[2]=man s4[-2]=play s4[-1]=eory s4[0]= s4[1]= s4[2]=dman 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Theory w[-1]|w[0]=Theory|of w[0]|w[1]=of|a w[1]|w[2]=a|Deadman pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Theory w[1..4]=a w[1..4]=Deadman +artist w[-2]=Theory w[-1]=of w[0]=a w[1]=Deadman wl[-2]=theory wl[-1]=of wl[0]=a wl[1]=deadman pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=L shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=T p1[-1]=o p1[0]=a p1[1]=D p2[-2]=Th p2[-1]=of p2[0]= p2[1]=De p3[-2]=The p3[-1]= p3[0]= p3[1]=Dea p4[-2]=Theo p4[-1]= p4[0]= p4[1]=Dead s1[-2]=y s1[-1]=f s1[0]=a s1[1]=n s2[-2]=ry s2[-1]=of s2[0]= s2[1]=an s3[-2]=ory s3[-1]= s3[0]= s3[1]=man s4[-2]=eory s4[-1]= s4[0]= s4[1]=dman 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Theory|of w[-1]|w[0]=of|a w[0]|w[1]=a|Deadman pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Theory w[-4..-1]=of w[1..4]=Deadman +artist w[-2]=of w[-1]=a w[0]=Deadman wl[-2]=of wl[-1]=a wl[0]=deadman pos[-2]=NN pos[-1]=NN pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=L shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=o p1[-1]=a p1[0]=D p2[-2]=of p2[-1]= p2[0]=De p3[-2]= p3[-1]= p3[0]=Dea p4[-2]= p4[-1]= p4[0]=Dead s1[-2]=f s1[-1]=a s1[0]=n s2[-2]=of s2[-1]= s2[0]=an s3[-2]= s3[-1]= s3[0]=man s4[-2]= s4[-1]= s4[0]=dman 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=of|a w[-1]|w[0]=a|Deadman pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Theory w[-4..-1]=of w[-4..-1]=a __EOS__ + +genre w[0]=rock w[1]=compositions wl[0]=rock wl[1]=compositions pos[0]=NN pos[1]=NNS chk[0]=I chk[1]=O shape[0]=LLLL shape[1]=LLLLLLLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=r p1[1]=c p2[0]=ro p2[1]=co p3[0]=roc p3[1]=com p4[0]=rock p4[1]=comp s1[0]=k s1[1]=s s2[0]=ck s2[1]=ns s3[0]=ock s3[1]=ons s4[0]=rock s4[1]=ions 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=rock|compositions pos[0]|pos[1]=NN|NNS chk[0]|chk[1]=I|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=compositions __BOS__ +O w[-1]=rock w[0]=compositions wl[-1]=rock wl[0]=compositions pos[-1]=NN pos[0]=NNS chk[-1]=I chk[0]=O shape[-1]=LLLL shape[0]=LLLLLLLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=r p1[0]=c p2[-1]=ro p2[0]=co p3[-1]=roc p3[0]=com p4[-1]=rock p4[0]=comp s1[-1]=k s1[0]=s s2[-1]=ck s2[0]=ns s3[-1]=ock s3[0]=ons s4[-1]=rock s4[0]=ions 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=rock|compositions pos[-1]|pos[0]=NN|NNS chk[-1]|chk[0]=I|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=rock __EOS__ + +O w[0]=play w[1]=I w[2]=See wl[0]=play wl[1]=i wl[2]=see pos[0]=VB pos[1]=PRP pos[2]=PRP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=U shape[2]=ULL shaped[0]=L shaped[1]=U shaped[2]=UL type[0]=AllLetter type[1]=AllUpper type[2]=InitUpper p1[0]=p p1[1]=I p1[2]=S p2[0]=pl p2[1]= p2[2]=Se p3[0]=pla p3[1]= p3[2]=See p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=I s1[2]=e s2[0]=ay s2[1]= s2[2]=ee s3[0]=lay s3[1]= s3[2]=See s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=yes au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|I w[1]|w[2]=I|See pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|PRP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|UL type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|InitUpper w[1..4]=I w[1..4]=See w[1..4]=Fire w[1..4]=by __BOS__ +song w[-1]=play w[0]=I w[1]=See w[2]=Fire wl[-1]=play wl[0]=i wl[1]=see wl[2]=fire pos[-1]=VB pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=U shape[1]=ULL shape[2]=ULLL shaped[-1]=L shaped[0]=U shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=I p1[1]=S p1[2]=F p2[-1]=pl p2[0]= p2[1]=Se p2[2]=Fi p3[-1]=pla p3[0]= p3[1]=See p3[2]=Fir p4[-1]=play p4[0]= p4[1]= p4[2]=Fire s1[-1]=y s1[0]=I s1[1]=e s1[2]=e s2[-1]=ay s2[0]= s2[1]=ee s2[2]=re s3[-1]=lay s3[0]= s3[1]=See s3[2]=ire s4[-1]=play s4[0]= s4[1]= s4[2]=Fire 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=yes au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|I w[0]|w[1]=I|See w[1]|w[2]=See|Fire pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=See w[1..4]=Fire w[1..4]=by w[1..4]=Ed +song w[-2]=play w[-1]=I w[0]=See w[1]=Fire w[2]=by wl[-2]=play wl[-1]=i wl[0]=see wl[1]=fire wl[2]=by pos[-2]=VB pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=U shape[0]=ULL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=U shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=I p1[0]=S p1[1]=F p1[2]=b p2[-2]=pl p2[-1]= p2[0]=Se p2[1]=Fi p2[2]=by p3[-2]=pla p3[-1]= p3[0]=See p3[1]=Fir p3[2]= p4[-2]=play p4[-1]= p4[0]= p4[1]=Fire p4[2]= s1[-2]=y s1[-1]=I s1[0]=e s1[1]=e s1[2]=y s2[-2]=ay s2[-1]= s2[0]=ee s2[1]=re s2[2]=by s3[-2]=lay s3[-1]= s3[0]=See s3[1]=ire s3[2]= s4[-2]=play s4[-1]= s4[0]= s4[1]=Fire s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|I w[-1]|w[0]=I|See w[0]|w[1]=See|Fire w[1]|w[2]=Fire|by pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=I w[1..4]=Fire w[1..4]=by w[1..4]=Ed w[1..4]=Sheeran +song w[-2]=I w[-1]=See w[0]=Fire w[1]=by w[2]=Ed wl[-2]=i wl[-1]=see wl[0]=fire wl[1]=by wl[2]=ed pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=U shape[-1]=ULL shape[0]=ULLL shape[1]=LL shape[2]=UL shaped[-2]=U shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=I p1[-1]=S p1[0]=F p1[1]=b p1[2]=E p2[-2]= p2[-1]=Se p2[0]=Fi p2[1]=by p2[2]=Ed p3[-2]= p3[-1]=See p3[0]=Fir p3[1]= p3[2]= p4[-2]= p4[-1]= p4[0]=Fire p4[1]= p4[2]= s1[-2]=I s1[-1]=e s1[0]=e s1[1]=y s1[2]=d s2[-2]= s2[-1]=ee s2[0]=re s2[1]=by s2[2]=Ed s3[-2]= s3[-1]=See s3[0]=ire s3[1]= s3[2]= s4[-2]= s4[-1]= s4[0]=Fire s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|See w[-1]|w[0]=See|Fire w[0]|w[1]=Fire|by w[1]|w[2]=by|Ed pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=U|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=I w[-4..-1]=See w[1..4]=by w[1..4]=Ed w[1..4]=Sheeran w[1..4]=song +O w[-2]=See w[-1]=Fire w[0]=by w[1]=Ed w[2]=Sheeran wl[-2]=see wl[-1]=fire wl[0]=by wl[1]=ed wl[2]=sheeran pos[-2]=PRP pos[-1]=PRP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULL shape[-1]=ULLL shape[0]=LL shape[1]=UL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=S p1[-1]=F p1[0]=b p1[1]=E p1[2]=S p2[-2]=Se p2[-1]=Fi p2[0]=by p2[1]=Ed p2[2]=Sh p3[-2]=See p3[-1]=Fir p3[0]= p3[1]= p3[2]=She p4[-2]= p4[-1]=Fire p4[0]= p4[1]= p4[2]=Shee s1[-2]=e s1[-1]=e s1[0]=y s1[1]=d s1[2]=n s2[-2]=ee s2[-1]=re s2[0]=by s2[1]=Ed s2[2]=an s3[-2]=See s3[-1]=ire s3[0]= s3[1]= s3[2]=ran s4[-2]= s4[-1]=Fire s4[0]= s4[1]= s4[2]=eran 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=See|Fire w[-1]|w[0]=Fire|by w[0]|w[1]=by|Ed w[1]|w[2]=Ed|Sheeran pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=I w[-4..-1]=See w[-4..-1]=Fire w[1..4]=Ed w[1..4]=Sheeran w[1..4]=song w[1..4]=on +artist w[-2]=Fire w[-1]=by w[0]=Ed w[1]=Sheeran w[2]=song wl[-2]=fire wl[-1]=by wl[0]=ed wl[1]=sheeran wl[2]=song pos[-2]=PRP pos[-1]=IN pos[0]=NNP pos[1]=NNP pos[2]=NN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLL shape[-1]=LL shape[0]=UL shape[1]=ULLLLLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=F p1[-1]=b p1[0]=E p1[1]=S p1[2]=s p2[-2]=Fi p2[-1]=by p2[0]=Ed p2[1]=Sh p2[2]=so p3[-2]=Fir p3[-1]= p3[0]= p3[1]=She p3[2]=son p4[-2]=Fire p4[-1]= p4[0]= p4[1]=Shee p4[2]=song s1[-2]=e s1[-1]=y s1[0]=d s1[1]=n s1[2]=g s2[-2]=re s2[-1]=by s2[0]=Ed s2[1]=an s2[2]=ng s3[-2]=ire s3[-1]= s3[0]= s3[1]=ran s3[2]=ong s4[-2]=Fire s4[-1]= s4[0]= s4[1]=eran s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Fire|by w[-1]|w[0]=by|Ed w[0]|w[1]=Ed|Sheeran w[1]|w[2]=Sheeran|song pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=I w[-4..-1]=See w[-4..-1]=Fire w[-4..-1]=by w[1..4]=Sheeran w[1..4]=song w[1..4]=on w[1..4]=Spotify +artist w[-2]=by w[-1]=Ed w[0]=Sheeran w[1]=song w[2]=on wl[-2]=by wl[-1]=ed wl[0]=sheeran wl[1]=song wl[2]=on pos[-2]=IN pos[-1]=NNP pos[0]=NNP pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=UL shape[0]=ULLLLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=b p1[-1]=E p1[0]=S p1[1]=s p1[2]=o p2[-2]=by p2[-1]=Ed p2[0]=Sh p2[1]=so p2[2]=on p3[-2]= p3[-1]= p3[0]=She p3[1]=son p3[2]= p4[-2]= p4[-1]= p4[0]=Shee p4[1]=song p4[2]= s1[-2]=y s1[-1]=d s1[0]=n s1[1]=g s1[2]=n s2[-2]=by s2[-1]=Ed s2[0]=an s2[1]=ng s2[2]=on s3[-2]= s3[-1]= s3[0]=ran s3[1]=ong s3[2]= s4[-2]= s4[-1]= s4[0]=eran s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Ed w[-1]|w[0]=Ed|Sheeran w[0]|w[1]=Sheeran|song w[1]|w[2]=song|on pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=See w[-4..-1]=Fire w[-4..-1]=by w[-4..-1]=Ed w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=Ed w[-1]=Sheeran w[0]=song w[1]=on w[2]=Spotify wl[-2]=ed wl[-1]=sheeran wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=NNP pos[-1]=NNP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=UL shape[-1]=ULLLLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=E p1[-1]=S p1[0]=s p1[1]=o p1[2]=S p2[-2]=Ed p2[-1]=Sh p2[0]=so p2[1]=on p2[2]=Sp p3[-2]= p3[-1]=She p3[0]=son p3[1]= p3[2]=Spo p4[-2]= p4[-1]=Shee p4[0]=song p4[1]= p4[2]=Spot s1[-2]=d s1[-1]=n s1[0]=g s1[1]=n s1[2]=y s2[-2]=Ed s2[-1]=an s2[0]=ng s2[1]=on s2[2]=fy s3[-2]= s3[-1]=ran s3[0]=ong s3[1]= s3[2]=ify s4[-2]= s4[-1]=eran s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Ed|Sheeran w[-1]|w[0]=Sheeran|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Fire w[-4..-1]=by w[-4..-1]=Ed w[-4..-1]=Sheeran w[1..4]=on w[1..4]=Spotify +O w[-2]=Sheeran w[-1]=song w[0]=on w[1]=Spotify wl[-2]=sheeran wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=S p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Sh p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=She p3[-1]=son p3[0]= p3[1]=Spo p4[-2]=Shee p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=n s1[-1]=g s1[0]=n s1[1]=y s2[-2]=an s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]=ran s3[-1]=ong s3[0]= s3[1]=ify s4[-2]=eran s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Sheeran|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Ed w[-4..-1]=Sheeran w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Ed w[-4..-1]=Sheeran w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=something +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=something w[1..4]=by +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=something wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=something pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=s p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=so p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=som p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]=some s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=g s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=ng s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=ing s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]=hing 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|something pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=something w[1..4]=by w[1..4]=Madonna +O w[-2]=to w[-1]=listen w[0]=to w[1]=something w[2]=by wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=something wl[2]=by pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=s p1[2]=b p2[-2]=to p2[-1]=li p2[0]=to p2[1]=so p2[2]=by p3[-2]= p3[-1]=lis p3[0]= p3[1]=som p3[2]= p4[-2]= p4[-1]=list p4[0]= p4[1]=some p4[2]= s1[-2]=o s1[-1]=n s1[0]=o s1[1]=g s1[2]=y s2[-2]=to s2[-1]=en s2[0]=to s2[1]=ng s2[2]=by s3[-2]= s3[-1]=ten s3[0]= s3[1]=ing s3[2]= s4[-2]= s4[-1]=sten s4[0]= s4[1]=hing s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|something w[1]|w[2]=something|by pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=something w[1..4]=by w[1..4]=Madonna +O w[-2]=listen w[-1]=to w[0]=something w[1]=by w[2]=Madonna wl[-2]=listen wl[-1]=to wl[0]=something wl[1]=by wl[2]=madonna pos[-2]=VB pos[-1]=IN pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLLLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=l p1[-1]=t p1[0]=s p1[1]=b p1[2]=M p2[-2]=li p2[-1]=to p2[0]=so p2[1]=by p2[2]=Ma p3[-2]=lis p3[-1]= p3[0]=som p3[1]= p3[2]=Mad p4[-2]=list p4[-1]= p4[0]=some p4[1]= p4[2]=Mado s1[-2]=n s1[-1]=o s1[0]=g s1[1]=y s1[2]=a s2[-2]=en s2[-1]=to s2[0]=ng s2[1]=by s2[2]=na s3[-2]=ten s3[-1]= s3[0]=ing s3[1]= s3[2]=nna s4[-2]=sten s4[-1]= s4[0]=hing s4[1]= s4[2]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|something w[0]|w[1]=something|by w[1]|w[2]=by|Madonna pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=by w[1..4]=Madonna +O w[-2]=to w[-1]=something w[0]=by w[1]=Madonna wl[-2]=to wl[-1]=something wl[0]=by wl[1]=madonna pos[-2]=IN pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=LLLLLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=t p1[-1]=s p1[0]=b p1[1]=M p2[-2]=to p2[-1]=so p2[0]=by p2[1]=Ma p3[-2]= p3[-1]=som p3[0]= p3[1]=Mad p4[-2]= p4[-1]=some p4[0]= p4[1]=Mado s1[-2]=o s1[-1]=g s1[0]=y s1[1]=a s2[-2]=to s2[-1]=ng s2[0]=by s2[1]=na s3[-2]= s3[-1]=ing s3[0]= s3[1]=nna s4[-2]= s4[-1]=hing s4[0]= s4[1]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|something w[-1]|w[0]=something|by w[0]|w[1]=by|Madonna pos[-2]|pos[-1]=IN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=something w[1..4]=Madonna +artist w[-2]=something w[-1]=by w[0]=Madonna wl[-2]=something wl[-1]=by wl[0]=madonna pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=b p1[0]=M p2[-2]=so p2[-1]=by p2[0]=Ma p3[-2]=som p3[-1]= p3[0]=Mad p4[-2]=some p4[-1]= p4[0]=Mado s1[-2]=g s1[-1]=y s1[0]=a s2[-2]=ng s2[-1]=by s2[0]=na s3[-2]=ing s3[-1]= s3[0]=nna s4[-2]=hing s4[-1]= s4[0]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=something|by w[-1]|w[0]=by|Madonna pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=something w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=music w[2]=by wl[0]=play wl[1]=music wl[2]=by pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=b p2[0]=pl p2[1]=mu p2[2]=by p3[0]=pla p3[1]=mus p3[2]= p4[0]=play p4[1]=musi p4[2]= s1[0]=y s1[1]=c s1[2]=y s2[0]=ay s2[1]=ic s2[2]=by s3[0]=lay s3[1]=sic s3[2]= s4[0]=play s4[1]=usic s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|music w[1]|w[2]=music|by pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=music w[1..4]=by w[1..4]=Vanessa w[1..4]=Paradis __BOS__ +O w[-1]=play w[0]=music w[1]=by w[2]=Vanessa wl[-1]=play wl[0]=music wl[1]=by wl[2]=vanessa pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=m p1[1]=b p1[2]=V p2[-1]=pl p2[0]=mu p2[1]=by p2[2]=Va p3[-1]=pla p3[0]=mus p3[1]= p3[2]=Van p4[-1]=play p4[0]=musi p4[1]= p4[2]=Vane s1[-1]=y s1[0]=c s1[1]=y s1[2]=a s2[-1]=ay s2[0]=ic s2[1]=by s2[2]=sa s3[-1]=lay s3[0]=sic s3[1]= s3[2]=ssa s4[-1]=play s4[0]=usic s4[1]= s4[2]=essa 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|music w[0]|w[1]=music|by w[1]|w[2]=by|Vanessa pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Vanessa w[1..4]=Paradis +O w[-2]=play w[-1]=music w[0]=by w[1]=Vanessa w[2]=Paradis wl[-2]=play wl[-1]=music wl[0]=by wl[1]=vanessa wl[2]=paradis pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=m p1[0]=b p1[1]=V p1[2]=P p2[-2]=pl p2[-1]=mu p2[0]=by p2[1]=Va p2[2]=Pa p3[-2]=pla p3[-1]=mus p3[0]= p3[1]=Van p3[2]=Par p4[-2]=play p4[-1]=musi p4[0]= p4[1]=Vane p4[2]=Para s1[-2]=y s1[-1]=c s1[0]=y s1[1]=a s1[2]=s s2[-2]=ay s2[-1]=ic s2[0]=by s2[1]=sa s2[2]=is s3[-2]=lay s3[-1]=sic s3[0]= s3[1]=ssa s3[2]=dis s4[-2]=play s4[-1]=usic s4[0]= s4[1]=essa s4[2]=adis 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|music w[-1]|w[0]=music|by w[0]|w[1]=by|Vanessa w[1]|w[2]=Vanessa|Paradis pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[1..4]=Vanessa w[1..4]=Paradis +artist w[-2]=music w[-1]=by w[0]=Vanessa w[1]=Paradis wl[-2]=music wl[-1]=by wl[0]=vanessa wl[1]=paradis pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=m p1[-1]=b p1[0]=V p1[1]=P p2[-2]=mu p2[-1]=by p2[0]=Va p2[1]=Pa p3[-2]=mus p3[-1]= p3[0]=Van p3[1]=Par p4[-2]=musi p4[-1]= p4[0]=Vane p4[1]=Para s1[-2]=c s1[-1]=y s1[0]=a s1[1]=s s2[-2]=ic s2[-1]=by s2[0]=sa s2[1]=is s3[-2]=sic s3[-1]= s3[0]=ssa s3[1]=dis s4[-2]=usic s4[-1]= s4[0]=essa s4[1]=adis 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=music|by w[-1]|w[0]=by|Vanessa w[0]|w[1]=Vanessa|Paradis pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[-4..-1]=by w[1..4]=Paradis +artist w[-2]=by w[-1]=Vanessa w[0]=Paradis wl[-2]=by wl[-1]=vanessa wl[0]=paradis pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=V p1[0]=P p2[-2]=by p2[-1]=Va p2[0]=Pa p3[-2]= p3[-1]=Van p3[0]=Par p4[-2]= p4[-1]=Vane p4[0]=Para s1[-2]=y s1[-1]=a s1[0]=s s2[-2]=by s2[-1]=sa s2[0]=is s3[-2]= s3[-1]=ssa s3[0]=dis s4[-2]= s4[-1]=essa s4[0]=adis 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Vanessa w[-1]|w[0]=Vanessa|Paradis pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[-4..-1]=by w[-4..-1]=Vanessa __EOS__ + +O w[0]=play w[1]=album w[2]=In wl[0]=play wl[1]=album wl[2]=in pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=I p2[0]=pl p2[1]=al p2[2]=In p3[0]=pla p3[1]=alb p3[2]= p4[0]=play p4[1]=albu p4[2]= s1[0]=y s1[1]=m s1[2]=n s2[0]=ay s2[1]=um s2[2]=In s3[0]=lay s3[1]=bum s3[2]= s4[0]=play s4[1]=lbum s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|In pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=In w[1..4]=the w[1..4]=jungle __BOS__ +O w[-1]=play w[0]=album w[1]=In w[2]=the wl[-1]=play wl[0]=album wl[1]=in wl[2]=the pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=UL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=I p1[2]=t p2[-1]=pl p2[0]=al p2[1]=In p2[2]=th p3[-1]=pla p3[0]=alb p3[1]= p3[2]=the p4[-1]=play p4[0]=albu p4[1]= p4[2]= s1[-1]=y s1[0]=m s1[1]=n s1[2]=e s2[-1]=ay s2[0]=um s2[1]=In s2[2]=he s3[-1]=lay s3[0]=bum s3[1]= s3[2]=the s4[-1]=play s4[0]=lbum s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|In w[1]|w[2]=In|the pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=In w[1..4]=the w[1..4]=jungle w[1..4]=groove +album w[-2]=play w[-1]=album w[0]=In w[1]=the w[2]=jungle wl[-2]=play wl[-1]=album wl[0]=in wl[1]=the wl[2]=jungle pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=IN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=UL shape[1]=LLL shape[2]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=I p1[1]=t p1[2]=j p2[-2]=pl p2[-1]=al p2[0]=In p2[1]=th p2[2]=ju p3[-2]=pla p3[-1]=alb p3[0]= p3[1]=the p3[2]=jun p4[-2]=play p4[-1]=albu p4[0]= p4[1]= p4[2]=jung s1[-2]=y s1[-1]=m s1[0]=n s1[1]=e s1[2]=e s2[-2]=ay s2[-1]=um s2[0]=In s2[1]=he s2[2]=le s3[-2]=lay s3[-1]=bum s3[0]= s3[1]=the s3[2]=gle s4[-2]=play s4[-1]=lbum s4[0]= s4[1]= s4[2]=ngle 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|In w[0]|w[1]=In|the w[1]|w[2]=the|jungle pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|IN pos[1]|pos[2]=IN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[1..4]=the w[1..4]=jungle w[1..4]=groove +album w[-2]=album w[-1]=In w[0]=the w[1]=jungle w[2]=groove wl[-2]=album wl[-1]=in wl[0]=the wl[1]=jungle wl[2]=groove pos[-2]=NN pos[-1]=IN pos[0]=IN pos[1]=IN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLLL shape[-1]=UL shape[0]=LLL shape[1]=LLLLLL shape[2]=LLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=I p1[0]=t p1[1]=j p1[2]=g p2[-2]=al p2[-1]=In p2[0]=th p2[1]=ju p2[2]=gr p3[-2]=alb p3[-1]= p3[0]=the p3[1]=jun p3[2]=gro p4[-2]=albu p4[-1]= p4[0]= p4[1]=jung p4[2]=groo s1[-2]=m s1[-1]=n s1[0]=e s1[1]=e s1[2]=e s2[-2]=um s2[-1]=In s2[0]=he s2[1]=le s2[2]=ve s3[-2]=bum s3[-1]= s3[0]=the s3[1]=gle s3[2]=ove s4[-2]=lbum s4[-1]= s4[0]= s4[1]=ngle s4[2]=oove 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|In w[-1]|w[0]=In|the w[0]|w[1]=the|jungle w[1]|w[2]=jungle|groove pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|IN pos[0]|pos[1]=IN|IN pos[1]|pos[2]=IN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[-4..-1]=In w[1..4]=jungle w[1..4]=groove +album w[-2]=In w[-1]=the w[0]=jungle w[1]=groove wl[-2]=in wl[-1]=the wl[0]=jungle wl[1]=groove pos[-2]=IN pos[-1]=IN pos[0]=IN pos[1]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=UL shape[-1]=LLL shape[0]=LLLLLL shape[1]=LLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=I p1[-1]=t p1[0]=j p1[1]=g p2[-2]=In p2[-1]=th p2[0]=ju p2[1]=gr p3[-2]= p3[-1]=the p3[0]=jun p3[1]=gro p4[-2]= p4[-1]= p4[0]=jung p4[1]=groo s1[-2]=n s1[-1]=e s1[0]=e s1[1]=e s2[-2]=In s2[-1]=he s2[0]=le s2[1]=ve s3[-2]= s3[-1]=the s3[0]=gle s3[1]=ove s4[-2]= s4[-1]= s4[0]=ngle s4[1]=oove 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=In|the w[-1]|w[0]=the|jungle w[0]|w[1]=jungle|groove pos[-2]|pos[-1]=IN|IN pos[-1]|pos[0]=IN|IN pos[0]|pos[1]=IN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[-4..-1]=In w[-4..-1]=the w[1..4]=groove +album w[-2]=the w[-1]=jungle w[0]=groove wl[-2]=the wl[-1]=jungle wl[0]=groove pos[-2]=IN pos[-1]=IN pos[0]=IN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLL shape[-1]=LLLLLL shape[0]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=j p1[0]=g p2[-2]=th p2[-1]=ju p2[0]=gr p3[-2]=the p3[-1]=jun p3[0]=gro p4[-2]= p4[-1]=jung p4[0]=groo s1[-2]=e s1[-1]=e s1[0]=e s2[-2]=he s2[-1]=le s2[0]=ve s3[-2]=the s3[-1]=gle s3[0]=ove s4[-2]= s4[-1]=ngle s4[0]=oove 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|jungle w[-1]|w[0]=jungle|groove pos[-2]|pos[-1]=IN|IN pos[-1]|pos[0]=IN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=album w[-4..-1]=In w[-4..-1]=the w[-4..-1]=jungle __EOS__ + +O w[0]=play w[1]=album w[2]=Thriller wl[0]=play wl[1]=album wl[2]=thriller pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=T p2[0]=pl p2[1]=al p2[2]=Th p3[0]=pla p3[1]=alb p3[2]=Thr p4[0]=play p4[1]=albu p4[2]=Thri s1[0]=y s1[1]=m s1[2]=r s2[0]=ay s2[1]=um s2[2]=er s3[0]=lay s3[1]=bum s3[2]=ler s4[0]=play s4[1]=lbum s4[2]=ller 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Thriller pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Thriller __BOS__ +O w[-1]=play w[0]=album w[1]=Thriller wl[-1]=play wl[0]=album wl[1]=thriller pos[-1]=VB pos[0]=NN pos[1]=NNP chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-1]=p p1[0]=a p1[1]=T p2[-1]=pl p2[0]=al p2[1]=Th p3[-1]=pla p3[0]=alb p3[1]=Thr p4[-1]=play p4[0]=albu p4[1]=Thri s1[-1]=y s1[0]=m s1[1]=r s2[-1]=ay s2[0]=um s2[1]=er s3[-1]=lay s3[0]=bum s3[1]=ler s4[-1]=play s4[0]=lbum s4[1]=ller 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Thriller pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=Thriller +album w[-2]=play w[-1]=album w[0]=Thriller wl[-2]=play wl[-1]=album wl[0]=thriller pos[-2]=VB pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=a p1[0]=T p2[-2]=pl p2[-1]=al p2[0]=Th p3[-2]=pla p3[-1]=alb p3[0]=Thr p4[-2]=play p4[-1]=albu p4[0]=Thri s1[-2]=y s1[-1]=m s1[0]=r s2[-2]=ay s2[-1]=um s2[0]=er s3[-2]=lay s3[-1]=bum s3[0]=ler s4[-2]=play s4[-1]=lbum s4[0]=ller 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Thriller pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album __EOS__ + +O w[0]=play w[1]=song w[2]=by wl[0]=play wl[1]=song wl[2]=by pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=son p3[2]= p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=y s2[0]=ay s2[1]=ng s2[2]=by s3[0]=lay s3[1]=ong s3[2]= s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|by pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=song w[1..4]=by w[1..4]=Lil w[1..4]=Wayne __BOS__ +O w[-1]=play w[0]=song w[1]=by w[2]=Lil wl[-1]=play wl[0]=song wl[1]=by wl[2]=lil pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=ULL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=L p2[-1]=pl p2[0]=so p2[1]=by p2[2]=Li p3[-1]=pla p3[0]=son p3[1]= p3[2]=Lil p4[-1]=play p4[0]=song p4[1]= p4[2]= s1[-1]=y s1[0]=g s1[1]=y s1[2]=l s2[-1]=ay s2[0]=ng s2[1]=by s2[2]=il s3[-1]=lay s3[0]=ong s3[1]= s3[2]=Lil s4[-1]=play s4[0]=song s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|by w[1]|w[2]=by|Lil pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Lil w[1..4]=Wayne +O w[-2]=play w[-1]=song w[0]=by w[1]=Lil w[2]=Wayne wl[-2]=play wl[-1]=song wl[0]=by wl[1]=lil wl[2]=wayne pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=b p1[1]=L p1[2]=W p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=Li p2[2]=Wa p3[-2]=pla p3[-1]=son p3[0]= p3[1]=Lil p3[2]=Way p4[-2]=play p4[-1]=song p4[0]= p4[1]= p4[2]=Wayn s1[-2]=y s1[-1]=g s1[0]=y s1[1]=l s1[2]=e s2[-2]=ay s2[-1]=ng s2[0]=by s2[1]=il s2[2]=ne s3[-2]=lay s3[-1]=ong s3[0]= s3[1]=Lil s3[2]=yne s4[-2]=play s4[-1]=song s4[0]= s4[1]= s4[2]=ayne 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|by w[0]|w[1]=by|Lil w[1]|w[2]=Lil|Wayne pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=Lil w[1..4]=Wayne +artist w[-2]=song w[-1]=by w[0]=Lil w[1]=Wayne wl[-2]=song wl[-1]=by wl[0]=lil wl[1]=wayne pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULL shape[1]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=b p1[0]=L p1[1]=W p2[-2]=so p2[-1]=by p2[0]=Li p2[1]=Wa p3[-2]=son p3[-1]= p3[0]=Lil p3[1]=Way p4[-2]=song p4[-1]= p4[0]= p4[1]=Wayn s1[-2]=g s1[-1]=y s1[0]=l s1[1]=e s2[-2]=ng s2[-1]=by s2[0]=il s2[1]=ne s3[-2]=ong s3[-1]= s3[0]=Lil s3[1]=yne s4[-2]=song s4[-1]= s4[0]= s4[1]=ayne 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|by w[-1]|w[0]=by|Lil w[0]|w[1]=Lil|Wayne pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by w[1..4]=Wayne +artist w[-2]=by w[-1]=Lil w[0]=Wayne wl[-2]=by wl[-1]=lil wl[0]=wayne pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=L p1[0]=W p2[-2]=by p2[-1]=Li p2[0]=Wa p3[-2]= p3[-1]=Lil p3[0]=Way p4[-2]= p4[-1]= p4[0]=Wayn s1[-2]=y s1[-1]=l s1[0]=e s2[-2]=by s2[-1]=il s2[0]=ne s3[-2]= s3[-1]=Lil s3[0]=yne s4[-2]= s4[-1]= s4[0]=ayne 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Lil w[-1]|w[0]=Lil|Wayne pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by w[-4..-1]=Lil __EOS__ + +O w[0]=play w[1]=album w[2]=Born wl[0]=play wl[1]=album wl[2]=born pos[0]=VBP pos[1]=NN pos[2]=VBN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=B p2[0]=pl p2[1]=al p2[2]=Bo p3[0]=pla p3[1]=alb p3[2]=Bor p4[0]=play p4[1]=albu p4[2]=Born s1[0]=y s1[1]=m s1[2]=n s2[0]=ay s2[1]=um s2[2]=rn s3[0]=lay s3[1]=bum s3[2]=orn s4[0]=play s4[1]=lbum s4[2]=Born 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Born pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|VBN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Born w[1..4]=to w[1..4]=Run __BOS__ +O w[-1]=play w[0]=album w[1]=Born w[2]=to wl[-1]=play wl[0]=album wl[1]=born wl[2]=to pos[-1]=VBP pos[0]=NN pos[1]=VBN pos[2]=VBN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=B p1[2]=t p2[-1]=pl p2[0]=al p2[1]=Bo p2[2]=to p3[-1]=pla p3[0]=alb p3[1]=Bor p3[2]= p4[-1]=play p4[0]=albu p4[1]=Born p4[2]= s1[-1]=y s1[0]=m s1[1]=n s1[2]=o s2[-1]=ay s2[0]=um s2[1]=rn s2[2]=to s3[-1]=lay s3[0]=bum s3[1]=orn s3[2]= s4[-1]=play s4[0]=lbum s4[1]=Born s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Born w[1]|w[2]=Born|to pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|VBN pos[1]|pos[2]=VBN|VBN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Born w[1..4]=to w[1..4]=Run w[1..4]=by +album w[-2]=play w[-1]=album w[0]=Born w[1]=to w[2]=Run wl[-2]=play wl[-1]=album wl[0]=born wl[1]=to wl[2]=run pos[-2]=VBP pos[-1]=NN pos[0]=VBN pos[1]=VBN pos[2]=VBN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLL shape[1]=LL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=B p1[1]=t p1[2]=R p2[-2]=pl p2[-1]=al p2[0]=Bo p2[1]=to p2[2]=Ru p3[-2]=pla p3[-1]=alb p3[0]=Bor p3[1]= p3[2]=Run p4[-2]=play p4[-1]=albu p4[0]=Born p4[1]= p4[2]= s1[-2]=y s1[-1]=m s1[0]=n s1[1]=o s1[2]=n s2[-2]=ay s2[-1]=um s2[0]=rn s2[1]=to s2[2]=un s3[-2]=lay s3[-1]=bum s3[0]=orn s3[1]= s3[2]=Run s4[-2]=play s4[-1]=lbum s4[0]=Born s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Born w[0]|w[1]=Born|to w[1]|w[2]=to|Run pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|VBN pos[0]|pos[1]=VBN|VBN pos[1]|pos[2]=VBN|VBN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=to w[1..4]=Run w[1..4]=by w[1..4]=Bruce +album w[-2]=album w[-1]=Born w[0]=to w[1]=Run w[2]=by wl[-2]=album wl[-1]=born wl[0]=to wl[1]=run wl[2]=by pos[-2]=NN pos[-1]=VBN pos[0]=VBN pos[1]=VBN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=a p1[-1]=B p1[0]=t p1[1]=R p1[2]=b p2[-2]=al p2[-1]=Bo p2[0]=to p2[1]=Ru p2[2]=by p3[-2]=alb p3[-1]=Bor p3[0]= p3[1]=Run p3[2]= p4[-2]=albu p4[-1]=Born p4[0]= p4[1]= p4[2]= s1[-2]=m s1[-1]=n s1[0]=o s1[1]=n s1[2]=y s2[-2]=um s2[-1]=rn s2[0]=to s2[1]=un s2[2]=by s3[-2]=bum s3[-1]=orn s3[0]= s3[1]=Run s3[2]= s4[-2]=lbum s4[-1]=Born s4[0]= s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Born w[-1]|w[0]=Born|to w[0]|w[1]=to|Run w[1]|w[2]=Run|by pos[-2]|pos[-1]=NN|VBN pos[-1]|pos[0]=VBN|VBN pos[0]|pos[1]=VBN|VBN pos[1]|pos[2]=VBN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Born w[1..4]=Run w[1..4]=by w[1..4]=Bruce w[1..4]=Springsteen +album w[-2]=Born w[-1]=to w[0]=Run w[1]=by w[2]=Bruce wl[-2]=born wl[-1]=to wl[0]=run wl[1]=by wl[2]=bruce pos[-2]=VBN pos[-1]=VBN pos[0]=VBN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULL shape[1]=LL shape[2]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=B p1[-1]=t p1[0]=R p1[1]=b p1[2]=B p2[-2]=Bo p2[-1]=to p2[0]=Ru p2[1]=by p2[2]=Br p3[-2]=Bor p3[-1]= p3[0]=Run p3[1]= p3[2]=Bru p4[-2]=Born p4[-1]= p4[0]= p4[1]= p4[2]=Bruc s1[-2]=n s1[-1]=o s1[0]=n s1[1]=y s1[2]=e s2[-2]=rn s2[-1]=to s2[0]=un s2[1]=by s2[2]=ce s3[-2]=orn s3[-1]= s3[0]=Run s3[1]= s3[2]=uce s4[-2]=Born s4[-1]= s4[0]= s4[1]= s4[2]=ruce 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Born|to w[-1]|w[0]=to|Run w[0]|w[1]=Run|by w[1]|w[2]=by|Bruce pos[-2]|pos[-1]=VBN|VBN pos[-1]|pos[0]=VBN|VBN pos[0]|pos[1]=VBN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Born w[-4..-1]=to w[1..4]=by w[1..4]=Bruce w[1..4]=Springsteen w[1..4]=on +O w[-2]=to w[-1]=Run w[0]=by w[1]=Bruce w[2]=Springsteen wl[-2]=to wl[-1]=run wl[0]=by wl[1]=bruce wl[2]=springsteen pos[-2]=VBN pos[-1]=VBN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=ULL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLLLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=t p1[-1]=R p1[0]=b p1[1]=B p1[2]=S p2[-2]=to p2[-1]=Ru p2[0]=by p2[1]=Br p2[2]=Sp p3[-2]= p3[-1]=Run p3[0]= p3[1]=Bru p3[2]=Spr p4[-2]= p4[-1]= p4[0]= p4[1]=Bruc p4[2]=Spri s1[-2]=o s1[-1]=n s1[0]=y s1[1]=e s1[2]=n s2[-2]=to s2[-1]=un s2[0]=by s2[1]=ce s2[2]=en s3[-2]= s3[-1]=Run s3[0]= s3[1]=uce s3[2]=een s4[-2]= s4[-1]= s4[0]= s4[1]=ruce s4[2]=teen 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|Run w[-1]|w[0]=Run|by w[0]|w[1]=by|Bruce w[1]|w[2]=Bruce|Springsteen pos[-2]|pos[-1]=VBN|VBN pos[-1]|pos[0]=VBN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=album w[-4..-1]=Born w[-4..-1]=to w[-4..-1]=Run w[1..4]=Bruce w[1..4]=Springsteen w[1..4]=on w[1..4]=Spotify +artist w[-2]=Run w[-1]=by w[0]=Bruce w[1]=Springsteen w[2]=on wl[-2]=run wl[-1]=by wl[0]=bruce wl[1]=springsteen wl[2]=on pos[-2]=VBN pos[-1]=IN pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLLLLLLLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=R p1[-1]=b p1[0]=B p1[1]=S p1[2]=o p2[-2]=Ru p2[-1]=by p2[0]=Br p2[1]=Sp p2[2]=on p3[-2]=Run p3[-1]= p3[0]=Bru p3[1]=Spr p3[2]= p4[-2]= p4[-1]= p4[0]=Bruc p4[1]=Spri p4[2]= s1[-2]=n s1[-1]=y s1[0]=e s1[1]=n s1[2]=n s2[-2]=un s2[-1]=by s2[0]=ce s2[1]=en s2[2]=on s3[-2]=Run s3[-1]= s3[0]=uce s3[1]=een s3[2]= s4[-2]= s4[-1]= s4[0]=ruce s4[1]=teen s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Run|by w[-1]|w[0]=by|Bruce w[0]|w[1]=Bruce|Springsteen w[1]|w[2]=Springsteen|on pos[-2]|pos[-1]=VBN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Born w[-4..-1]=to w[-4..-1]=Run w[-4..-1]=by w[1..4]=Springsteen w[1..4]=on w[1..4]=Spotify +artist w[-2]=by w[-1]=Bruce w[0]=Springsteen w[1]=on w[2]=Spotify wl[-2]=by wl[-1]=bruce wl[0]=springsteen wl[1]=on wl[2]=spotify pos[-2]=IN pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLLLLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=b p1[-1]=B p1[0]=S p1[1]=o p1[2]=S p2[-2]=by p2[-1]=Br p2[0]=Sp p2[1]=on p2[2]=Sp p3[-2]= p3[-1]=Bru p3[0]=Spr p3[1]= p3[2]=Spo p4[-2]= p4[-1]=Bruc p4[0]=Spri p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=e s1[0]=n s1[1]=n s1[2]=y s2[-2]=by s2[-1]=ce s2[0]=en s2[1]=on s2[2]=fy s3[-2]= s3[-1]=uce s3[0]=een s3[1]= s3[2]=ify s4[-2]= s4[-1]=ruce s4[0]=teen s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Bruce w[-1]|w[0]=Bruce|Springsteen w[0]|w[1]=Springsteen|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=to w[-4..-1]=Run w[-4..-1]=by w[-4..-1]=Bruce w[1..4]=on w[1..4]=Spotify +O w[-2]=Bruce w[-1]=Springsteen w[0]=on w[1]=Spotify wl[-2]=bruce wl[-1]=springsteen wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULLLL shape[-1]=ULLLLLLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=B p1[-1]=S p1[0]=o p1[1]=S p2[-2]=Br p2[-1]=Sp p2[0]=on p2[1]=Sp p3[-2]=Bru p3[-1]=Spr p3[0]= p3[1]=Spo p4[-2]=Bruc p4[-1]=Spri p4[0]= p4[1]=Spot s1[-2]=e s1[-1]=n s1[0]=n s1[1]=y s2[-2]=ce s2[-1]=en s2[0]=on s2[1]=fy s3[-2]=uce s3[-1]=een s3[0]= s3[1]=ify s4[-2]=ruce s4[-1]=teen s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Bruce|Springsteen w[-1]|w[0]=Springsteen|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=Run w[-4..-1]=by w[-4..-1]=Bruce w[-4..-1]=Springsteen w[1..4]=Spotify +service w[-2]=Springsteen w[-1]=on w[0]=Spotify wl[-2]=springsteen wl[-1]=on wl[0]=spotify pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=S p1[-1]=o p1[0]=S p2[-2]=Sp p2[-1]=on p2[0]=Sp p3[-2]=Spr p3[-1]= p3[0]=Spo p4[-2]=Spri p4[-1]= p4[0]=Spot s1[-2]=n s1[-1]=n s1[0]=y s2[-2]=en s2[-1]=on s2[0]=fy s3[-2]=een s3[-1]= s3[0]=ify s4[-2]=teen s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Springsteen|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Bruce w[-4..-1]=Springsteen w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=Imagine w[2]=Dragons wl[0]=play wl[1]=imagine wl[2]=dragons pos[0]=VBP pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=I p1[2]=D p2[0]=pl p2[1]=Im p2[2]=Dr p3[0]=pla p3[1]=Ima p3[2]=Dra p4[0]=play p4[1]=Imag p4[2]=Drag s1[0]=y s1[1]=e s1[2]=s s2[0]=ay s2[1]=ne s2[2]=ns s3[0]=lay s3[1]=ine s3[2]=ons s4[0]=play s4[1]=gine s4[2]=gons 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Imagine w[1]|w[2]=Imagine|Dragons pos[0]|pos[1]=VBP|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Imagine w[1..4]=Dragons __BOS__ +artist w[-1]=play w[0]=Imagine w[1]=Dragons wl[-1]=play wl[0]=imagine wl[1]=dragons pos[-1]=VBP pos[0]=NNP pos[1]=NNP chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=I p1[1]=D p2[-1]=pl p2[0]=Im p2[1]=Dr p3[-1]=pla p3[0]=Ima p3[1]=Dra p4[-1]=play p4[0]=Imag p4[1]=Drag s1[-1]=y s1[0]=e s1[1]=s s2[-1]=ay s2[0]=ne s2[1]=ns s3[-1]=lay s3[0]=ine s3[1]=ons s4[-1]=play s4[0]=gine s4[1]=gons 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=yes cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|Imagine w[0]|w[1]=Imagine|Dragons pos[-1]|pos[0]=VBP|NNP pos[0]|pos[1]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Dragons +artist w[-2]=play w[-1]=Imagine w[0]=Dragons wl[-2]=play wl[-1]=imagine wl[0]=dragons pos[-2]=VBP pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=I p1[0]=D p2[-2]=pl p2[-1]=Im p2[0]=Dr p3[-2]=pla p3[-1]=Ima p3[0]=Dra p4[-2]=play p4[-1]=Imag p4[0]=Drag s1[-2]=y s1[-1]=e s1[0]=s s2[-2]=ay s2[-1]=ne s2[0]=ns s3[-2]=lay s3[-1]=ine s3[0]=ons s4[-2]=play s4[-1]=gine s4[0]=gons 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|Imagine w[-1]|w[0]=Imagine|Dragons pos[-2]|pos[-1]=VBP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Imagine __EOS__ + +O w[0]=will w[1]=you w[2]=please wl[0]=will wl[1]=you wl[2]=please pos[0]=MD pos[1]=PRP pos[2]=UH chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=w p1[1]=y p1[2]=p p2[0]=wi p2[1]=yo p2[2]=pl p3[0]=wil p3[1]=you p3[2]=ple p4[0]=will p4[1]= p4[2]=plea s1[0]=l s1[1]=u s1[2]=e s2[0]=ll s2[1]=ou s2[2]=se s3[0]=ill s3[1]=you s3[2]=ase s4[0]=will s4[1]= s4[2]=ease 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=will|you w[1]|w[2]=you|please pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|UH chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=please w[1..4]=play w[1..4]=Tik __BOS__ +O w[-1]=will w[0]=you w[1]=please w[2]=play wl[-1]=will wl[0]=you wl[1]=please wl[2]=play pos[-1]=MD pos[0]=PRP pos[1]=UH pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=w p1[0]=y p1[1]=p p1[2]=p p2[-1]=wi p2[0]=yo p2[1]=pl p2[2]=pl p3[-1]=wil p3[0]=you p3[1]=ple p3[2]=pla p4[-1]=will p4[0]= p4[1]=plea p4[2]=play s1[-1]=l s1[0]=u s1[1]=e s1[2]=y s2[-1]=ll s2[0]=ou s2[1]=se s2[2]=ay s3[-1]=ill s3[0]=you s3[1]=ase s3[2]=lay s4[-1]=will s4[0]= s4[1]=ease s4[2]=play 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=will|you w[0]|w[1]=you|please w[1]|w[2]=please|play pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|UH pos[1]|pos[2]=UH|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=will w[1..4]=please w[1..4]=play w[1..4]=Tik w[1..4]=Tok +O w[-2]=will w[-1]=you w[0]=please w[1]=play w[2]=Tik wl[-2]=will wl[-1]=you wl[0]=please wl[1]=play wl[2]=tik pos[-2]=MD pos[-1]=PRP pos[0]=UH pos[1]=VB pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLLL shape[1]=LLLL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=w p1[-1]=y p1[0]=p p1[1]=p p1[2]=T p2[-2]=wi p2[-1]=yo p2[0]=pl p2[1]=pl p2[2]=Ti p3[-2]=wil p3[-1]=you p3[0]=ple p3[1]=pla p3[2]=Tik p4[-2]=will p4[-1]= p4[0]=plea p4[1]=play p4[2]= s1[-2]=l s1[-1]=u s1[0]=e s1[1]=y s1[2]=k s2[-2]=ll s2[-1]=ou s2[0]=se s2[1]=ay s2[2]=ik s3[-2]=ill s3[-1]=you s3[0]=ase s3[1]=lay s3[2]=Tik s4[-2]=will s4[-1]= s4[0]=ease s4[1]=play s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=will|you w[-1]|w[0]=you|please w[0]|w[1]=please|play w[1]|w[2]=play|Tik pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|UH pos[0]|pos[1]=UH|VB pos[1]|pos[2]=VB|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=will w[-4..-1]=you w[1..4]=play w[1..4]=Tik w[1..4]=Tok +O w[-2]=you w[-1]=please w[0]=play w[1]=Tik w[2]=Tok wl[-2]=you wl[-1]=please wl[0]=play wl[1]=tik wl[2]=tok pos[-2]=PRP pos[-1]=UH pos[0]=VB pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLLLL shape[0]=LLLL shape[1]=ULL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=y p1[-1]=p p1[0]=p p1[1]=T p1[2]=T p2[-2]=yo p2[-1]=pl p2[0]=pl p2[1]=Ti p2[2]=To p3[-2]=you p3[-1]=ple p3[0]=pla p3[1]=Tik p3[2]=Tok p4[-2]= p4[-1]=plea p4[0]=play p4[1]= p4[2]= s1[-2]=u s1[-1]=e s1[0]=y s1[1]=k s1[2]=k s2[-2]=ou s2[-1]=se s2[0]=ay s2[1]=ik s2[2]=ok s3[-2]=you s3[-1]=ase s3[0]=lay s3[1]=Tik s3[2]=Tok s4[-2]= s4[-1]=ease s4[0]=play s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|please w[-1]|w[0]=please|play w[0]|w[1]=play|Tik w[1]|w[2]=Tik|Tok pos[-2]|pos[-1]=PRP|UH pos[-1]|pos[0]=UH|VB pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=will w[-4..-1]=you w[-4..-1]=please w[1..4]=Tik w[1..4]=Tok +song w[-2]=please w[-1]=play w[0]=Tik w[1]=Tok wl[-2]=please wl[-1]=play wl[0]=tik wl[1]=tok pos[-2]=UH pos[-1]=VB pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=ULL shape[1]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=p p1[-1]=p p1[0]=T p1[1]=T p2[-2]=pl p2[-1]=pl p2[0]=Ti p2[1]=To p3[-2]=ple p3[-1]=pla p3[0]=Tik p3[1]=Tok p4[-2]=plea p4[-1]=play p4[0]= p4[1]= s1[-2]=e s1[-1]=y s1[0]=k s1[1]=k s2[-2]=se s2[-1]=ay s2[0]=ik s2[1]=ok s3[-2]=ase s3[-1]=lay s3[0]=Tik s3[1]=Tok s4[-2]=ease s4[-1]=play s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=please|play w[-1]|w[0]=play|Tik w[0]|w[1]=Tik|Tok pos[-2]|pos[-1]=UH|VB pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=will w[-4..-1]=you w[-4..-1]=please w[-4..-1]=play w[1..4]=Tok +song w[-2]=play w[-1]=Tik w[0]=Tok wl[-2]=play wl[-1]=tik wl[0]=tok pos[-2]=VB pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=T p1[0]=T p2[-2]=pl p2[-1]=Ti p2[0]=To p3[-2]=pla p3[-1]=Tik p3[0]=Tok p4[-2]=play p4[-1]= p4[0]= s1[-2]=y s1[-1]=k s1[0]=k s2[-2]=ay s2[-1]=ik s2[0]=ok s3[-2]=lay s3[-1]=Tik s3[0]=Tok s4[-2]=play s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|Tik w[-1]|w[0]=Tik|Tok pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=you w[-4..-1]=please w[-4..-1]=play w[-4..-1]=Tik __EOS__ + +O w[0]=play w[1]=a w[2]=rock wl[0]=play wl[1]=a wl[2]=rock pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=r p2[0]=pl p2[1]= p2[2]=ro p3[0]=pla p3[1]= p3[2]=roc p4[0]=play p4[1]= p4[2]=rock s1[0]=y s1[1]=a s1[2]=k s2[0]=ay s2[1]= s2[2]=ck s3[0]=lay s3[1]= s3[2]=ock s4[0]=play s4[1]= s4[2]=rock 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|rock pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=rock w[1..4]=song __BOS__ +O w[-1]=play w[0]=a w[1]=rock w[2]=song wl[-1]=play wl[0]=a wl[1]=rock wl[2]=song pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=L shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=r p1[2]=s p2[-1]=pl p2[0]= p2[1]=ro p2[2]=so p3[-1]=pla p3[0]= p3[1]=roc p3[2]=son p4[-1]=play p4[0]= p4[1]=rock p4[2]=song s1[-1]=y s1[0]=a s1[1]=k s1[2]=g s2[-1]=ay s2[0]= s2[1]=ck s2[2]=ng s3[-1]=lay s3[0]= s3[1]=ock s3[2]=ong s4[-1]=play s4[0]= s4[1]=rock s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|rock w[1]|w[2]=rock|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=rock w[1..4]=song +genre w[-2]=play w[-1]=a w[0]=rock w[1]=song wl[-2]=play wl[-1]=a wl[0]=rock wl[1]=song pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=a p1[0]=r p1[1]=s p2[-2]=pl p2[-1]= p2[0]=ro p2[1]=so p3[-2]=pla p3[-1]= p3[0]=roc p3[1]=son p4[-2]=play p4[-1]= p4[0]=rock p4[1]=song s1[-2]=y s1[-1]=a s1[0]=k s1[1]=g s2[-2]=ay s2[-1]= s2[0]=ck s2[1]=ng s3[-2]=lay s3[-1]= s3[0]=ock s3[1]=ong s4[-2]=play s4[-1]= s4[0]=rock s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|rock w[0]|w[1]=rock|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[1..4]=song +O w[-2]=a w[-1]=rock w[0]=song wl[-2]=a wl[-1]=rock wl[0]=song pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=L shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=a p1[-1]=r p1[0]=s p2[-2]= p2[-1]=ro p2[0]=so p3[-2]= p3[-1]=roc p3[0]=son p4[-2]= p4[-1]=rock p4[0]=song s1[-2]=a s1[-1]=k s1[0]=g s2[-2]= s2[-1]=ck s2[0]=ng s3[-2]= s3[-1]=ock s3[0]=ong s4[-2]= s4[-1]=rock s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=a|rock w[-1]|w[0]=rock|song pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=rock __EOS__ + +O w[0]=play w[1]=Maroon w[2]=5 wl[0]=play wl[1]=maroon wl[2]=5 pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLL shape[2]=D shaped[0]=L shaped[1]=UL shaped[2]=D type[0]=AllLetter type[1]=InitUpper type[2]=AllDigit p1[0]=p p1[1]=M p1[2]=5 p2[0]=pl p2[1]=Ma p2[2]= p3[0]=pla p3[1]=Mar p3[2]= p4[0]=play p4[1]=Maro p4[2]= s1[0]=y s1[1]=n s1[2]=5 s2[0]=ay s2[1]=on s2[2]= s3[0]=lay s3[1]=oon s3[2]= s4[0]=play s4[1]=roon s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=yes ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=no cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Maroon w[1]|w[2]=Maroon|5 pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|D type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllDigit w[1..4]=Maroon w[1..4]=5 w[1..4]=on w[1..4]=Spotify __BOS__ +artist w[-1]=play w[0]=Maroon w[1]=5 w[2]=on wl[-1]=play wl[0]=maroon wl[1]=5 wl[2]=on pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLLLL shape[1]=D shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=D shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllDigit type[2]=AllLetter p1[-1]=p p1[0]=M p1[1]=5 p1[2]=o p2[-1]=pl p2[0]=Ma p2[1]= p2[2]=on p3[-1]=pla p3[0]=Mar p3[1]= p3[2]= p4[-1]=play p4[0]=Maro p4[1]= p4[2]= s1[-1]=y s1[0]=n s1[1]=5 s1[2]=n s2[-1]=ay s2[0]=on s2[1]= s2[2]=on s3[-1]=lay s3[0]=oon s3[1]= s3[2]= s4[-1]=play s4[0]=roon s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=yes ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=no ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Maroon w[0]|w[1]=Maroon|5 w[1]|w[2]=5|on pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|D shaped[1]|shaped[2]=D|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllDigit type[1]|type[2]=AllDigit|AllLetter w[-4..-1]=play w[1..4]=5 w[1..4]=on w[1..4]=Spotify +artist w[-2]=play w[-1]=Maroon w[0]=5 w[1]=on w[2]=Spotify wl[-2]=play wl[-1]=maroon wl[0]=5 wl[1]=on wl[2]=spotify pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=D shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=D shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllDigit type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=M p1[0]=5 p1[1]=o p1[2]=S p2[-2]=pl p2[-1]=Ma p2[0]= p2[1]=on p2[2]=Sp p3[-2]=pla p3[-1]=Mar p3[0]= p3[1]= p3[2]=Spo p4[-2]=play p4[-1]=Maro p4[0]= p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=n s1[0]=5 s1[1]=n s1[2]=y s2[-2]=ay s2[-1]=on s2[0]= s2[1]=on s2[2]=fy s3[-2]=lay s3[-1]=oon s3[0]= s3[1]= s3[2]=ify s4[-2]=play s4[-1]=roon s4[0]= s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=yes ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=no ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Maroon w[-1]|w[0]=Maroon|5 w[0]|w[1]=5|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|D shaped[0]|shaped[1]=D|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllDigit type[0]|type[1]=AllDigit|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Maroon w[1..4]=on w[1..4]=Spotify +O w[-2]=Maroon w[-1]=5 w[0]=on w[1]=Spotify wl[-2]=maroon wl[-1]=5 wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULLLLL shape[-1]=D shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=D shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllDigit type[0]=AllLetter type[1]=InitUpper p1[-2]=M p1[-1]=5 p1[0]=o p1[1]=S p2[-2]=Ma p2[-1]= p2[0]=on p2[1]=Sp p3[-2]=Mar p3[-1]= p3[0]= p3[1]=Spo p4[-2]=Maro p4[-1]= p4[0]= p4[1]=Spot s1[-2]=n s1[-1]=5 s1[0]=n s1[1]=y s2[-2]=on s2[-1]= s2[0]=on s2[1]=fy s3[-2]=oon s3[-1]= s3[0]= s3[1]=ify s4[-2]=roon s4[-1]= s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=yes ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=no ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Maroon|5 w[-1]|w[0]=5|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|D shaped[-1]|shaped[0]=D|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllDigit type[-1]|type[0]=AllDigit|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Maroon w[-4..-1]=5 w[1..4]=Spotify +service w[-2]=5 w[-1]=on w[0]=Spotify wl[-2]=5 wl[-1]=on wl[0]=spotify pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=D shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=D shaped[-1]=L shaped[0]=UL type[-2]=AllDigit type[-1]=AllLetter type[0]=InitUpper p1[-2]=5 p1[-1]=o p1[0]=S p2[-2]= p2[-1]=on p2[0]=Sp p3[-2]= p3[-1]= p3[0]=Spo p4[-2]= p4[-1]= p4[0]=Spot s1[-2]=5 s1[-1]=n s1[0]=y s2[-2]= s2[-1]=on s2[0]=fy s3[-2]= s3[-1]= s3[0]=ify s4[-2]= s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=yes ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=no cl[-1]=yes cl[0]=yes ca[-2]=no ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=5|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=D|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllDigit|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Maroon w[-4..-1]=5 w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=album w[2]=Nevermind wl[0]=play wl[1]=album wl[2]=nevermind pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=N p2[0]=pl p2[1]=al p2[2]=Ne p3[0]=pla p3[1]=alb p3[2]=Nev p4[0]=play p4[1]=albu p4[2]=Neve s1[0]=y s1[1]=m s1[2]=d s2[0]=ay s2[1]=um s2[2]=nd s3[0]=lay s3[1]=bum s3[2]=ind s4[0]=play s4[1]=lbum s4[2]=mind 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Nevermind pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Nevermind w[1..4]=by w[1..4]=Nirvana __BOS__ +O w[-1]=play w[0]=album w[1]=Nevermind w[2]=by wl[-1]=play wl[0]=album wl[1]=nevermind wl[2]=by pos[-1]=VB pos[0]=NN pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=N p1[2]=b p2[-1]=pl p2[0]=al p2[1]=Ne p2[2]=by p3[-1]=pla p3[0]=alb p3[1]=Nev p3[2]= p4[-1]=play p4[0]=albu p4[1]=Neve p4[2]= s1[-1]=y s1[0]=m s1[1]=d s1[2]=y s2[-1]=ay s2[0]=um s2[1]=nd s2[2]=by s3[-1]=lay s3[0]=bum s3[1]=ind s3[2]= s4[-1]=play s4[0]=lbum s4[1]=mind s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Nevermind w[1]|w[2]=Nevermind|by pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Nevermind w[1..4]=by w[1..4]=Nirvana +album w[-2]=play w[-1]=album w[0]=Nevermind w[1]=by w[2]=Nirvana wl[-2]=play wl[-1]=album wl[0]=nevermind wl[1]=by wl[2]=nirvana pos[-2]=VB pos[-1]=NN pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=N p1[1]=b p1[2]=N p2[-2]=pl p2[-1]=al p2[0]=Ne p2[1]=by p2[2]=Ni p3[-2]=pla p3[-1]=alb p3[0]=Nev p3[1]= p3[2]=Nir p4[-2]=play p4[-1]=albu p4[0]=Neve p4[1]= p4[2]=Nirv s1[-2]=y s1[-1]=m s1[0]=d s1[1]=y s1[2]=a s2[-2]=ay s2[-1]=um s2[0]=nd s2[1]=by s2[2]=na s3[-2]=lay s3[-1]=bum s3[0]=ind s3[1]= s3[2]=ana s4[-2]=play s4[-1]=lbum s4[0]=mind s4[1]= s4[2]=vana 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Nevermind w[0]|w[1]=Nevermind|by w[1]|w[2]=by|Nirvana pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=by w[1..4]=Nirvana +O w[-2]=album w[-1]=Nevermind w[0]=by w[1]=Nirvana wl[-2]=album wl[-1]=nevermind wl[0]=by wl[1]=nirvana pos[-2]=NN pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLLLL shape[-1]=ULLLLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=a p1[-1]=N p1[0]=b p1[1]=N p2[-2]=al p2[-1]=Ne p2[0]=by p2[1]=Ni p3[-2]=alb p3[-1]=Nev p3[0]= p3[1]=Nir p4[-2]=albu p4[-1]=Neve p4[0]= p4[1]=Nirv s1[-2]=m s1[-1]=d s1[0]=y s1[1]=a s2[-2]=um s2[-1]=nd s2[0]=by s2[1]=na s3[-2]=bum s3[-1]=ind s3[0]= s3[1]=ana s4[-2]=lbum s4[-1]=mind s4[0]= s4[1]=vana 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=album|Nevermind w[-1]|w[0]=Nevermind|by w[0]|w[1]=by|Nirvana pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Nevermind w[1..4]=Nirvana +artist w[-2]=Nevermind w[-1]=by w[0]=Nirvana wl[-2]=nevermind wl[-1]=by wl[0]=nirvana pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=N p1[-1]=b p1[0]=N p2[-2]=Ne p2[-1]=by p2[0]=Ni p3[-2]=Nev p3[-1]= p3[0]=Nir p4[-2]=Neve p4[-1]= p4[0]=Nirv s1[-2]=d s1[-1]=y s1[0]=a s2[-2]=nd s2[-1]=by s2[0]=na s3[-2]=ind s3[-1]= s3[0]=ana s4[-2]=mind s4[-1]= s4[0]=vana 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Nevermind|by w[-1]|w[0]=by|Nirvana pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Nevermind w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=françoise w[2]=hardy wl[0]=play wl[1]=françoise wl[2]=hardy pos[0]=VBP pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=LLLLçLLLL shape[2]=LLLLL shaped[0]=L shaped[1]=LçL shaped[2]=L type[0]=AllLetter type[1]=NO type[2]=AllLetter p1[0]=p p1[1]=f p1[2]=h p2[0]=pl p2[1]=fr p2[2]=ha p3[0]=pla p3[1]=fra p3[2]=har p4[0]=play p4[1]=fran p4[2]=hard s1[0]=y s1[1]=e s1[2]=y s2[0]=ay s2[1]=se s2[2]=dy s3[0]=lay s3[1]=ise s3[2]=rdy s4[0]=play s4[1]=oise s4[2]=ardy 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=yes cs[2]=no w[0]|w[1]=play|françoise w[1]|w[2]=françoise|hardy pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|LçL shaped[1]|shaped[2]=LçL|L type[0]|type[1]=AllLetter|NO type[1]|type[2]=NO|AllLetter w[1..4]=françoise w[1..4]=hardy __BOS__ +artist w[-1]=play w[0]=françoise w[1]=hardy wl[-1]=play wl[0]=françoise wl[1]=hardy pos[-1]=VBP pos[0]=NN pos[1]=NN chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=LLLLçLLLL shape[1]=LLLLL shaped[-1]=L shaped[0]=LçL shaped[1]=L type[-1]=AllLetter type[0]=NO type[1]=AllLetter p1[-1]=p p1[0]=f p1[1]=h p2[-1]=pl p2[0]=fr p2[1]=ha p3[-1]=pla p3[0]=fra p3[1]=har p4[-1]=play p4[0]=fran p4[1]=hard s1[-1]=y s1[0]=e s1[1]=y s2[-1]=ay s2[0]=se s2[1]=dy s3[-1]=lay s3[0]=ise s3[1]=rdy s4[-1]=play s4[0]=oise s4[1]=ardy 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=yes cs[1]=no w[-1]|w[0]=play|françoise w[0]|w[1]=françoise|hardy pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|LçL shaped[0]|shaped[1]=LçL|L type[-1]|type[0]=AllLetter|NO type[0]|type[1]=NO|AllLetter w[-4..-1]=play w[1..4]=hardy +artist w[-2]=play w[-1]=françoise w[0]=hardy wl[-2]=play wl[-1]=françoise wl[0]=hardy pos[-2]=VBP pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=LLLLçLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=LçL shaped[0]=L type[-2]=AllLetter type[-1]=NO type[0]=AllLetter p1[-2]=p p1[-1]=f p1[0]=h p2[-2]=pl p2[-1]=fr p2[0]=ha p3[-2]=pla p3[-1]=fra p3[0]=har p4[-2]=play p4[-1]=fran p4[0]=hard s1[-2]=y s1[-1]=e s1[0]=y s2[-2]=ay s2[-1]=se s2[0]=dy s3[-2]=lay s3[-1]=ise s3[0]=rdy s4[-2]=play s4[-1]=oise s4[0]=ardy 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=yes cs[0]=no w[-2]|w[-1]=play|françoise w[-1]|w[0]=françoise|hardy pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|LçL shaped[-1]|shaped[0]=LçL|L type[-2]|type[-1]=AllLetter|NO type[-1]|type[0]=NO|AllLetter w[-4..-1]=play w[-4..-1]=françoise __EOS__ + +song w[0]=Live w[1]=While w[2]=We wl[0]=live wl[1]=while wl[2]=we pos[0]=VB pos[1]=VB pos[2]=VB chk[0]=I chk[1]=I chk[2]=I shape[0]=ULLL shape[1]=ULLLL shape[2]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[0]=L p1[1]=W p1[2]=W p2[0]=Li p2[1]=Wh p2[2]=We p3[0]=Liv p3[1]=Whi p3[2]= p4[0]=Live p4[1]=Whil p4[2]= s1[0]=e s1[1]=e s1[2]=e s2[0]=ve s2[1]=le s2[2]=We s3[0]=ive s3[1]=ile s3[2]= s4[0]=Live s4[1]=hile s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=Live|While w[1]|w[2]=While|We pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=While w[1..4]=We w[1..4]=are w[1..4]=Young __BOS__ +song w[-1]=Live w[0]=While w[1]=We w[2]=are wl[-1]=live wl[0]=while wl[1]=we wl[2]=are pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=VB chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-1]=ULLL shape[0]=ULLLL shape[1]=UL shape[2]=LLL shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=L p1[0]=W p1[1]=W p1[2]=a p2[-1]=Li p2[0]=Wh p2[1]=We p2[2]=ar p3[-1]=Liv p3[0]=Whi p3[1]= p3[2]=are p4[-1]=Live p4[0]=Whil p4[1]= p4[2]= s1[-1]=e s1[0]=e s1[1]=e s1[2]=e s2[-1]=ve s2[0]=le s2[1]=We s2[2]=re s3[-1]=ive s3[0]=ile s3[1]= s3[2]=are s4[-1]=Live s4[0]=hile s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=Live|While w[0]|w[1]=While|We w[1]|w[2]=We|are pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Live w[1..4]=We w[1..4]=are w[1..4]=Young w[1..4]=song +song w[-2]=Live w[-1]=While w[0]=We w[1]=are w[2]=Young wl[-2]=live wl[-1]=while wl[0]=we wl[1]=are wl[2]=young pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=VB chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=ULLLL shape[0]=UL shape[1]=LLL shape[2]=ULLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=L p1[-1]=W p1[0]=W p1[1]=a p1[2]=Y p2[-2]=Li p2[-1]=Wh p2[0]=We p2[1]=ar p2[2]=Yo p3[-2]=Liv p3[-1]=Whi p3[0]= p3[1]=are p3[2]=You p4[-2]=Live p4[-1]=Whil p4[0]= p4[1]= p4[2]=Youn s1[-2]=e s1[-1]=e s1[0]=e s1[1]=e s1[2]=g s2[-2]=ve s2[-1]=le s2[0]=We s2[1]=re s2[2]=ng s3[-2]=ive s3[-1]=ile s3[0]= s3[1]=are s3[2]=ung s4[-2]=Live s4[-1]=hile s4[0]= s4[1]= s4[2]=oung 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Live|While w[-1]|w[0]=While|We w[0]|w[1]=We|are w[1]|w[2]=are|Young pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Live w[-4..-1]=While w[1..4]=are w[1..4]=Young w[1..4]=song +song w[-2]=While w[-1]=We w[0]=are w[1]=Young w[2]=song wl[-2]=while wl[-1]=we wl[0]=are wl[1]=young wl[2]=song pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLLL shape[-1]=UL shape[0]=LLL shape[1]=ULLLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=W p1[-1]=W p1[0]=a p1[1]=Y p1[2]=s p2[-2]=Wh p2[-1]=We p2[0]=ar p2[1]=Yo p2[2]=so p3[-2]=Whi p3[-1]= p3[0]=are p3[1]=You p3[2]=son p4[-2]=Whil p4[-1]= p4[0]= p4[1]=Youn p4[2]=song s1[-2]=e s1[-1]=e s1[0]=e s1[1]=g s1[2]=g s2[-2]=le s2[-1]=We s2[0]=re s2[1]=ng s2[2]=ng s3[-2]=ile s3[-1]= s3[0]=are s3[1]=ung s3[2]=ong s4[-2]=hile s4[-1]= s4[0]= s4[1]=oung s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=While|We w[-1]|w[0]=We|are w[0]|w[1]=are|Young w[1]|w[2]=Young|song pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Live w[-4..-1]=While w[-4..-1]=We w[1..4]=Young w[1..4]=song +song w[-2]=We w[-1]=are w[0]=Young w[1]=song wl[-2]=we wl[-1]=are wl[0]=young wl[1]=song pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O shape[-2]=UL shape[-1]=LLL shape[0]=ULLLL shape[1]=LLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter p1[-2]=W p1[-1]=a p1[0]=Y p1[1]=s p2[-2]=We p2[-1]=ar p2[0]=Yo p2[1]=so p3[-2]= p3[-1]=are p3[0]=You p3[1]=son p4[-2]= p4[-1]= p4[0]=Youn p4[1]=song s1[-2]=e s1[-1]=e s1[0]=g s1[1]=g s2[-2]=We s2[-1]=re s2[0]=ng s2[1]=ng s3[-2]= s3[-1]=are s3[0]=ung s3[1]=ong s4[-2]= s4[-1]= s4[0]=oung s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=We|are w[-1]|w[0]=are|Young w[0]|w[1]=Young|song pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=Live w[-4..-1]=While w[-4..-1]=We w[-4..-1]=are w[1..4]=song +O w[-2]=are w[-1]=Young w[0]=song wl[-2]=are wl[-1]=young wl[0]=song pos[-2]=VB pos[-1]=VB pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=LLL shape[-1]=ULLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter p1[-2]=a p1[-1]=Y p1[0]=s p2[-2]=ar p2[-1]=Yo p2[0]=so p3[-2]=are p3[-1]=You p3[0]=son p4[-2]= p4[-1]=Youn p4[0]=song s1[-2]=e s1[-1]=g s1[0]=g s2[-2]=re s2[-1]=ng s2[0]=ng s3[-2]=are s3[-1]=ung s3[0]=ong s4[-2]= s4[-1]=oung s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=are|Young w[-1]|w[0]=Young|song pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=While w[-4..-1]=We w[-4..-1]=are w[-4..-1]=Young __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=some +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=some w[1..4]=music +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=some wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=some pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=s p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=so p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=som p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]=some s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=e s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=me s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=ome s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]=some 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|some pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=some w[1..4]=music +O w[-2]=to w[-1]=listen w[0]=to w[1]=some w[2]=music wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=some wl[2]=music pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=s p1[2]=m p2[-2]=to p2[-1]=li p2[0]=to p2[1]=so p2[2]=mu p3[-2]= p3[-1]=lis p3[0]= p3[1]=som p3[2]=mus p4[-2]= p4[-1]=list p4[0]= p4[1]=some p4[2]=musi s1[-2]=o s1[-1]=n s1[0]=o s1[1]=e s1[2]=c s2[-2]=to s2[-1]=en s2[0]=to s2[1]=me s2[2]=ic s3[-2]= s3[-1]=ten s3[0]= s3[1]=ome s3[2]=sic s4[-2]= s4[-1]=sten s4[0]= s4[1]=some s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|some w[1]|w[2]=some|music pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=some w[1..4]=music +O w[-2]=listen w[-1]=to w[0]=some w[1]=music wl[-2]=listen wl[-1]=to wl[0]=some wl[1]=music pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=l p1[-1]=t p1[0]=s p1[1]=m p2[-2]=li p2[-1]=to p2[0]=so p2[1]=mu p3[-2]=lis p3[-1]= p3[0]=som p3[1]=mus p4[-2]=list p4[-1]= p4[0]=some p4[1]=musi s1[-2]=n s1[-1]=o s1[0]=e s1[1]=c s2[-2]=en s2[-1]=to s2[0]=me s2[1]=ic s3[-2]=ten s3[-1]= s3[0]=ome s3[1]=sic s4[-2]=sten s4[-1]= s4[0]=some s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|some w[0]|w[1]=some|music pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=music +O w[-2]=to w[-1]=some w[0]=music wl[-2]=to wl[-1]=some wl[0]=music pos[-2]=IN pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=s p1[0]=m p2[-2]=to p2[-1]=so p2[0]=mu p3[-2]= p3[-1]=som p3[0]=mus p4[-2]= p4[-1]=some p4[0]=musi s1[-2]=o s1[-1]=e s1[0]=c s2[-2]=to s2[-1]=me s2[0]=ic s3[-2]= s3[-1]=ome s3[0]=sic s4[-2]= s4[-1]=some s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|some w[-1]|w[0]=some|music pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=some __EOS__ + +O w[0]=play w[1]=Budapest wl[0]=play wl[1]=budapest pos[0]=VB pos[1]=NNP chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=ULLLLLLL shaped[0]=L shaped[1]=UL type[0]=AllLetter type[1]=InitUpper p1[0]=p p1[1]=B p2[0]=pl p2[1]=Bu p3[0]=pla p3[1]=Bud p4[0]=play p4[1]=Buda s1[0]=y s1[1]=t s2[0]=ay s2[1]=st s3[0]=lay s3[1]=est s4[0]=play s4[1]=pest 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=yes cs[0]=no cs[1]=no w[0]|w[1]=play|Budapest pos[0]|pos[1]=VB|NNP chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|UL type[0]|type[1]=AllLetter|InitUpper w[1..4]=Budapest __BOS__ +song w[-1]=play w[0]=Budapest wl[-1]=play wl[0]=budapest pos[-1]=VB pos[0]=NNP chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=ULLLLLLL shaped[-1]=L shaped[0]=UL type[-1]=AllLetter type[0]=InitUpper p1[-1]=p p1[0]=B p2[-1]=pl p2[0]=Bu p3[-1]=pla p3[0]=Bud p4[-1]=play p4[0]=Buda s1[-1]=y s1[0]=t s2[-1]=ay s2[0]=st s3[-1]=lay s3[0]=est s4[-1]=play s4[0]=pest 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=yes cs[-1]=no cs[0]=no w[-1]|w[0]=play|Budapest pos[-1]|pos[0]=VB|NNP chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|UL type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play __EOS__ + +O w[0]=play w[1]=Sweet w[2]=Dreams wl[0]=play wl[1]=sweet wl[2]=dreams pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=S p1[2]=D p2[0]=pl p2[1]=Sw p2[2]=Dr p3[0]=pla p3[1]=Swe p3[2]=Dre p4[0]=play p4[1]=Swee p4[2]=Drea s1[0]=y s1[1]=t s1[2]=s s2[0]=ay s2[1]=et s2[2]=ms s3[0]=lay s3[1]=eet s3[2]=ams s4[0]=play s4[1]=weet s4[2]=eams 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=yes cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Sweet w[1]|w[2]=Sweet|Dreams pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Sweet w[1..4]=Dreams w[1..4]=by w[1..4]=Eurythmics __BOS__ +song w[-1]=play w[0]=Sweet w[1]=Dreams w[2]=by wl[-1]=play wl[0]=sweet wl[1]=dreams wl[2]=by pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULLLLL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=S p1[1]=D p1[2]=b p2[-1]=pl p2[0]=Sw p2[1]=Dr p2[2]=by p3[-1]=pla p3[0]=Swe p3[1]=Dre p3[2]= p4[-1]=play p4[0]=Swee p4[1]=Drea p4[2]= s1[-1]=y s1[0]=t s1[1]=s s1[2]=y s2[-1]=ay s2[0]=et s2[1]=ms s2[2]=by s3[-1]=lay s3[0]=eet s3[1]=ams s3[2]= s4[-1]=play s4[0]=weet s4[1]=eams s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Sweet w[0]|w[1]=Sweet|Dreams w[1]|w[2]=Dreams|by pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Dreams w[1..4]=by w[1..4]=Eurythmics +song w[-2]=play w[-1]=Sweet w[0]=Dreams w[1]=by w[2]=Eurythmics wl[-2]=play wl[-1]=sweet wl[0]=dreams wl[1]=by wl[2]=eurythmics pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULLLLL shape[1]=LL shape[2]=ULLLLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=S p1[0]=D p1[1]=b p1[2]=E p2[-2]=pl p2[-1]=Sw p2[0]=Dr p2[1]=by p2[2]=Eu p3[-2]=pla p3[-1]=Swe p3[0]=Dre p3[1]= p3[2]=Eur p4[-2]=play p4[-1]=Swee p4[0]=Drea p4[1]= p4[2]=Eury s1[-2]=y s1[-1]=t s1[0]=s s1[1]=y s1[2]=s s2[-2]=ay s2[-1]=et s2[0]=ms s2[1]=by s2[2]=cs s3[-2]=lay s3[-1]=eet s3[0]=ams s3[1]= s3[2]=ics s4[-2]=play s4[-1]=weet s4[0]=eams s4[1]= s4[2]=mics 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Sweet w[-1]|w[0]=Sweet|Dreams w[0]|w[1]=Dreams|by w[1]|w[2]=by|Eurythmics pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Sweet w[1..4]=by w[1..4]=Eurythmics +O w[-2]=Sweet w[-1]=Dreams w[0]=by w[1]=Eurythmics wl[-2]=sweet wl[-1]=dreams wl[0]=by wl[1]=eurythmics pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULLLL shape[-1]=ULLLLL shape[0]=LL shape[1]=ULLLLLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=S p1[-1]=D p1[0]=b p1[1]=E p2[-2]=Sw p2[-1]=Dr p2[0]=by p2[1]=Eu p3[-2]=Swe p3[-1]=Dre p3[0]= p3[1]=Eur p4[-2]=Swee p4[-1]=Drea p4[0]= p4[1]=Eury s1[-2]=t s1[-1]=s s1[0]=y s1[1]=s s2[-2]=et s2[-1]=ms s2[0]=by s2[1]=cs s3[-2]=eet s3[-1]=ams s3[0]= s3[1]=ics s4[-2]=weet s4[-1]=eams s4[0]= s4[1]=mics 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Sweet|Dreams w[-1]|w[0]=Dreams|by w[0]|w[1]=by|Eurythmics pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Sweet w[-4..-1]=Dreams w[1..4]=Eurythmics +artist w[-2]=Dreams w[-1]=by w[0]=Eurythmics wl[-2]=dreams wl[-1]=by wl[0]=eurythmics pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=ULLLLLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=D p1[-1]=b p1[0]=E p2[-2]=Dr p2[-1]=by p2[0]=Eu p3[-2]=Dre p3[-1]= p3[0]=Eur p4[-2]=Drea p4[-1]= p4[0]=Eury s1[-2]=s s1[-1]=y s1[0]=s s2[-2]=ms s2[-1]=by s2[0]=cs s3[-2]=ams s3[-1]= s3[0]=ics s4[-2]=eams s4[-1]= s4[0]=mics 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Dreams|by w[-1]|w[0]=by|Eurythmics pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Sweet w[-4..-1]=Dreams w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=the w[2]=50 wl[0]=play wl[1]=the wl[2]=50 pos[0]=VB pos[1]=DT pos[2]=CD chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLL shape[2]=DD shaped[0]=L shaped[1]=L shaped[2]=D type[0]=AllLetter type[1]=AllLetter type[2]=AllDigit p1[0]=p p1[1]=t p1[2]=5 p2[0]=pl p2[1]=th p2[2]=50 p3[0]=pla p3[1]=the p3[2]= p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=e s1[2]=0 s2[0]=ay s2[1]=he s2[2]=50 s3[0]=lay s3[1]=the s3[2]= s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=yes 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=yes ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=no cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|50 pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|CD chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|D type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllDigit w[1..4]=the w[1..4]=50 w[1..4]=Great w[1..4]=Beatles __BOS__ +O w[-1]=play w[0]=the w[1]=50 w[2]=Great wl[-1]=play wl[0]=the wl[1]=50 wl[2]=great pos[-1]=VB pos[0]=DT pos[1]=CD pos[2]=CD chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=DD shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=D shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllDigit type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=5 p1[2]=G p2[-1]=pl p2[0]=th p2[1]=50 p2[2]=Gr p3[-1]=pla p3[0]=the p3[1]= p3[2]=Gre p4[-1]=play p4[0]= p4[1]= p4[2]=Grea s1[-1]=y s1[0]=e s1[1]=0 s1[2]=t s2[-1]=ay s2[0]=he s2[1]=50 s2[2]=at s3[-1]=lay s3[0]=the s3[1]= s3[2]=eat s4[-1]=play s4[0]= s4[1]= s4[2]=reat 2d[-1]=no 2d[0]=no 2d[1]=yes 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=yes ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=no ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|50 w[1]|w[2]=50|Great pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|CD pos[1]|pos[2]=CD|CD chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|D shaped[1]|shaped[2]=D|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllDigit type[1]|type[2]=AllDigit|InitUpper w[-4..-1]=play w[1..4]=50 w[1..4]=Great w[1..4]=Beatles w[1..4]=Songs +playlist w[-2]=play w[-1]=the w[0]=50 w[1]=Great w[2]=Beatles wl[-2]=play wl[-1]=the wl[0]=50 wl[1]=great wl[2]=beatles pos[-2]=VB pos[-1]=DT pos[0]=CD pos[1]=CD pos[2]=CD chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=DD shape[1]=ULLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=D shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllDigit type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=t p1[0]=5 p1[1]=G p1[2]=B p2[-2]=pl p2[-1]=th p2[0]=50 p2[1]=Gr p2[2]=Be p3[-2]=pla p3[-1]=the p3[0]= p3[1]=Gre p3[2]=Bea p4[-2]=play p4[-1]= p4[0]= p4[1]=Grea p4[2]=Beat s1[-2]=y s1[-1]=e s1[0]=0 s1[1]=t s1[2]=s s2[-2]=ay s2[-1]=he s2[0]=50 s2[1]=at s2[2]=es s3[-2]=lay s3[-1]=the s3[0]= s3[1]=eat s3[2]=les s4[-2]=play s4[-1]= s4[0]= s4[1]=reat s4[2]=tles 2d[-2]=no 2d[-1]=no 2d[0]=yes 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=yes ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=no ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|50 w[0]|w[1]=50|Great w[1]|w[2]=Great|Beatles pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|CD pos[0]|pos[1]=CD|CD pos[1]|pos[2]=CD|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|D shaped[0]|shaped[1]=D|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllDigit type[0]|type[1]=AllDigit|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[1..4]=Great w[1..4]=Beatles w[1..4]=Songs w[1..4]=playlist +playlist w[-2]=the w[-1]=50 w[0]=Great w[1]=Beatles w[2]=Songs wl[-2]=the wl[-1]=50 wl[0]=great wl[1]=beatles wl[2]=songs pos[-2]=DT pos[-1]=CD pos[0]=CD pos[1]=CD pos[2]=CD chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=DD shape[0]=ULLLL shape[1]=ULLLLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=D shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllDigit type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=t p1[-1]=5 p1[0]=G p1[1]=B p1[2]=S p2[-2]=th p2[-1]=50 p2[0]=Gr p2[1]=Be p2[2]=So p3[-2]=the p3[-1]= p3[0]=Gre p3[1]=Bea p3[2]=Son p4[-2]= p4[-1]= p4[0]=Grea p4[1]=Beat p4[2]=Song s1[-2]=e s1[-1]=0 s1[0]=t s1[1]=s s1[2]=s s2[-2]=he s2[-1]=50 s2[0]=at s2[1]=es s2[2]=gs s3[-2]=the s3[-1]= s3[0]=eat s3[1]=les s3[2]=ngs s4[-2]= s4[-1]= s4[0]=reat s4[1]=tles s4[2]=ongs 2d[-2]=no 2d[-1]=yes 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=yes ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|50 w[-1]|w[0]=50|Great w[0]|w[1]=Great|Beatles w[1]|w[2]=Beatles|Songs pos[-2]|pos[-1]=DT|CD pos[-1]|pos[0]=CD|CD pos[0]|pos[1]=CD|CD pos[1]|pos[2]=CD|CD chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|D shaped[-1]|shaped[0]=D|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllDigit type[-1]|type[0]=AllDigit|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=50 w[1..4]=Beatles w[1..4]=Songs w[1..4]=playlist w[1..4]=in +playlist w[-2]=50 w[-1]=Great w[0]=Beatles w[1]=Songs w[2]=playlist wl[-2]=50 wl[-1]=great wl[0]=beatles wl[1]=songs wl[2]=playlist pos[-2]=CD pos[-1]=CD pos[0]=CD pos[1]=CD pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=DD shape[-1]=ULLLL shape[0]=ULLLLLL shape[1]=ULLLL shape[2]=LLLLLLLL shaped[-2]=D shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllDigit type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=5 p1[-1]=G p1[0]=B p1[1]=S p1[2]=p p2[-2]=50 p2[-1]=Gr p2[0]=Be p2[1]=So p2[2]=pl p3[-2]= p3[-1]=Gre p3[0]=Bea p3[1]=Son p3[2]=pla p4[-2]= p4[-1]=Grea p4[0]=Beat p4[1]=Song p4[2]=play s1[-2]=0 s1[-1]=t s1[0]=s s1[1]=s s1[2]=t s2[-2]=50 s2[-1]=at s2[0]=es s2[1]=gs s2[2]=st s3[-2]= s3[-1]=eat s3[0]=les s3[1]=ngs s3[2]=ist s4[-2]= s4[-1]=reat s4[0]=tles s4[1]=ongs s4[2]=list 2d[-2]=yes 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=no ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=50|Great w[-1]|w[0]=Great|Beatles w[0]|w[1]=Beatles|Songs w[1]|w[2]=Songs|playlist pos[-2]|pos[-1]=CD|CD pos[-1]|pos[0]=CD|CD pos[0]|pos[1]=CD|CD pos[1]|pos[2]=CD|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=D|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllDigit|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=50 w[-4..-1]=Great w[1..4]=Songs w[1..4]=playlist w[1..4]=in w[1..4]=Prime +playlist w[-2]=Great w[-1]=Beatles w[0]=Songs w[1]=playlist w[2]=in wl[-2]=great wl[-1]=beatles wl[0]=songs wl[1]=playlist wl[2]=in pos[-2]=CD pos[-1]=CD pos[0]=CD pos[1]=NN pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=ULLLL shape[-1]=ULLLLLL shape[0]=ULLLL shape[1]=LLLLLLLL shape[2]=LL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=G p1[-1]=B p1[0]=S p1[1]=p p1[2]=i p2[-2]=Gr p2[-1]=Be p2[0]=So p2[1]=pl p2[2]=in p3[-2]=Gre p3[-1]=Bea p3[0]=Son p3[1]=pla p3[2]= p4[-2]=Grea p4[-1]=Beat p4[0]=Song p4[1]=play p4[2]= s1[-2]=t s1[-1]=s s1[0]=s s1[1]=t s1[2]=n s2[-2]=at s2[-1]=es s2[0]=gs s2[1]=st s2[2]=in s3[-2]=eat s3[-1]=les s3[0]=ngs s3[1]=ist s3[2]= s4[-2]=reat s4[-1]=tles s4[0]=ongs s4[1]=list s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Great|Beatles w[-1]|w[0]=Beatles|Songs w[0]|w[1]=Songs|playlist w[1]|w[2]=playlist|in pos[-2]|pos[-1]=CD|CD pos[-1]|pos[0]=CD|CD pos[0]|pos[1]=CD|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=the w[-4..-1]=50 w[-4..-1]=Great w[-4..-1]=Beatles w[1..4]=playlist w[1..4]=in w[1..4]=Prime w[1..4]=Music +O w[-2]=Beatles w[-1]=Songs w[0]=playlist w[1]=in w[2]=Prime wl[-2]=beatles wl[-1]=songs wl[0]=playlist wl[1]=in wl[2]=prime pos[-2]=CD pos[-1]=CD pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=ULLLLLL shape[-1]=ULLLL shape[0]=LLLLLLLL shape[1]=LL shape[2]=ULLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=B p1[-1]=S p1[0]=p p1[1]=i p1[2]=P p2[-2]=Be p2[-1]=So p2[0]=pl p2[1]=in p2[2]=Pr p3[-2]=Bea p3[-1]=Son p3[0]=pla p3[1]= p3[2]=Pri p4[-2]=Beat p4[-1]=Song p4[0]=play p4[1]= p4[2]=Prim s1[-2]=s s1[-1]=s s1[0]=t s1[1]=n s1[2]=e s2[-2]=es s2[-1]=gs s2[0]=st s2[1]=in s2[2]=me s3[-2]=les s3[-1]=ngs s3[0]=ist s3[1]= s3[2]=ime s4[-2]=tles s4[-1]=ongs s4[0]=list s4[1]= s4[2]=rime 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Beatles|Songs w[-1]|w[0]=Songs|playlist w[0]|w[1]=playlist|in w[1]|w[2]=in|Prime pos[-2]|pos[-1]=CD|CD pos[-1]|pos[0]=CD|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=50 w[-4..-1]=Great w[-4..-1]=Beatles w[-4..-1]=Songs w[1..4]=in w[1..4]=Prime w[1..4]=Music +O w[-2]=Songs w[-1]=playlist w[0]=in w[1]=Prime w[2]=Music wl[-2]=songs wl[-1]=playlist wl[0]=in wl[1]=prime wl[2]=music pos[-2]=CD pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=LLLLLLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=S p1[-1]=p p1[0]=i p1[1]=P p1[2]=M p2[-2]=So p2[-1]=pl p2[0]=in p2[1]=Pr p2[2]=Mu p3[-2]=Son p3[-1]=pla p3[0]= p3[1]=Pri p3[2]=Mus p4[-2]=Song p4[-1]=play p4[0]= p4[1]=Prim p4[2]=Musi s1[-2]=s s1[-1]=t s1[0]=n s1[1]=e s1[2]=c s2[-2]=gs s2[-1]=st s2[0]=in s2[1]=me s2[2]=ic s3[-2]=ngs s3[-1]=ist s3[0]= s3[1]=ime s3[2]=sic s4[-2]=ongs s4[-1]=list s4[0]= s4[1]=rime s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Songs|playlist w[-1]|w[0]=playlist|in w[0]|w[1]=in|Prime w[1]|w[2]=Prime|Music pos[-2]|pos[-1]=CD|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=Great w[-4..-1]=Beatles w[-4..-1]=Songs w[-4..-1]=playlist w[1..4]=Prime w[1..4]=Music +service w[-2]=playlist w[-1]=in w[0]=Prime w[1]=Music wl[-2]=playlist wl[-1]=in wl[0]=prime wl[1]=music pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=p p1[-1]=i p1[0]=P p1[1]=M p2[-2]=pl p2[-1]=in p2[0]=Pr p2[1]=Mu p3[-2]=pla p3[-1]= p3[0]=Pri p3[1]=Mus p4[-2]=play p4[-1]= p4[0]=Prim p4[1]=Musi s1[-2]=t s1[-1]=n s1[0]=e s1[1]=c s2[-2]=st s2[-1]=in s2[0]=me s2[1]=ic s3[-2]=ist s3[-1]= s3[0]=ime s3[1]=sic s4[-2]=list s4[-1]= s4[0]=rime s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=playlist|in w[-1]|w[0]=in|Prime w[0]|w[1]=Prime|Music pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Beatles w[-4..-1]=Songs w[-4..-1]=playlist w[-4..-1]=in w[1..4]=Music +service w[-2]=in w[-1]=Prime w[0]=Music wl[-2]=in wl[-1]=prime wl[0]=music pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=i p1[-1]=P p1[0]=M p2[-2]=in p2[-1]=Pr p2[0]=Mu p3[-2]= p3[-1]=Pri p3[0]=Mus p4[-2]= p4[-1]=Prim p4[0]=Musi s1[-2]=n s1[-1]=e s1[0]=c s2[-2]=in s2[-1]=me s2[0]=ic s3[-2]= s3[-1]=ime s3[0]=sic s4[-2]= s4[-1]=rime s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=in|Prime w[-1]|w[0]=Prime|Music pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Songs w[-4..-1]=playlist w[-4..-1]=in w[-4..-1]=Prime __EOS__ + +O w[0]=continue w[1]=playing wl[0]=continue wl[1]=playing pos[0]=VB pos[1]=VBG chk[0]=O chk[1]=O shape[0]=LLLLLLLL shape[1]=LLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=c p1[1]=p p2[0]=co p2[1]=pl p3[0]=con p3[1]=pla p4[0]=cont p4[1]=play s1[0]=e s1[1]=g s2[0]=ue s2[1]=ng s3[0]=nue s3[1]=ing s4[0]=inue s4[1]=ying 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=continue|playing pos[0]|pos[1]=VB|VBG chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=playing __BOS__ +O w[-1]=continue w[0]=playing wl[-1]=continue wl[0]=playing pos[-1]=VB pos[0]=VBG chk[-1]=O chk[0]=O shape[-1]=LLLLLLLL shape[0]=LLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=c p1[0]=p p2[-1]=co p2[0]=pl p3[-1]=con p3[0]=pla p4[-1]=cont p4[0]=play s1[-1]=e s1[0]=g s2[-1]=ue s2[0]=ng s3[-1]=nue s3[0]=ing s4[-1]=inue s4[0]=ying 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=continue|playing pos[-1]|pos[0]=VB|VBG chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=continue __EOS__ + +O w[0]=start w[1]=music w[2]=again wl[0]=start wl[1]=music wl[2]=again pos[0]=VB pos[1]=NN pos[2]=RB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LLLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=m p1[2]=a p2[0]=st p2[1]=mu p2[2]=ag p3[0]=sta p3[1]=mus p3[2]=aga p4[0]=star p4[1]=musi p4[2]=agai s1[0]=t s1[1]=c s1[2]=n s2[0]=rt s2[1]=ic s2[2]=in s3[0]=art s3[1]=sic s3[2]=ain s4[0]=tart s4[1]=usic s4[2]=gain 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=start|music w[1]|w[2]=music|again pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|RB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=music w[1..4]=again __BOS__ +O w[-1]=start w[0]=music w[1]=again wl[-1]=start wl[0]=music wl[1]=again pos[-1]=VB pos[0]=NN pos[1]=RB chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLL shape[0]=LLLLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=s p1[0]=m p1[1]=a p2[-1]=st p2[0]=mu p2[1]=ag p3[-1]=sta p3[0]=mus p3[1]=aga p4[-1]=star p4[0]=musi p4[1]=agai s1[-1]=t s1[0]=c s1[1]=n s2[-1]=rt s2[0]=ic s2[1]=in s3[-1]=art s3[0]=sic s3[1]=ain s4[-1]=tart s4[0]=usic s4[1]=gain 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=start|music w[0]|w[1]=music|again pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|RB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=start w[1..4]=again +O w[-2]=start w[-1]=music w[0]=again wl[-2]=start wl[-1]=music wl[0]=again pos[-2]=VB pos[-1]=NN pos[0]=RB chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=m p1[0]=a p2[-2]=st p2[-1]=mu p2[0]=ag p3[-2]=sta p3[-1]=mus p3[0]=aga p4[-2]=star p4[-1]=musi p4[0]=agai s1[-2]=t s1[-1]=c s1[0]=n s2[-2]=rt s2[-1]=ic s2[0]=in s3[-2]=art s3[-1]=sic s3[0]=ain s4[-2]=tart s4[-1]=usic s4[0]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=start|music w[-1]|w[0]=music|again pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=start w[-4..-1]=music __EOS__ + +O w[0]=resume wl[0]=resume pos[0]=VB chk[0]=O shape[0]=LLLLLL shaped[0]=L type[0]=AllLetter p1[0]=r p2[0]=re p3[0]=res p4[0]=resu s1[0]=e s2[0]=me s3[0]=ume s4[0]=sume 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=resume w[1]=it wl[0]=resume wl[1]=it pos[0]=VB pos[1]=PRP chk[0]=O chk[1]=O shape[0]=LLLLLL shape[1]=LL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=r p1[1]=i p2[0]=re p2[1]=it p3[0]=res p3[1]= p4[0]=resu p4[1]= s1[0]=e s1[1]=t s2[0]=me s2[1]=it s3[0]=ume s3[1]= s4[0]=sume s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=resume|it pos[0]|pos[1]=VB|PRP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=it __BOS__ +O w[-1]=resume w[0]=it wl[-1]=resume wl[0]=it pos[-1]=VB pos[0]=PRP chk[-1]=O chk[0]=O shape[-1]=LLLLLL shape[0]=LL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=r p1[0]=i p2[-1]=re p2[0]=it p3[-1]=res p3[0]= p4[-1]=resu p4[0]= s1[-1]=e s1[0]=t s2[-1]=me s2[0]=it s3[-1]=ume s3[0]= s4[-1]=sume s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=resume|it pos[-1]|pos[0]=VB|PRP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=resume __EOS__ + +O w[0]=resume w[1]=playing wl[0]=resume wl[1]=playing pos[0]=VB pos[1]=VBG chk[0]=O chk[1]=O shape[0]=LLLLLL shape[1]=LLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=r p1[1]=p p2[0]=re p2[1]=pl p3[0]=res p3[1]=pla p4[0]=resu p4[1]=play s1[0]=e s1[1]=g s2[0]=me s2[1]=ng s3[0]=ume s3[1]=ing s4[0]=sume s4[1]=ying 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=resume|playing pos[0]|pos[1]=VB|VBG chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=playing __BOS__ +O w[-1]=resume w[0]=playing wl[-1]=resume wl[0]=playing pos[-1]=VB pos[0]=VBG chk[-1]=O chk[0]=O shape[-1]=LLLLLL shape[0]=LLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=r p1[0]=p p2[-1]=re p2[0]=pl p3[-1]=res p3[0]=pla p4[-1]=resu p4[0]=play s1[-1]=e s1[0]=g s2[-1]=me s2[0]=ng s3[-1]=ume s3[0]=ing s4[-1]=sume s4[0]=ying 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=resume|playing pos[-1]|pos[0]=VB|VBG chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=resume __EOS__ + +O w[0]=continue w[1]=the w[2]=music wl[0]=continue wl[1]=the wl[2]=music pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLLLL shape[1]=LLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=t p1[2]=m p2[0]=co p2[1]=th p2[2]=mu p3[0]=con p3[1]=the p3[2]=mus p4[0]=cont p4[1]= p4[2]=musi s1[0]=e s1[1]=e s1[2]=c s2[0]=ue s2[1]=he s2[2]=ic s3[0]=nue s3[1]=the s3[2]=sic s4[0]=inue s4[1]= s4[2]=usic 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=continue|the w[1]|w[2]=the|music pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=music __BOS__ +O w[-1]=continue w[0]=the w[1]=music wl[-1]=continue wl[0]=the wl[1]=music pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLLLL shape[0]=LLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=c p1[0]=t p1[1]=m p2[-1]=co p2[0]=th p2[1]=mu p3[-1]=con p3[0]=the p3[1]=mus p4[-1]=cont p4[0]= p4[1]=musi s1[-1]=e s1[0]=e s1[1]=c s2[-1]=ue s2[0]=he s2[1]=ic s3[-1]=nue s3[0]=the s3[1]=sic s4[-1]=inue s4[0]= s4[1]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=continue|the w[0]|w[1]=the|music pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=continue w[1..4]=music +O w[-2]=continue w[-1]=the w[0]=music wl[-2]=continue wl[-1]=the wl[0]=music pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLLLL shape[-1]=LLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=c p1[-1]=t p1[0]=m p2[-2]=co p2[-1]=th p2[0]=mu p3[-2]=con p3[-1]=the p3[0]=mus p4[-2]=cont p4[-1]= p4[0]=musi s1[-2]=e s1[-1]=e s1[0]=c s2[-2]=ue s2[-1]=he s2[0]=ic s3[-2]=nue s3[-1]=the s3[0]=sic s4[-2]=inue s4[-1]= s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=continue|the w[-1]|w[0]=the|music pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=continue w[-4..-1]=the __EOS__ + +O w[0]=continue wl[0]=continue pos[0]=VB chk[0]=O shape[0]=LLLLLLLL shaped[0]=L type[0]=AllLetter p1[0]=c p2[0]=co p3[0]=con p4[0]=cont s1[0]=e s2[0]=ue s3[0]=nue s4[0]=inue 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=resume w[1]=music wl[0]=resume wl[1]=music pos[0]=VB pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLLLL shape[1]=LLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=r p1[1]=m p2[0]=re p2[1]=mu p3[0]=res p3[1]=mus p4[0]=resu p4[1]=musi s1[0]=e s1[1]=c s2[0]=me s2[1]=ic s3[0]=ume s3[1]=sic s4[0]=sume s4[1]=usic 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=resume|music pos[0]|pos[1]=VB|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=music __BOS__ +O w[-1]=resume w[0]=music wl[-1]=resume wl[0]=music pos[-1]=VB pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLLLL shape[0]=LLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=r p1[0]=m p2[-1]=re p2[0]=mu p3[-1]=res p3[0]=mus p4[-1]=resu p4[0]=musi s1[-1]=e s1[0]=c s2[-1]=me s2[0]=ic s3[-1]=ume s3[0]=sic s4[-1]=sume s4[0]=usic 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=resume|music pos[-1]|pos[0]=VB|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=resume __EOS__ + +O w[0]=restart w[1]=music wl[0]=restart wl[1]=music pos[0]=VB pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLLLLL shape[1]=LLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=r p1[1]=m p2[0]=re p2[1]=mu p3[0]=res p3[1]=mus p4[0]=rest p4[1]=musi s1[0]=t s1[1]=c s2[0]=rt s2[1]=ic s3[0]=art s3[1]=sic s4[0]=tart s4[1]=usic 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=restart|music pos[0]|pos[1]=VB|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=music __BOS__ +O w[-1]=restart w[0]=music wl[-1]=restart wl[0]=music pos[-1]=VB pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLLLLL shape[0]=LLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=r p1[0]=m p2[-1]=re p2[0]=mu p3[-1]=res p3[0]=mus p4[-1]=rest p4[0]=musi s1[-1]=t s1[0]=c s2[-1]=rt s2[0]=ic s3[-1]=art s3[0]=sic s4[-1]=tart s4[0]=usic 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=restart|music pos[-1]|pos[0]=VB|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=restart __EOS__ + +O w[0]=resume w[1]=this w[2]=song wl[0]=resume wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=t p1[2]=s p2[0]=re p2[1]=th p2[2]=so p3[0]=res p3[1]=thi p3[2]=son p4[0]=resu p4[1]=this p4[2]=song s1[0]=e s1[1]=s s1[2]=g s2[0]=me s2[1]=is s2[2]=ng s3[0]=ume s3[1]=his s3[2]=ong s4[0]=sume s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=resume|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song __BOS__ +O w[-1]=resume w[0]=this w[1]=song wl[-1]=resume wl[0]=this wl[1]=song pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=r p1[0]=t p1[1]=s p2[-1]=re p2[0]=th p2[1]=so p3[-1]=res p3[0]=thi p3[1]=son p4[-1]=resu p4[0]=this p4[1]=song s1[-1]=e s1[0]=s s1[1]=g s2[-1]=me s2[0]=is s2[1]=ng s3[-1]=ume s3[0]=his s3[1]=ong s4[-1]=sume s4[0]=this s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=resume|this w[0]|w[1]=this|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=resume w[1..4]=song +O w[-2]=resume w[-1]=this w[0]=song wl[-2]=resume wl[-1]=this wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=r p1[-1]=t p1[0]=s p2[-2]=re p2[-1]=th p2[0]=so p3[-2]=res p3[-1]=thi p3[0]=son p4[-2]=resu p4[-1]=this p4[0]=song s1[-2]=e s1[-1]=s s1[0]=g s2[-2]=me s2[-1]=is s2[0]=ng s3[-2]=ume s3[-1]=his s3[0]=ong s4[-2]=sume s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=resume|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=resume w[-4..-1]=this __EOS__ + +O w[0]=can w[1]=you w[2]=pause wl[0]=can wl[1]=you wl[2]=pause pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pa p3[0]=can p3[1]=you p3[2]=pau p4[0]= p4[1]= p4[2]=paus s1[0]=n s1[1]=u s1[2]=e s2[0]=an s2[1]=ou s2[2]=se s3[0]=can s3[1]=you s3[2]=use s4[0]= s4[1]= s4[2]=ause 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|pause pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=pause w[1..4]=it __BOS__ +O w[-1]=can w[0]=you w[1]=pause w[2]=it wl[-1]=can wl[0]=you wl[1]=pause wl[2]=it pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=i p2[-1]=ca p2[0]=yo p2[1]=pa p2[2]=it p3[-1]=can p3[0]=you p3[1]=pau p3[2]= p4[-1]= p4[0]= p4[1]=paus p4[2]= s1[-1]=n s1[0]=u s1[1]=e s1[2]=t s2[-1]=an s2[0]=ou s2[1]=se s2[2]=it s3[-1]=can s3[0]=you s3[1]=use s3[2]= s4[-1]= s4[0]= s4[1]=ause s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|pause w[1]|w[2]=pause|it pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=pause w[1..4]=it +O w[-2]=can w[-1]=you w[0]=pause w[1]=it wl[-2]=can wl[-1]=you wl[0]=pause wl[1]=it pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLLL shape[1]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=i p2[-2]=ca p2[-1]=yo p2[0]=pa p2[1]=it p3[-2]=can p3[-1]=you p3[0]=pau p3[1]= p4[-2]= p4[-1]= p4[0]=paus p4[1]= s1[-2]=n s1[-1]=u s1[0]=e s1[1]=t s2[-2]=an s2[-1]=ou s2[0]=se s2[1]=it s3[-2]=can s3[-1]=you s3[0]=use s3[1]= s4[-2]= s4[-1]= s4[0]=ause s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|pause w[0]|w[1]=pause|it pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=it +O w[-2]=you w[-1]=pause w[0]=it wl[-2]=you wl[-1]=pause wl[0]=it pos[-2]=PRP pos[-1]=VB pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=y p1[-1]=p p1[0]=i p2[-2]=yo p2[-1]=pa p2[0]=it p3[-2]=you p3[-1]=pau p3[0]= p4[-2]= p4[-1]=paus p4[0]= s1[-2]=u s1[-1]=e s1[0]=t s2[-2]=ou s2[-1]=se s2[0]=it s3[-2]=you s3[-1]=use s3[0]= s4[-2]= s4[-1]=ause s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=you|pause w[-1]|w[0]=pause|it pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=pause __EOS__ + +O w[0]=pause w[1]=it wl[0]=pause wl[1]=it pos[0]=VB pos[1]=PRP chk[0]=O chk[1]=O shape[0]=LLLLL shape[1]=LL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=i p2[0]=pa p2[1]=it p3[0]=pau p3[1]= p4[0]=paus p4[1]= s1[0]=e s1[1]=t s2[0]=se s2[1]=it s3[0]=use s3[1]= s4[0]=ause s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=pause|it pos[0]|pos[1]=VB|PRP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=it __BOS__ +O w[-1]=pause w[0]=it wl[-1]=pause wl[0]=it pos[-1]=VB pos[0]=PRP chk[-1]=O chk[0]=O shape[-1]=LLLLL shape[0]=LL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=i p2[-1]=pa p2[0]=it p3[-1]=pau p3[0]= p4[-1]=paus p4[0]= s1[-1]=e s1[0]=t s2[-1]=se s2[0]=it s3[-1]=use s3[0]= s4[-1]=ause s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=pause|it pos[-1]|pos[0]=VB|PRP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=pause __EOS__ + +O w[0]=pause w[1]=playing wl[0]=pause wl[1]=playing pos[0]=VB pos[1]=VBG chk[0]=O chk[1]=O shape[0]=LLLLL shape[1]=LLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=p p2[0]=pa p2[1]=pl p3[0]=pau p3[1]=pla p4[0]=paus p4[1]=play s1[0]=e s1[1]=g s2[0]=se s2[1]=ng s3[0]=use s3[1]=ing s4[0]=ause s4[1]=ying 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=pause|playing pos[0]|pos[1]=VB|VBG chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=playing __BOS__ +O w[-1]=pause w[0]=playing wl[-1]=pause wl[0]=playing pos[-1]=VB pos[0]=VBG chk[-1]=O chk[0]=O shape[-1]=LLLLL shape[0]=LLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=p p2[-1]=pa p2[0]=pl p3[-1]=pau p3[0]=pla p4[-1]=paus p4[0]=play s1[-1]=e s1[0]=g s2[-1]=se s2[0]=ng s3[-1]=use s3[0]=ing s4[-1]=ause s4[0]=ying 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=pause|playing pos[-1]|pos[0]=VB|VBG chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=pause __EOS__ + +O w[0]=pause w[1]=song wl[0]=pause wl[1]=song pos[0]=VB pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=s p2[0]=pa p2[1]=so p3[0]=pau p3[1]=son p4[0]=paus p4[1]=song s1[0]=e s1[1]=g s2[0]=se s2[1]=ng s3[0]=use s3[1]=ong s4[0]=ause s4[1]=song 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=pause|song pos[0]|pos[1]=VB|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=song __BOS__ +O w[-1]=pause w[0]=song wl[-1]=pause wl[0]=song pos[-1]=VB pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=s p2[-1]=pa p2[0]=so p3[-1]=pau p3[0]=son p4[-1]=paus p4[0]=song s1[-1]=e s1[0]=g s2[-1]=se s2[0]=ng s3[-1]=use s3[0]=ong s4[-1]=ause s4[0]=song 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=pause|song pos[-1]|pos[0]=VB|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=pause __EOS__ + +O w[0]=please w[1]=pause wl[0]=please wl[1]=pause pos[0]=UH pos[1]=VB chk[0]=O chk[1]=O shape[0]=LLLLLL shape[1]=LLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=p p2[0]=pl p2[1]=pa p3[0]=ple p3[1]=pau p4[0]=plea p4[1]=paus s1[0]=e s1[1]=e s2[0]=se s2[1]=se s3[0]=ase s3[1]=use s4[0]=ease s4[1]=ause 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=please|pause pos[0]|pos[1]=UH|VB chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=pause __BOS__ +O w[-1]=please w[0]=pause wl[-1]=please wl[0]=pause pos[-1]=UH pos[0]=VB chk[-1]=O chk[0]=O shape[-1]=LLLLLL shape[0]=LLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=p p2[-1]=pl p2[0]=pa p3[-1]=ple p3[0]=pau p4[-1]=plea p4[0]=paus s1[-1]=e s1[0]=e s2[-1]=se s2[0]=se s3[-1]=ase s3[0]=use s4[-1]=ease s4[0]=ause 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=please|pause pos[-1]|pos[0]=UH|VB chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=please __EOS__ + +O w[0]=pause wl[0]=pause pos[0]=VB chk[0]=O shape[0]=LLLLL shaped[0]=L type[0]=AllLetter p1[0]=p p2[0]=pa p3[0]=pau p4[0]=paus s1[0]=e s2[0]=se s3[0]=use s4[0]=ause 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=put w[1]=it w[2]=on wl[0]=put wl[1]=it wl[2]=on pos[0]=VB pos[1]=PRP pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=i p1[2]=o p2[0]=pu p2[1]=it p2[2]=on p3[0]=put p3[1]= p3[2]= p4[0]= p4[1]= p4[2]= s1[0]=t s1[1]=t s1[2]=n s2[0]=ut s2[1]=it s2[2]=on s3[0]=put s3[1]= s3[2]= s4[0]= s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|it w[1]|w[2]=it|on pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=on w[1..4]=pause __BOS__ +O w[-1]=put w[0]=it w[1]=on w[2]=pause wl[-1]=put wl[0]=it wl[1]=on wl[2]=pause pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=i p1[1]=o p1[2]=p p2[-1]=pu p2[0]=it p2[1]=on p2[2]=pa p3[-1]=put p3[0]= p3[1]= p3[2]=pau p4[-1]= p4[0]= p4[1]= p4[2]=paus s1[-1]=t s1[0]=t s1[1]=n s1[2]=e s2[-1]=ut s2[0]=it s2[1]=on s2[2]=se s3[-1]=put s3[0]= s3[1]= s3[2]=use s4[-1]= s4[0]= s4[1]= s4[2]=ause 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|it w[0]|w[1]=it|on w[1]|w[2]=on|pause pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=on w[1..4]=pause +O w[-2]=put w[-1]=it w[0]=on w[1]=pause wl[-2]=put wl[-1]=it wl[0]=on wl[1]=pause pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LL shape[0]=LL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=i p1[0]=o p1[1]=p p2[-2]=pu p2[-1]=it p2[0]=on p2[1]=pa p3[-2]=put p3[-1]= p3[0]= p3[1]=pau p4[-2]= p4[-1]= p4[0]= p4[1]=paus s1[-2]=t s1[-1]=t s1[0]=n s1[1]=e s2[-2]=ut s2[-1]=it s2[0]=on s2[1]=se s3[-2]=put s3[-1]= s3[0]= s3[1]=use s4[-2]= s4[-1]= s4[0]= s4[1]=ause 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=put|it w[-1]|w[0]=it|on w[0]|w[1]=on|pause pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=it w[1..4]=pause +O w[-2]=it w[-1]=on w[0]=pause wl[-2]=it wl[-1]=on wl[0]=pause pos[-2]=PRP pos[-1]=IN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=i p1[-1]=o p1[0]=p p2[-2]=it p2[-1]=on p2[0]=pa p3[-2]= p3[-1]= p3[0]=pau p4[-2]= p4[-1]= p4[0]=paus s1[-2]=t s1[-1]=n s1[0]=e s2[-2]=it s2[-1]=on s2[0]=se s3[-2]= s3[-1]= s3[0]=use s4[-2]= s4[-1]= s4[0]=ause 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=it|on w[-1]|w[0]=on|pause pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=it w[-4..-1]=on __EOS__ + +O w[0]=pause w[1]=this w[2]=song wl[0]=pause wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pa p2[1]=th p2[2]=so p3[0]=pau p3[1]=thi p3[2]=son p4[0]=paus p4[1]=this p4[2]=song s1[0]=e s1[1]=s s1[2]=g s2[0]=se s2[1]=is s2[2]=ng s3[0]=use s3[1]=his s3[2]=ong s4[0]=ause s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=pause|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song __BOS__ +O w[-1]=pause w[0]=this w[1]=song wl[-1]=pause wl[0]=this wl[1]=song pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=t p1[1]=s p2[-1]=pa p2[0]=th p2[1]=so p3[-1]=pau p3[0]=thi p3[1]=son p4[-1]=paus p4[0]=this p4[1]=song s1[-1]=e s1[0]=s s1[1]=g s2[-1]=se s2[0]=is s2[1]=ng s3[-1]=use s3[0]=his s3[1]=ong s4[-1]=ause s4[0]=this s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=pause|this w[0]|w[1]=this|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=pause w[1..4]=song +O w[-2]=pause w[-1]=this w[0]=song wl[-2]=pause wl[-1]=this wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p2[-2]=pa p2[-1]=th p2[0]=so p3[-2]=pau p3[-1]=thi p3[0]=son p4[-2]=paus p4[-1]=this p4[0]=song s1[-2]=e s1[-1]=s s1[0]=g s2[-2]=se s2[-1]=is s2[0]=ng s3[-2]=use s3[-1]=his s3[0]=ong s4[-2]=ause s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=pause|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=pause w[-4..-1]=this __EOS__ + +O w[0]=skip w[1]=to w[2]=the wl[0]=skip wl[1]=to wl[2]=the pos[0]=VB pos[1]=IN pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=t p2[0]=sk p2[1]=to p2[2]=th p3[0]=ski p3[1]= p3[2]=the p4[0]=skip p4[1]= p4[2]= s1[0]=p s1[1]=o s1[2]=e s2[0]=ip s2[1]=to s2[2]=he s3[0]=kip s3[1]= s3[2]=the s4[0]=skip s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=skip|to w[1]|w[2]=to|the pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=the w[1..4]=previous w[1..4]=song __BOS__ +O w[-1]=skip w[0]=to w[1]=the w[2]=previous wl[-1]=skip wl[0]=to wl[1]=the wl[2]=previous pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLL shape[2]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=s p1[0]=t p1[1]=t p1[2]=p p2[-1]=sk p2[0]=to p2[1]=th p2[2]=pr p3[-1]=ski p3[0]= p3[1]=the p3[2]=pre p4[-1]=skip p4[0]= p4[1]= p4[2]=prev s1[-1]=p s1[0]=o s1[1]=e s1[2]=s s2[-1]=ip s2[0]=to s2[1]=he s2[2]=us s3[-1]=kip s3[0]= s3[1]=the s3[2]=ous s4[-1]=skip s4[0]= s4[1]= s4[2]=ious 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=skip|to w[0]|w[1]=to|the w[1]|w[2]=the|previous pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=skip w[1..4]=the w[1..4]=previous w[1..4]=song +O w[-2]=skip w[-1]=to w[0]=the w[1]=previous w[2]=song wl[-2]=skip wl[-1]=to wl[0]=the wl[1]=previous wl[2]=song pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=JJ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLLLLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=t p1[0]=t p1[1]=p p1[2]=s p2[-2]=sk p2[-1]=to p2[0]=th p2[1]=pr p2[2]=so p3[-2]=ski p3[-1]= p3[0]=the p3[1]=pre p3[2]=son p4[-2]=skip p4[-1]= p4[0]= p4[1]=prev p4[2]=song s1[-2]=p s1[-1]=o s1[0]=e s1[1]=s s1[2]=g s2[-2]=ip s2[-1]=to s2[0]=he s2[1]=us s2[2]=ng s3[-2]=kip s3[-1]= s3[0]=the s3[1]=ous s3[2]=ong s4[-2]=skip s4[-1]= s4[0]= s4[1]=ious s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=skip|to w[-1]|w[0]=to|the w[0]|w[1]=the|previous w[1]|w[2]=previous|song pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to w[1..4]=previous w[1..4]=song +O w[-2]=to w[-1]=the w[0]=previous w[1]=song wl[-2]=to wl[-1]=the wl[0]=previous wl[1]=song pos[-2]=IN pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLL shape[0]=LLLLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=t p1[0]=p p1[1]=s p2[-2]=to p2[-1]=th p2[0]=pr p2[1]=so p3[-2]= p3[-1]=the p3[0]=pre p3[1]=son p4[-2]= p4[-1]= p4[0]=prev p4[1]=song s1[-2]=o s1[-1]=e s1[0]=s s1[1]=g s2[-2]=to s2[-1]=he s2[0]=us s2[1]=ng s3[-2]= s3[-1]=the s3[0]=ous s3[1]=ong s4[-2]= s4[-1]= s4[0]=ious s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|previous w[0]|w[1]=previous|song pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to w[-4..-1]=the w[1..4]=song +O w[-2]=the w[-1]=previous w[0]=song wl[-2]=the wl[-1]=previous wl[0]=song pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=p p1[0]=s p2[-2]=th p2[-1]=pr p2[0]=so p3[-2]=the p3[-1]=pre p3[0]=son p4[-2]= p4[-1]=prev p4[0]=song s1[-2]=e s1[-1]=s s1[0]=g s2[-2]=he s2[-1]=us s2[0]=ng s3[-2]=the s3[-1]=ous s3[0]=ong s4[-2]= s4[-1]=ious s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|previous w[-1]|w[0]=previous|song pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to w[-4..-1]=the w[-4..-1]=previous __EOS__ + +O w[0]=go w[1]=back wl[0]=go wl[1]=back pos[0]=VB pos[1]=RB chk[0]=O chk[1]=O shape[0]=LL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=g p1[1]=b p2[0]=go p2[1]=ba p3[0]= p3[1]=bac p4[0]= p4[1]=back s1[0]=o s1[1]=k s2[0]=go s2[1]=ck s3[0]= s3[1]=ack s4[0]= s4[1]=back 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=go|back pos[0]|pos[1]=VB|RB chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=back __BOS__ +O w[-1]=go w[0]=back wl[-1]=go wl[0]=back pos[-1]=VB pos[0]=RB chk[-1]=O chk[0]=O shape[-1]=LL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=g p1[0]=b p2[-1]=go p2[0]=ba p3[-1]= p3[0]=bac p4[-1]= p4[0]=back s1[-1]=o s1[0]=k s2[-1]=go s2[0]=ck s3[-1]= s3[0]=ack s4[-1]= s4[0]=back 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=go|back pos[-1]|pos[0]=VB|RB chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=go __EOS__ + +O w[0]=skip w[1]=backward wl[0]=skip wl[1]=backward pos[0]=VB pos[1]=RB chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=s p1[1]=b p2[0]=sk p2[1]=ba p3[0]=ski p3[1]=bac p4[0]=skip p4[1]=back s1[0]=p s1[1]=d s2[0]=ip s2[1]=rd s3[0]=kip s3[1]=ard s4[0]=skip s4[1]=ward 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=skip|backward pos[0]|pos[1]=VB|RB chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=backward __BOS__ +O w[-1]=skip w[0]=backward wl[-1]=skip wl[0]=backward pos[-1]=VB pos[0]=RB chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=s p1[0]=b p2[-1]=sk p2[0]=ba p3[-1]=ski p3[0]=bac p4[-1]=skip p4[0]=back s1[-1]=p s1[0]=d s2[-1]=ip s2[0]=rd s3[-1]=kip s3[0]=ard s4[-1]=skip s4[0]=ward 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=skip|backward pos[-1]|pos[0]=VB|RB chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip __EOS__ + +O w[0]=go w[1]=back w[2]=to wl[0]=go wl[1]=back wl[2]=to pos[0]=VB pos[1]=RB pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=g p1[1]=b p1[2]=t p2[0]=go p2[1]=ba p2[2]=to p3[0]= p3[1]=bac p3[2]= p4[0]= p4[1]=back p4[2]= s1[0]=o s1[1]=k s1[2]=o s2[0]=go s2[1]=ck s2[2]=to s3[0]= s3[1]=ack s3[2]= s4[0]= s4[1]=back s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=go|back w[1]|w[2]=back|to pos[0]|pos[1]=VB|RB pos[1]|pos[2]=RB|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=back w[1..4]=to w[1..4]=the w[1..4]=previous __BOS__ +O w[-1]=go w[0]=back w[1]=to w[2]=the wl[-1]=go wl[0]=back wl[1]=to wl[2]=the pos[-1]=VB pos[0]=RB pos[1]=IN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LL shape[0]=LLLL shape[1]=LL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=g p1[0]=b p1[1]=t p1[2]=t p2[-1]=go p2[0]=ba p2[1]=to p2[2]=th p3[-1]= p3[0]=bac p3[1]= p3[2]=the p4[-1]= p4[0]=back p4[1]= p4[2]= s1[-1]=o s1[0]=k s1[1]=o s1[2]=e s2[-1]=go s2[0]=ck s2[1]=to s2[2]=he s3[-1]= s3[0]=ack s3[1]= s3[2]=the s4[-1]= s4[0]=back s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=go|back w[0]|w[1]=back|to w[1]|w[2]=to|the pos[-1]|pos[0]=VB|RB pos[0]|pos[1]=RB|IN pos[1]|pos[2]=IN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[1..4]=to w[1..4]=the w[1..4]=previous w[1..4]=station +O w[-2]=go w[-1]=back w[0]=to w[1]=the w[2]=previous wl[-2]=go wl[-1]=back wl[0]=to wl[1]=the wl[2]=previous pos[-2]=VB pos[-1]=RB pos[0]=IN pos[1]=DT pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LL shape[1]=LLL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=g p1[-1]=b p1[0]=t p1[1]=t p1[2]=p p2[-2]=go p2[-1]=ba p2[0]=to p2[1]=th p2[2]=pr p3[-2]= p3[-1]=bac p3[0]= p3[1]=the p3[2]=pre p4[-2]= p4[-1]=back p4[0]= p4[1]= p4[2]=prev s1[-2]=o s1[-1]=k s1[0]=o s1[1]=e s1[2]=s s2[-2]=go s2[-1]=ck s2[0]=to s2[1]=he s2[2]=us s3[-2]= s3[-1]=ack s3[0]= s3[1]=the s3[2]=ous s4[-2]= s4[-1]=back s4[0]= s4[1]= s4[2]=ious 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=go|back w[-1]|w[0]=back|to w[0]|w[1]=to|the w[1]|w[2]=the|previous pos[-2]|pos[-1]=VB|RB pos[-1]|pos[0]=RB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=back w[1..4]=the w[1..4]=previous w[1..4]=station +O w[-2]=back w[-1]=to w[0]=the w[1]=previous w[2]=station wl[-2]=back wl[-1]=to wl[0]=the wl[1]=previous wl[2]=station pos[-2]=RB pos[-1]=IN pos[0]=DT pos[1]=JJ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLLLLLL shape[2]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=b p1[-1]=t p1[0]=t p1[1]=p p1[2]=s p2[-2]=ba p2[-1]=to p2[0]=th p2[1]=pr p2[2]=st p3[-2]=bac p3[-1]= p3[0]=the p3[1]=pre p3[2]=sta p4[-2]=back p4[-1]= p4[0]= p4[1]=prev p4[2]=stat s1[-2]=k s1[-1]=o s1[0]=e s1[1]=s s1[2]=n s2[-2]=ck s2[-1]=to s2[0]=he s2[1]=us s2[2]=on s3[-2]=ack s3[-1]= s3[0]=the s3[1]=ous s3[2]=ion s4[-2]=back s4[-1]= s4[0]= s4[1]=ious s4[2]=tion 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=back|to w[-1]|w[0]=to|the w[0]|w[1]=the|previous w[1]|w[2]=previous|station pos[-2]|pos[-1]=RB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=back w[-4..-1]=to w[1..4]=previous w[1..4]=station +O w[-2]=to w[-1]=the w[0]=previous w[1]=station wl[-2]=to wl[-1]=the wl[0]=previous wl[1]=station pos[-2]=IN pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLL shape[0]=LLLLLLLL shape[1]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=t p1[0]=p p1[1]=s p2[-2]=to p2[-1]=th p2[0]=pr p2[1]=st p3[-2]= p3[-1]=the p3[0]=pre p3[1]=sta p4[-2]= p4[-1]= p4[0]=prev p4[1]=stat s1[-2]=o s1[-1]=e s1[0]=s s1[1]=n s2[-2]=to s2[-1]=he s2[0]=us s2[1]=on s3[-2]= s3[-1]=the s3[0]=ous s3[1]=ion s4[-2]= s4[-1]= s4[0]=ious s4[1]=tion 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|previous w[0]|w[1]=previous|station pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=back w[-4..-1]=to w[-4..-1]=the w[1..4]=station +O w[-2]=the w[-1]=previous w[0]=station wl[-2]=the wl[-1]=previous wl[0]=station pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLLLLLL shape[0]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=p p1[0]=s p2[-2]=th p2[-1]=pr p2[0]=st p3[-2]=the p3[-1]=pre p3[0]=sta p4[-2]= p4[-1]=prev p4[0]=stat s1[-2]=e s1[-1]=s s1[0]=n s2[-2]=he s2[-1]=us s2[0]=on s3[-2]=the s3[-1]=ous s3[0]=ion s4[-2]= s4[-1]=ious s4[0]=tion 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|previous w[-1]|w[0]=previous|station pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=back w[-4..-1]=to w[-4..-1]=the w[-4..-1]=previous __EOS__ + +O w[0]=back w[1]=up w[2]=a wl[0]=back wl[1]=up wl[2]=a pos[0]=VB pos[1]=RP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=L shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=b p1[1]=u p1[2]=a p2[0]=ba p2[1]=up p2[2]= p3[0]=bac p3[1]= p3[2]= p4[0]=back p4[1]= p4[2]= s1[0]=k s1[1]=p s1[2]=a s2[0]=ck s2[1]=up s2[2]= s3[0]=ack s3[1]= s3[2]= s4[0]=back s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=back|up w[1]|w[2]=up|a pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=up w[1..4]=a w[1..4]=track __BOS__ +O w[-1]=back w[0]=up w[1]=a w[2]=track wl[-1]=back wl[0]=up wl[1]=a wl[2]=track pos[-1]=VB pos[0]=RP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=L shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=b p1[0]=u p1[1]=a p1[2]=t p2[-1]=ba p2[0]=up p2[1]= p2[2]=tr p3[-1]=bac p3[0]= p3[1]= p3[2]=tra p4[-1]=back p4[0]= p4[1]= p4[2]=trac s1[-1]=k s1[0]=p s1[1]=a s1[2]=k s2[-1]=ck s2[0]=up s2[1]= s2[2]=ck s3[-1]=ack s3[0]= s3[1]= s3[2]=ack s4[-1]=back s4[0]= s4[1]= s4[2]=rack 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=back|up w[0]|w[1]=up|a w[1]|w[2]=a|track pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=back w[1..4]=a w[1..4]=track +O w[-2]=back w[-1]=up w[0]=a w[1]=track wl[-2]=back wl[-1]=up wl[0]=a wl[1]=track pos[-2]=VB pos[-1]=RP pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=L shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=b p1[-1]=u p1[0]=a p1[1]=t p2[-2]=ba p2[-1]=up p2[0]= p2[1]=tr p3[-2]=bac p3[-1]= p3[0]= p3[1]=tra p4[-2]=back p4[-1]= p4[0]= p4[1]=trac s1[-2]=k s1[-1]=p s1[0]=a s1[1]=k s2[-2]=ck s2[-1]=up s2[0]= s2[1]=ck s3[-2]=ack s3[-1]= s3[0]= s3[1]=ack s4[-2]=back s4[-1]= s4[0]= s4[1]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=back|up w[-1]|w[0]=up|a w[0]|w[1]=a|track pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=back w[-4..-1]=up w[1..4]=track +O w[-2]=up w[-1]=a w[0]=track wl[-2]=up wl[-1]=a wl[0]=track pos[-2]=RP pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=L shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=u p1[-1]=a p1[0]=t p2[-2]=up p2[-1]= p2[0]=tr p3[-2]= p3[-1]= p3[0]=tra p4[-2]= p4[-1]= p4[0]=trac s1[-2]=p s1[-1]=a s1[0]=k s2[-2]=up s2[-1]= s2[0]=ck s3[-2]= s3[-1]= s3[0]=ack s4[-2]= s4[-1]= s4[0]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=up|a w[-1]|w[0]=a|track pos[-2]|pos[-1]=RP|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=back w[-4..-1]=up w[-4..-1]=a __EOS__ + +O w[0]=go w[1]=to w[2]=previous wl[0]=go wl[1]=to wl[2]=previous pos[0]=VB pos[1]=IN pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LL shape[1]=LL shape[2]=LLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=g p1[1]=t p1[2]=p p2[0]=go p2[1]=to p2[2]=pr p3[0]= p3[1]= p3[2]=pre p4[0]= p4[1]= p4[2]=prev s1[0]=o s1[1]=o s1[2]=s s2[0]=go s2[1]=to s2[2]=us s3[0]= s3[1]= s3[2]=ous s4[0]= s4[1]= s4[2]=ious 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=go|to w[1]|w[2]=to|previous pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=previous __BOS__ +O w[-1]=go w[0]=to w[1]=previous wl[-1]=go wl[0]=to wl[1]=previous pos[-1]=VB pos[0]=IN pos[1]=JJ chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LL shape[0]=LL shape[1]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=g p1[0]=t p1[1]=p p2[-1]=go p2[0]=to p2[1]=pr p3[-1]= p3[0]= p3[1]=pre p4[-1]= p4[0]= p4[1]=prev s1[-1]=o s1[0]=o s1[1]=s s2[-1]=go s2[0]=to s2[1]=us s3[-1]= s3[0]= s3[1]=ous s4[-1]= s4[0]= s4[1]=ious 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=go|to w[0]|w[1]=to|previous pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=go w[1..4]=previous +O w[-2]=go w[-1]=to w[0]=previous wl[-2]=go wl[-1]=to wl[0]=previous pos[-2]=VB pos[-1]=IN pos[0]=JJ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=g p1[-1]=t p1[0]=p p2[-2]=go p2[-1]=to p2[0]=pr p3[-2]= p3[-1]= p3[0]=pre p4[-2]= p4[-1]= p4[0]=prev s1[-2]=o s1[-1]=o s1[0]=s s2[-2]=go s2[-1]=to s2[0]=us s3[-2]= s3[-1]= s3[0]=ous s4[-2]= s4[-1]= s4[0]=ious 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=go|to w[-1]|w[0]=to|previous pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=to __EOS__ + +O w[0]=previous w[1]=song wl[0]=previous wl[1]=song pos[0]=JJ pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLLLLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=s p2[0]=pr p2[1]=so p3[0]=pre p3[1]=son p4[0]=prev p4[1]=song s1[0]=s s1[1]=g s2[0]=us s2[1]=ng s3[0]=ous s3[1]=ong s4[0]=ious s4[1]=song 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=previous|song pos[0]|pos[1]=JJ|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=song __BOS__ +O w[-1]=previous w[0]=song wl[-1]=previous wl[0]=song pos[-1]=JJ pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLLLLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=s p2[-1]=pr p2[0]=so p3[-1]=pre p3[0]=son p4[-1]=prev p4[0]=song s1[-1]=s s1[0]=g s2[-1]=us s2[0]=ng s3[-1]=ous s3[0]=ong s4[-1]=ious s4[0]=song 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=previous|song pos[-1]|pos[0]=JJ|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=previous __EOS__ + +O w[0]=go w[1]=back w[2]=to wl[0]=go wl[1]=back wl[2]=to pos[0]=VB pos[1]=RB pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=g p1[1]=b p1[2]=t p2[0]=go p2[1]=ba p2[2]=to p3[0]= p3[1]=bac p3[2]= p4[0]= p4[1]=back p4[2]= s1[0]=o s1[1]=k s1[2]=o s2[0]=go s2[1]=ck s2[2]=to s3[0]= s3[1]=ack s3[2]= s4[0]= s4[1]=back s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=go|back w[1]|w[2]=back|to pos[0]|pos[1]=VB|RB pos[1]|pos[2]=RB|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=back w[1..4]=to w[1..4]=previous w[1..4]=song __BOS__ +O w[-1]=go w[0]=back w[1]=to w[2]=previous wl[-1]=go wl[0]=back wl[1]=to wl[2]=previous pos[-1]=VB pos[0]=RB pos[1]=IN pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LL shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=g p1[0]=b p1[1]=t p1[2]=p p2[-1]=go p2[0]=ba p2[1]=to p2[2]=pr p3[-1]= p3[0]=bac p3[1]= p3[2]=pre p4[-1]= p4[0]=back p4[1]= p4[2]=prev s1[-1]=o s1[0]=k s1[1]=o s1[2]=s s2[-1]=go s2[0]=ck s2[1]=to s2[2]=us s3[-1]= s3[0]=ack s3[1]= s3[2]=ous s4[-1]= s4[0]=back s4[1]= s4[2]=ious 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=go|back w[0]|w[1]=back|to w[1]|w[2]=to|previous pos[-1]|pos[0]=VB|RB pos[0]|pos[1]=RB|IN pos[1]|pos[2]=IN|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[1..4]=to w[1..4]=previous w[1..4]=song +O w[-2]=go w[-1]=back w[0]=to w[1]=previous w[2]=song wl[-2]=go wl[-1]=back wl[0]=to wl[1]=previous wl[2]=song pos[-2]=VB pos[-1]=RB pos[0]=IN pos[1]=JJ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=g p1[-1]=b p1[0]=t p1[1]=p p1[2]=s p2[-2]=go p2[-1]=ba p2[0]=to p2[1]=pr p2[2]=so p3[-2]= p3[-1]=bac p3[0]= p3[1]=pre p3[2]=son p4[-2]= p4[-1]=back p4[0]= p4[1]=prev p4[2]=song s1[-2]=o s1[-1]=k s1[0]=o s1[1]=s s1[2]=g s2[-2]=go s2[-1]=ck s2[0]=to s2[1]=us s2[2]=ng s3[-2]= s3[-1]=ack s3[0]= s3[1]=ous s3[2]=ong s4[-2]= s4[-1]=back s4[0]= s4[1]=ious s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=go|back w[-1]|w[0]=back|to w[0]|w[1]=to|previous w[1]|w[2]=previous|song pos[-2]|pos[-1]=VB|RB pos[-1]|pos[0]=RB|IN pos[0]|pos[1]=IN|JJ pos[1]|pos[2]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=back w[1..4]=previous w[1..4]=song +O w[-2]=back w[-1]=to w[0]=previous w[1]=song wl[-2]=back wl[-1]=to wl[0]=previous wl[1]=song pos[-2]=RB pos[-1]=IN pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=b p1[-1]=t p1[0]=p p1[1]=s p2[-2]=ba p2[-1]=to p2[0]=pr p2[1]=so p3[-2]=bac p3[-1]= p3[0]=pre p3[1]=son p4[-2]=back p4[-1]= p4[0]=prev p4[1]=song s1[-2]=k s1[-1]=o s1[0]=s s1[1]=g s2[-2]=ck s2[-1]=to s2[0]=us s2[1]=ng s3[-2]=ack s3[-1]= s3[0]=ous s3[1]=ong s4[-2]=back s4[-1]= s4[0]=ious s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=back|to w[-1]|w[0]=to|previous w[0]|w[1]=previous|song pos[-2]|pos[-1]=RB|IN pos[-1]|pos[0]=IN|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=back w[-4..-1]=to w[1..4]=song +O w[-2]=to w[-1]=previous w[0]=song wl[-2]=to wl[-1]=previous wl[0]=song pos[-2]=IN pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=p p1[0]=s p2[-2]=to p2[-1]=pr p2[0]=so p3[-2]= p3[-1]=pre p3[0]=son p4[-2]= p4[-1]=prev p4[0]=song s1[-2]=o s1[-1]=s s1[0]=g s2[-2]=to s2[-1]=us s2[0]=ng s3[-2]= s3[-1]=ous s3[0]=ong s4[-2]= s4[-1]=ious s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|previous w[-1]|w[0]=previous|song pos[-2]|pos[-1]=IN|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=back w[-4..-1]=to w[-4..-1]=previous __EOS__ + +O w[0]=skip w[1]=to w[2]=the wl[0]=skip wl[1]=to wl[2]=the pos[0]=VB pos[1]=IN pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=t p2[0]=sk p2[1]=to p2[2]=th p3[0]=ski p3[1]= p3[2]=the p4[0]=skip p4[1]= p4[2]= s1[0]=p s1[1]=o s1[2]=e s2[0]=ip s2[1]=to s2[2]=he s3[0]=kip s3[1]= s3[2]=the s4[0]=skip s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=skip|to w[1]|w[2]=to|the pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=the w[1..4]=back __BOS__ +O w[-1]=skip w[0]=to w[1]=the w[2]=back wl[-1]=skip wl[0]=to wl[1]=the wl[2]=back pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=s p1[0]=t p1[1]=t p1[2]=b p2[-1]=sk p2[0]=to p2[1]=th p2[2]=ba p3[-1]=ski p3[0]= p3[1]=the p3[2]=bac p4[-1]=skip p4[0]= p4[1]= p4[2]=back s1[-1]=p s1[0]=o s1[1]=e s1[2]=k s2[-1]=ip s2[0]=to s2[1]=he s2[2]=ck s3[-1]=kip s3[0]= s3[1]=the s3[2]=ack s4[-1]=skip s4[0]= s4[1]= s4[2]=back 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=skip|to w[0]|w[1]=to|the w[1]|w[2]=the|back pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=skip w[1..4]=the w[1..4]=back +O w[-2]=skip w[-1]=to w[0]=the w[1]=back wl[-2]=skip wl[-1]=to wl[0]=the wl[1]=back pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=s p1[-1]=t p1[0]=t p1[1]=b p2[-2]=sk p2[-1]=to p2[0]=th p2[1]=ba p3[-2]=ski p3[-1]= p3[0]=the p3[1]=bac p4[-2]=skip p4[-1]= p4[0]= p4[1]=back s1[-2]=p s1[-1]=o s1[0]=e s1[1]=k s2[-2]=ip s2[-1]=to s2[0]=he s2[1]=ck s3[-2]=kip s3[-1]= s3[0]=the s3[1]=ack s4[-2]=skip s4[-1]= s4[0]= s4[1]=back 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=skip|to w[-1]|w[0]=to|the w[0]|w[1]=the|back pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to w[1..4]=back +O w[-2]=to w[-1]=the w[0]=back wl[-2]=to wl[-1]=the wl[0]=back pos[-2]=IN pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=t p1[0]=b p2[-2]=to p2[-1]=th p2[0]=ba p3[-2]= p3[-1]=the p3[0]=bac p4[-2]= p4[-1]= p4[0]=back s1[-2]=o s1[-1]=e s1[0]=k s2[-2]=to s2[-1]=he s2[0]=ck s3[-2]= s3[-1]=the s3[0]=ack s4[-2]= s4[-1]= s4[0]=back 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|back pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to w[-4..-1]=the __EOS__ + +O w[0]=back wl[0]=back pos[0]=RB chk[0]=O shape[0]=LLLL shaped[0]=L type[0]=AllLetter p1[0]=b p2[0]=ba p3[0]=bac p4[0]=back s1[0]=k s2[0]=ck s3[0]=ack s4[0]=back 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=go w[1]=back w[2]=to wl[0]=go wl[1]=back wl[2]=to pos[0]=VB pos[1]=RB pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=g p1[1]=b p1[2]=t p2[0]=go p2[1]=ba p2[2]=to p3[0]= p3[1]=bac p3[2]= p4[0]= p4[1]=back p4[2]= s1[0]=o s1[1]=k s1[2]=o s2[0]=go s2[1]=ck s2[2]=to s3[0]= s3[1]=ack s3[2]= s4[0]= s4[1]=back s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=go|back w[1]|w[2]=back|to pos[0]|pos[1]=VB|RB pos[1]|pos[2]=RB|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=back w[1..4]=to w[1..4]=previous __BOS__ +O w[-1]=go w[0]=back w[1]=to w[2]=previous wl[-1]=go wl[0]=back wl[1]=to wl[2]=previous pos[-1]=VB pos[0]=RB pos[1]=IN pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LL shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=g p1[0]=b p1[1]=t p1[2]=p p2[-1]=go p2[0]=ba p2[1]=to p2[2]=pr p3[-1]= p3[0]=bac p3[1]= p3[2]=pre p4[-1]= p4[0]=back p4[1]= p4[2]=prev s1[-1]=o s1[0]=k s1[1]=o s1[2]=s s2[-1]=go s2[0]=ck s2[1]=to s2[2]=us s3[-1]= s3[0]=ack s3[1]= s3[2]=ous s4[-1]= s4[0]=back s4[1]= s4[2]=ious 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=go|back w[0]|w[1]=back|to w[1]|w[2]=to|previous pos[-1]|pos[0]=VB|RB pos[0]|pos[1]=RB|IN pos[1]|pos[2]=IN|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[1..4]=to w[1..4]=previous +O w[-2]=go w[-1]=back w[0]=to w[1]=previous wl[-2]=go wl[-1]=back wl[0]=to wl[1]=previous pos[-2]=VB pos[-1]=RB pos[0]=IN pos[1]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=g p1[-1]=b p1[0]=t p1[1]=p p2[-2]=go p2[-1]=ba p2[0]=to p2[1]=pr p3[-2]= p3[-1]=bac p3[0]= p3[1]=pre p4[-2]= p4[-1]=back p4[0]= p4[1]=prev s1[-2]=o s1[-1]=k s1[0]=o s1[1]=s s2[-2]=go s2[-1]=ck s2[0]=to s2[1]=us s3[-2]= s3[-1]=ack s3[0]= s3[1]=ous s4[-2]= s4[-1]=back s4[0]= s4[1]=ious 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=go|back w[-1]|w[0]=back|to w[0]|w[1]=to|previous pos[-2]|pos[-1]=VB|RB pos[-1]|pos[0]=RB|IN pos[0]|pos[1]=IN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=back w[1..4]=previous +O w[-2]=back w[-1]=to w[0]=previous wl[-2]=back wl[-1]=to wl[0]=previous pos[-2]=RB pos[-1]=IN pos[0]=JJ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=b p1[-1]=t p1[0]=p p2[-2]=ba p2[-1]=to p2[0]=pr p3[-2]=bac p3[-1]= p3[0]=pre p4[-2]=back p4[-1]= p4[0]=prev s1[-2]=k s1[-1]=o s1[0]=s s2[-2]=ck s2[-1]=to s2[0]=us s3[-2]=ack s3[-1]= s3[0]=ous s4[-2]=back s4[-1]= s4[0]=ious 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=back|to w[-1]|w[0]=to|previous pos[-2]|pos[-1]=RB|IN pos[-1]|pos[0]=IN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=back w[-4..-1]=to __EOS__ + +O w[0]=previous wl[0]=previous pos[0]=JJ chk[0]=O shape[0]=LLLLLLLL shaped[0]=L type[0]=AllLetter p1[0]=p p2[0]=pr p3[0]=pre p4[0]=prev s1[0]=s s2[0]=us s3[0]=ous s4[0]=ious 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=previous w[1]=station wl[0]=previous wl[1]=station pos[0]=JJ pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLLLLLL shape[1]=LLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=s p2[0]=pr p2[1]=st p3[0]=pre p3[1]=sta p4[0]=prev p4[1]=stat s1[0]=s s1[1]=n s2[0]=us s2[1]=on s3[0]=ous s3[1]=ion s4[0]=ious s4[1]=tion 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=previous|station pos[0]|pos[1]=JJ|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=station __BOS__ +O w[-1]=previous w[0]=station wl[-1]=previous wl[0]=station pos[-1]=JJ pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLLLLLL shape[0]=LLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=s p2[-1]=pr p2[0]=st p3[-1]=pre p3[0]=sta p4[-1]=prev p4[0]=stat s1[-1]=s s1[0]=n s2[-1]=us s2[0]=on s3[-1]=ous s3[0]=ion s4[-1]=ious s4[0]=tion 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=previous|station pos[-1]|pos[0]=JJ|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=previous __EOS__ + +O w[0]=skip w[1]=back wl[0]=skip wl[1]=back pos[0]=VB pos[1]=RB chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=s p1[1]=b p2[0]=sk p2[1]=ba p3[0]=ski p3[1]=bac p4[0]=skip p4[1]=back s1[0]=p s1[1]=k s2[0]=ip s2[1]=ck s3[0]=kip s3[1]=ack s4[0]=skip s4[1]=back 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=skip|back pos[0]|pos[1]=VB|RB chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=back __BOS__ +O w[-1]=skip w[0]=back wl[-1]=skip wl[0]=back pos[-1]=VB pos[0]=RB chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=s p1[0]=b p2[-1]=sk p2[0]=ba p3[-1]=ski p3[0]=bac p4[-1]=skip p4[0]=back s1[-1]=p s1[0]=k s2[-1]=ip s2[0]=ck s3[-1]=kip s3[0]=ack s4[-1]=skip s4[0]=back 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=skip|back pos[-1]|pos[0]=VB|RB chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip __EOS__ + +O w[0]=skip w[1]=to w[2]=previous wl[0]=skip wl[1]=to wl[2]=previous pos[0]=VB pos[1]=IN pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=p p2[0]=sk p2[1]=to p2[2]=pr p3[0]=ski p3[1]= p3[2]=pre p4[0]=skip p4[1]= p4[2]=prev s1[0]=p s1[1]=o s1[2]=s s2[0]=ip s2[1]=to s2[2]=us s3[0]=kip s3[1]= s3[2]=ous s4[0]=skip s4[1]= s4[2]=ious 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=skip|to w[1]|w[2]=to|previous pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=previous __BOS__ +O w[-1]=skip w[0]=to w[1]=previous wl[-1]=skip wl[0]=to wl[1]=previous pos[-1]=VB pos[0]=IN pos[1]=JJ chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=s p1[0]=t p1[1]=p p2[-1]=sk p2[0]=to p2[1]=pr p3[-1]=ski p3[0]= p3[1]=pre p4[-1]=skip p4[0]= p4[1]=prev s1[-1]=p s1[0]=o s1[1]=s s2[-1]=ip s2[0]=to s2[1]=us s3[-1]=kip s3[0]= s3[1]=ous s4[-1]=skip s4[0]= s4[1]=ious 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=skip|to w[0]|w[1]=to|previous pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=skip w[1..4]=previous +O w[-2]=skip w[-1]=to w[0]=previous wl[-2]=skip wl[-1]=to wl[0]=previous pos[-2]=VB pos[-1]=IN pos[0]=JJ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=t p1[0]=p p2[-2]=sk p2[-1]=to p2[0]=pr p3[-2]=ski p3[-1]= p3[0]=pre p4[-2]=skip p4[-1]= p4[0]=prev s1[-2]=p s1[-1]=o s1[0]=s s2[-2]=ip s2[-1]=to s2[0]=us s3[-2]=kip s3[-1]= s3[0]=ous s4[-2]=skip s4[-1]= s4[0]=ious 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=skip|to w[-1]|w[0]=to|previous pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to __EOS__ + +O w[0]=remember w[1]=this w[2]=song wl[0]=remember wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=t p1[2]=s p2[0]=re p2[1]=th p2[2]=so p3[0]=rem p3[1]=thi p3[2]=son p4[0]=reme p4[1]=this p4[2]=song s1[0]=r s1[1]=s s1[2]=g s2[0]=er s2[1]=is s2[2]=ng s3[0]=ber s3[1]=his s3[2]=ong s4[0]=mber s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=remember|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song __BOS__ +O w[-1]=remember w[0]=this w[1]=song wl[-1]=remember wl[0]=this wl[1]=song pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLLLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=r p1[0]=t p1[1]=s p2[-1]=re p2[0]=th p2[1]=so p3[-1]=rem p3[0]=thi p3[1]=son p4[-1]=reme p4[0]=this p4[1]=song s1[-1]=r s1[0]=s s1[1]=g s2[-1]=er s2[0]=is s2[1]=ng s3[-1]=ber s3[0]=his s3[1]=ong s4[-1]=mber s4[0]=this s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=remember|this w[0]|w[1]=this|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=remember w[1..4]=song +O w[-2]=remember w[-1]=this w[0]=song wl[-2]=remember wl[-1]=this wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=r p1[-1]=t p1[0]=s p2[-2]=re p2[-1]=th p2[0]=so p3[-2]=rem p3[-1]=thi p3[0]=son p4[-2]=reme p4[-1]=this p4[0]=song s1[-2]=r s1[-1]=s s1[0]=g s2[-2]=er s2[-1]=is s2[0]=ng s3[-2]=ber s3[-1]=his s3[0]=ong s4[-2]=mber s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=remember|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=remember w[-4..-1]=this __EOS__ + +O w[0]=fave w[1]=this w[2]=song wl[0]=fave wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=f p1[1]=t p1[2]=s p2[0]=fa p2[1]=th p2[2]=so p3[0]=fav p3[1]=thi p3[2]=son p4[0]=fave p4[1]=this p4[2]=song s1[0]=e s1[1]=s s1[2]=g s2[0]=ve s2[1]=is s2[2]=ng s3[0]=ave s3[1]=his s3[2]=ong s4[0]=fave s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=fave|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song __BOS__ +O w[-1]=fave w[0]=this w[1]=song wl[-1]=fave wl[0]=this wl[1]=song pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=f p1[0]=t p1[1]=s p2[-1]=fa p2[0]=th p2[1]=so p3[-1]=fav p3[0]=thi p3[1]=son p4[-1]=fave p4[0]=this p4[1]=song s1[-1]=e s1[0]=s s1[1]=g s2[-1]=ve s2[0]=is s2[1]=ng s3[-1]=ave s3[0]=his s3[1]=ong s4[-1]=fave s4[0]=this s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=fave|this w[0]|w[1]=this|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=fave w[1..4]=song +O w[-2]=fave w[-1]=this w[0]=song wl[-2]=fave wl[-1]=this wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=f p1[-1]=t p1[0]=s p2[-2]=fa p2[-1]=th p2[0]=so p3[-2]=fav p3[-1]=thi p3[0]=son p4[-2]=fave p4[-1]=this p4[0]=song s1[-2]=e s1[-1]=s s1[0]=g s2[-2]=ve s2[-1]=is s2[0]=ng s3[-2]=ave s3[-1]=his s3[0]=ong s4[-2]=fave s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=fave|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=fave w[-4..-1]=this __EOS__ + +O w[0]=it's w[1]=my w[2]=favourite wl[0]=it's wl[1]=my wl[2]=favourite pos[0]=PRP pos[1]=VBZ pos[2]=PRP$ chk[0]=O chk[1]=O chk[2]=O shape[0]=LL'L shape[1]=LL shape[2]=LLLLLLLLL shaped[0]=L'L shaped[1]=L shaped[2]=L type[0]=NO type[1]=AllLetter type[2]=AllLetter p1[0]=i p1[1]=m p1[2]=f p2[0]=it p2[1]=my p2[2]=fa p3[0]=it' p3[1]= p3[2]=fav p4[0]=it's p4[1]= p4[2]=favo s1[0]=s s1[1]=y s1[2]=e s2[0]='s s2[1]=my s2[2]=te s3[0]=t's s3[1]= s3[2]=ite s4[0]=it's s4[1]= s4[2]=rite 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=it's|my w[1]|w[2]=my|favourite pos[0]|pos[1]=PRP|VBZ pos[1]|pos[2]=VBZ|PRP$ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=NO|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=my w[1..4]=favourite __BOS__ +O w[-1]=it's w[0]=my w[1]=favourite wl[-1]=it's wl[0]=my wl[1]=favourite pos[-1]=PRP pos[0]=VBZ pos[1]=PRP$ chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LL'L shape[0]=LL shape[1]=LLLLLLLLL shaped[-1]=L'L shaped[0]=L shaped[1]=L type[-1]=NO type[0]=AllLetter type[1]=AllLetter p1[-1]=i p1[0]=m p1[1]=f p2[-1]=it p2[0]=my p2[1]=fa p3[-1]=it' p3[0]= p3[1]=fav p4[-1]=it's p4[0]= p4[1]=favo s1[-1]=s s1[0]=y s1[1]=e s2[-1]='s s2[0]=my s2[1]=te s3[-1]=t's s3[0]= s3[1]=ite s4[-1]=it's s4[0]= s4[1]=rite 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=no al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=yes cs[0]=no cs[1]=no w[-1]|w[0]=it's|my w[0]|w[1]=my|favourite pos[-1]|pos[0]=PRP|VBZ pos[0]|pos[1]=VBZ|PRP$ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L'L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=NO|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=it's w[1..4]=favourite +O w[-2]=it's w[-1]=my w[0]=favourite wl[-2]=it's wl[-1]=my wl[0]=favourite pos[-2]=PRP pos[-1]=VBZ pos[0]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL'L shape[-1]=LL shape[0]=LLLLLLLLL shaped[-2]=L'L shaped[-1]=L shaped[0]=L type[-2]=NO type[-1]=AllLetter type[0]=AllLetter p1[-2]=i p1[-1]=m p1[0]=f p2[-2]=it p2[-1]=my p2[0]=fa p3[-2]=it' p3[-1]= p3[0]=fav p4[-2]=it's p4[-1]= p4[0]=favo s1[-2]=s s1[-1]=y s1[0]=e s2[-2]='s s2[-1]=my s2[0]=te s3[-2]=t's s3[-1]= s3[0]=ite s4[-2]=it's s4[-1]= s4[0]=rite 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=yes cs[-1]=no cs[0]=no w[-2]|w[-1]=it's|my w[-1]|w[0]=my|favourite pos[-2]|pos[-1]=PRP|VBZ pos[-1]|pos[0]=VBZ|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L'L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=NO|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=it's w[-4..-1]=my __EOS__ + +O w[0]=add w[1]=this w[2]=song wl[0]=add wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=a p1[1]=t p1[2]=s p2[0]=ad p2[1]=th p2[2]=so p3[0]=add p3[1]=thi p3[2]=son p4[0]= p4[1]=this p4[2]=song s1[0]=d s1[1]=s s1[2]=g s2[0]=dd s2[1]=is s2[2]=ng s3[0]=add s3[1]=his s3[2]=ong s4[0]= s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=add|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song w[1..4]=to w[1..4]=favorites __BOS__ +O w[-1]=add w[0]=this w[1]=song w[2]=to wl[-1]=add wl[0]=this wl[1]=song wl[2]=to pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=a p1[0]=t p1[1]=s p1[2]=t p2[-1]=ad p2[0]=th p2[1]=so p2[2]=to p3[-1]=add p3[0]=thi p3[1]=son p3[2]= p4[-1]= p4[0]=this p4[1]=song p4[2]= s1[-1]=d s1[0]=s s1[1]=g s1[2]=o s2[-1]=dd s2[0]=is s2[1]=ng s2[2]=to s3[-1]=add s3[0]=his s3[1]=ong s3[2]= s4[-1]= s4[0]=this s4[1]=song s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=add|this w[0]|w[1]=this|song w[1]|w[2]=song|to pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[1..4]=song w[1..4]=to w[1..4]=favorites +O w[-2]=add w[-1]=this w[0]=song w[1]=to w[2]=favorites wl[-2]=add wl[-1]=this wl[0]=song wl[1]=to wl[2]=favorites pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=t p1[0]=s p1[1]=t p1[2]=f p2[-2]=ad p2[-1]=th p2[0]=so p2[1]=to p2[2]=fa p3[-2]=add p3[-1]=thi p3[0]=son p3[1]= p3[2]=fav p4[-2]= p4[-1]=this p4[0]=song p4[1]= p4[2]=favo s1[-2]=d s1[-1]=s s1[0]=g s1[1]=o s1[2]=s s2[-2]=dd s2[-1]=is s2[0]=ng s2[1]=to s2[2]=es s3[-2]=add s3[-1]=his s3[0]=ong s3[1]= s3[2]=tes s4[-2]= s4[-1]=this s4[0]=song s4[1]= s4[2]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=add|this w[-1]|w[0]=this|song w[0]|w[1]=song|to w[1]|w[2]=to|favorites pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[1..4]=to w[1..4]=favorites +O w[-2]=this w[-1]=song w[0]=to w[1]=favorites wl[-2]=this wl[-1]=song wl[0]=to wl[1]=favorites pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=s p1[0]=t p1[1]=f p2[-2]=th p2[-1]=so p2[0]=to p2[1]=fa p3[-2]=thi p3[-1]=son p3[0]= p3[1]=fav p4[-2]=this p4[-1]=song p4[0]= p4[1]=favo s1[-2]=s s1[-1]=g s1[0]=o s1[1]=s s2[-2]=is s2[-1]=ng s2[0]=to s2[1]=es s3[-2]=his s3[-1]=ong s3[0]= s3[1]=tes s4[-2]=this s4[-1]=song s4[0]= s4[1]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=this|song w[-1]|w[0]=song|to w[0]|w[1]=to|favorites pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[-4..-1]=song w[1..4]=favorites +O w[-2]=song w[-1]=to w[0]=favorites wl[-2]=song wl[-1]=to wl[0]=favorites pos[-2]=NN pos[-1]=IN pos[0]=NNS chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=t p1[0]=f p2[-2]=so p2[-1]=to p2[0]=fa p3[-2]=son p3[-1]= p3[0]=fav p4[-2]=song p4[-1]= p4[0]=favo s1[-2]=g s1[-1]=o s1[0]=s s2[-2]=ng s2[-1]=to s2[0]=es s3[-2]=ong s3[-1]= s3[0]=tes s4[-2]=song s4[-1]= s4[0]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|to w[-1]|w[0]=to|favorites pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[-4..-1]=song w[-4..-1]=to __EOS__ + +O w[0]=I w[1]=love w[2]=this wl[0]=i wl[1]=love wl[2]=this pos[0]=PRP pos[1]=VBP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LLLL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=l p1[2]=t p2[0]= p2[1]=lo p2[2]=th p3[0]= p3[1]=lov p3[2]=thi p4[0]= p4[1]=love p4[2]=this s1[0]=I s1[1]=e s1[2]=s s2[0]= s2[1]=ve s2[2]=is s3[0]= s3[1]=ove s3[2]=his s4[0]= s4[1]=love s4[2]=this 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|love w[1]|w[2]=love|this pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=love w[1..4]=this w[1..4]=song __BOS__ +O w[-1]=I w[0]=love w[1]=this w[2]=song wl[-1]=i wl[0]=love wl[1]=this wl[2]=song pos[-1]=PRP pos[0]=VBP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=l p1[1]=t p1[2]=s p2[-1]= p2[0]=lo p2[1]=th p2[2]=so p3[-1]= p3[0]=lov p3[1]=thi p3[2]=son p4[-1]= p4[0]=love p4[1]=this p4[2]=song s1[-1]=I s1[0]=e s1[1]=s s1[2]=g s2[-1]= s2[0]=ve s2[1]=is s2[2]=ng s3[-1]= s3[0]=ove s3[1]=his s3[2]=ong s4[-1]= s4[0]=love s4[1]=this s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|love w[0]|w[1]=love|this w[1]|w[2]=this|song pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=this w[1..4]=song +O w[-2]=I w[-1]=love w[0]=this w[1]=song wl[-2]=i wl[-1]=love wl[0]=this wl[1]=song pos[-2]=PRP pos[-1]=VBP pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=U shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=I p1[-1]=l p1[0]=t p1[1]=s p2[-2]= p2[-1]=lo p2[0]=th p2[1]=so p3[-2]= p3[-1]=lov p3[0]=thi p3[1]=son p4[-2]= p4[-1]=love p4[0]=this p4[1]=song s1[-2]=I s1[-1]=e s1[0]=s s1[1]=g s2[-2]= s2[-1]=ve s2[0]=is s2[1]=ng s3[-2]= s3[-1]=ove s3[0]=his s3[1]=ong s4[-2]= s4[-1]=love s4[0]=this s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=I|love w[-1]|w[0]=love|this w[0]|w[1]=this|song pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=love w[1..4]=song +O w[-2]=love w[-1]=this w[0]=song wl[-2]=love wl[-1]=this wl[0]=song pos[-2]=VBP pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=l p1[-1]=t p1[0]=s p2[-2]=lo p2[-1]=th p2[0]=so p3[-2]=lov p3[-1]=thi p3[0]=son p4[-2]=love p4[-1]=this p4[0]=song s1[-2]=e s1[-1]=s s1[0]=g s2[-2]=ve s2[-1]=is s2[0]=ng s3[-2]=ove s3[-1]=his s3[0]=ong s4[-2]=love s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=love|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=VBP|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=love w[-4..-1]=this __EOS__ + +O w[0]=put w[1]=this w[2]=track wl[0]=put wl[1]=this wl[2]=track pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=t p2[0]=pu p2[1]=th p2[2]=tr p3[0]=put p3[1]=thi p3[2]=tra p4[0]= p4[1]=this p4[2]=trac s1[0]=t s1[1]=s s1[2]=k s2[0]=ut s2[1]=is s2[2]=ck s3[0]=put s3[1]=his s3[2]=ack s4[0]= s4[1]=this s4[2]=rack 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|this w[1]|w[2]=this|track pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=track w[1..4]=into w[1..4]=my __BOS__ +O w[-1]=put w[0]=this w[1]=track w[2]=into wl[-1]=put wl[0]=this wl[1]=track wl[2]=into pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=t p1[2]=i p2[-1]=pu p2[0]=th p2[1]=tr p2[2]=in p3[-1]=put p3[0]=thi p3[1]=tra p3[2]=int p4[-1]= p4[0]=this p4[1]=trac p4[2]=into s1[-1]=t s1[0]=s s1[1]=k s1[2]=o s2[-1]=ut s2[0]=is s2[1]=ck s2[2]=to s3[-1]=put s3[0]=his s3[1]=ack s3[2]=nto s4[-1]= s4[0]=this s4[1]=rack s4[2]=into 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|this w[0]|w[1]=this|track w[1]|w[2]=track|into pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=track w[1..4]=into w[1..4]=my w[1..4]=favourites +O w[-2]=put w[-1]=this w[0]=track w[1]=into w[2]=my wl[-2]=put wl[-1]=this wl[0]=track wl[1]=into wl[2]=my pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=t p1[1]=i p1[2]=m p2[-2]=pu p2[-1]=th p2[0]=tr p2[1]=in p2[2]=my p3[-2]=put p3[-1]=thi p3[0]=tra p3[1]=int p3[2]= p4[-2]= p4[-1]=this p4[0]=trac p4[1]=into p4[2]= s1[-2]=t s1[-1]=s s1[0]=k s1[1]=o s1[2]=y s2[-2]=ut s2[-1]=is s2[0]=ck s2[1]=to s2[2]=my s3[-2]=put s3[-1]=his s3[0]=ack s3[1]=nto s3[2]= s4[-2]= s4[-1]=this s4[0]=rack s4[1]=into s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=put|this w[-1]|w[0]=this|track w[0]|w[1]=track|into w[1]|w[2]=into|my pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=this w[1..4]=into w[1..4]=my w[1..4]=favourites +O w[-2]=this w[-1]=track w[0]=into w[1]=my w[2]=favourites wl[-2]=this wl[-1]=track wl[0]=into wl[1]=my wl[2]=favourites pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=PRP$ pos[2]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=t p1[0]=i p1[1]=m p1[2]=f p2[-2]=th p2[-1]=tr p2[0]=in p2[1]=my p2[2]=fa p3[-2]=thi p3[-1]=tra p3[0]=int p3[1]= p3[2]=fav p4[-2]=this p4[-1]=trac p4[0]=into p4[1]= p4[2]=favo s1[-2]=s s1[-1]=k s1[0]=o s1[1]=y s1[2]=s s2[-2]=is s2[-1]=ck s2[0]=to s2[1]=my s2[2]=es s3[-2]=his s3[-1]=ack s3[0]=nto s3[1]= s3[2]=tes s4[-2]=this s4[-1]=rack s4[0]=into s4[1]= s4[2]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=this|track w[-1]|w[0]=track|into w[0]|w[1]=into|my w[1]|w[2]=my|favourites pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=this w[-4..-1]=track w[1..4]=my w[1..4]=favourites +O w[-2]=track w[-1]=into w[0]=my w[1]=favourites wl[-2]=track wl[-1]=into wl[0]=my wl[1]=favourites pos[-2]=NN pos[-1]=IN pos[0]=PRP$ pos[1]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLL shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=i p1[0]=m p1[1]=f p2[-2]=tr p2[-1]=in p2[0]=my p2[1]=fa p3[-2]=tra p3[-1]=int p3[0]= p3[1]=fav p4[-2]=trac p4[-1]=into p4[0]= p4[1]=favo s1[-2]=k s1[-1]=o s1[0]=y s1[1]=s s2[-2]=ck s2[-1]=to s2[0]=my s2[1]=es s3[-2]=ack s3[-1]=nto s3[0]= s3[1]=tes s4[-2]=rack s4[-1]=into s4[0]= s4[1]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=track|into w[-1]|w[0]=into|my w[0]|w[1]=my|favourites pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=this w[-4..-1]=track w[-4..-1]=into w[1..4]=favourites +O w[-2]=into w[-1]=my w[0]=favourites wl[-2]=into wl[-1]=my wl[0]=favourites pos[-2]=IN pos[-1]=PRP$ pos[0]=NNS chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=i p1[-1]=m p1[0]=f p2[-2]=in p2[-1]=my p2[0]=fa p3[-2]=int p3[-1]= p3[0]=fav p4[-2]=into p4[-1]= p4[0]=favo s1[-2]=o s1[-1]=y s1[0]=s s2[-2]=to s2[-1]=my s2[0]=es s3[-2]=nto s3[-1]= s3[0]=tes s4[-2]=into s4[-1]= s4[0]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=into|my w[-1]|w[0]=my|favourites pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=this w[-4..-1]=track w[-4..-1]=into w[-4..-1]=my __EOS__ + +O w[0]=add w[1]=to w[2]=faves wl[0]=add wl[1]=to wl[2]=faves pos[0]=VB pos[1]=IN pos[2]=NNS chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=a p1[1]=t p1[2]=f p2[0]=ad p2[1]=to p2[2]=fa p3[0]=add p3[1]= p3[2]=fav p4[0]= p4[1]= p4[2]=fave s1[0]=d s1[1]=o s1[2]=s s2[0]=dd s2[1]=to s2[2]=es s3[0]=add s3[1]= s3[2]=ves s4[0]= s4[1]= s4[2]=aves 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=add|to w[1]|w[2]=to|faves pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNS chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=faves __BOS__ +O w[-1]=add w[0]=to w[1]=faves wl[-1]=add wl[0]=to wl[1]=faves pos[-1]=VB pos[0]=IN pos[1]=NNS chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLL shape[0]=LL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=a p1[0]=t p1[1]=f p2[-1]=ad p2[0]=to p2[1]=fa p3[-1]=add p3[0]= p3[1]=fav p4[-1]= p4[0]= p4[1]=fave s1[-1]=d s1[0]=o s1[1]=s s2[-1]=dd s2[0]=to s2[1]=es s3[-1]=add s3[0]= s3[1]=ves s4[-1]= s4[0]= s4[1]=aves 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=add|to w[0]|w[1]=to|faves pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=add w[1..4]=faves +O w[-2]=add w[-1]=to w[0]=faves wl[-2]=add wl[-1]=to wl[0]=faves pos[-2]=VB pos[-1]=IN pos[0]=NNS chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=a p1[-1]=t p1[0]=f p2[-2]=ad p2[-1]=to p2[0]=fa p3[-2]=add p3[-1]= p3[0]=fav p4[-2]= p4[-1]= p4[0]=fave s1[-2]=d s1[-1]=o s1[0]=s s2[-2]=dd s2[-1]=to s2[0]=es s3[-2]=add s3[-1]= s3[0]=ves s4[-2]= s4[-1]= s4[0]=aves 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=add|to w[-1]|w[0]=to|faves pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=to __EOS__ + +O w[0]=add w[1]=it w[2]=to wl[0]=add wl[1]=it wl[2]=to pos[0]=VB pos[1]=PRP pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=a p1[1]=i p1[2]=t p2[0]=ad p2[1]=it p2[2]=to p3[0]=add p3[1]= p3[2]= p4[0]= p4[1]= p4[2]= s1[0]=d s1[1]=t s1[2]=o s2[0]=dd s2[1]=it s2[2]=to s3[0]=add s3[1]= s3[2]= s4[0]= s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=add|it w[1]|w[2]=it|to pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=to w[1..4]=my w[1..4]=favourites __BOS__ +O w[-1]=add w[0]=it w[1]=to w[2]=my wl[-1]=add wl[0]=it wl[1]=to wl[2]=my pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=PRP$ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=a p1[0]=i p1[1]=t p1[2]=m p2[-1]=ad p2[0]=it p2[1]=to p2[2]=my p3[-1]=add p3[0]= p3[1]= p3[2]= p4[-1]= p4[0]= p4[1]= p4[2]= s1[-1]=d s1[0]=t s1[1]=o s1[2]=y s2[-1]=dd s2[0]=it s2[1]=to s2[2]=my s3[-1]=add s3[0]= s3[1]= s3[2]= s4[-1]= s4[0]= s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=add|it w[0]|w[1]=it|to w[1]|w[2]=to|my pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|PRP$ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[1..4]=to w[1..4]=my w[1..4]=favourites +O w[-2]=add w[-1]=it w[0]=to w[1]=my w[2]=favourites wl[-2]=add wl[-1]=it wl[0]=to wl[1]=my wl[2]=favourites pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=PRP$ pos[2]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LL shape[0]=LL shape[1]=LL shape[2]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=i p1[0]=t p1[1]=m p1[2]=f p2[-2]=ad p2[-1]=it p2[0]=to p2[1]=my p2[2]=fa p3[-2]=add p3[-1]= p3[0]= p3[1]= p3[2]=fav p4[-2]= p4[-1]= p4[0]= p4[1]= p4[2]=favo s1[-2]=d s1[-1]=t s1[0]=o s1[1]=y s1[2]=s s2[-2]=dd s2[-1]=it s2[0]=to s2[1]=my s2[2]=es s3[-2]=add s3[-1]= s3[0]= s3[1]= s3[2]=tes s4[-2]= s4[-1]= s4[0]= s4[1]= s4[2]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=add|it w[-1]|w[0]=it|to w[0]|w[1]=to|my w[1]|w[2]=my|favourites pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=it w[1..4]=my w[1..4]=favourites +O w[-2]=it w[-1]=to w[0]=my w[1]=favourites wl[-2]=it wl[-1]=to wl[0]=my wl[1]=favourites pos[-2]=PRP pos[-1]=IN pos[0]=PRP$ pos[1]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LL shape[0]=LL shape[1]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=i p1[-1]=t p1[0]=m p1[1]=f p2[-2]=it p2[-1]=to p2[0]=my p2[1]=fa p3[-2]= p3[-1]= p3[0]= p3[1]=fav p4[-2]= p4[-1]= p4[0]= p4[1]=favo s1[-2]=t s1[-1]=o s1[0]=y s1[1]=s s2[-2]=it s2[-1]=to s2[0]=my s2[1]=es s3[-2]= s3[-1]= s3[0]= s3[1]=tes s4[-2]= s4[-1]= s4[0]= s4[1]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=it|to w[-1]|w[0]=to|my w[0]|w[1]=my|favourites pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=it w[-4..-1]=to w[1..4]=favourites +O w[-2]=to w[-1]=my w[0]=favourites wl[-2]=to wl[-1]=my wl[0]=favourites pos[-2]=IN pos[-1]=PRP$ pos[0]=NNS chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=m p1[0]=f p2[-2]=to p2[-1]=my p2[0]=fa p3[-2]= p3[-1]= p3[0]=fav p4[-2]= p4[-1]= p4[0]=favo s1[-2]=o s1[-1]=y s1[0]=s s2[-2]=to s2[-1]=my s2[0]=es s3[-2]= s3[-1]= s3[0]=tes s4[-2]= s4[-1]= s4[0]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|my w[-1]|w[0]=my|favourites pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=it w[-4..-1]=to w[-4..-1]=my __EOS__ + +O w[0]=favourite w[1]=this w[2]=song wl[0]=favourite wl[1]=this wl[2]=song pos[0]=JJ pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLLLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=f p1[1]=t p1[2]=s p2[0]=fa p2[1]=th p2[2]=so p3[0]=fav p3[1]=thi p3[2]=son p4[0]=favo p4[1]=this p4[2]=song s1[0]=e s1[1]=s s1[2]=g s2[0]=te s2[1]=is s2[2]=ng s3[0]=ite s3[1]=his s3[2]=ong s4[0]=rite s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=favourite|this w[1]|w[2]=this|song pos[0]|pos[1]=JJ|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song __BOS__ +O w[-1]=favourite w[0]=this w[1]=song wl[-1]=favourite wl[0]=this wl[1]=song pos[-1]=JJ pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLLLLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=f p1[0]=t p1[1]=s p2[-1]=fa p2[0]=th p2[1]=so p3[-1]=fav p3[0]=thi p3[1]=son p4[-1]=favo p4[0]=this p4[1]=song s1[-1]=e s1[0]=s s1[1]=g s2[-1]=te s2[0]=is s2[1]=ng s3[-1]=ite s3[0]=his s3[1]=ong s4[-1]=rite s4[0]=this s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=favourite|this w[0]|w[1]=this|song pos[-1]|pos[0]=JJ|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=favourite w[1..4]=song +O w[-2]=favourite w[-1]=this w[0]=song wl[-2]=favourite wl[-1]=this wl[0]=song pos[-2]=JJ pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLLLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=f p1[-1]=t p1[0]=s p2[-2]=fa p2[-1]=th p2[0]=so p3[-2]=fav p3[-1]=thi p3[0]=son p4[-2]=favo p4[-1]=this p4[0]=song s1[-2]=e s1[-1]=s s1[0]=g s2[-2]=te s2[-1]=is s2[0]=ng s3[-2]=ite s3[-1]=his s3[0]=ong s4[-2]=rite s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=favourite|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=JJ|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=favourite w[-4..-1]=this __EOS__ + +O w[0]=could w[1]=you w[2]=mark wl[0]=could wl[1]=you wl[2]=mark pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=m p2[0]=co p2[1]=yo p2[2]=ma p3[0]=cou p3[1]=you p3[2]=mar p4[0]=coul p4[1]= p4[2]=mark s1[0]=d s1[1]=u s1[2]=k s2[0]=ld s2[1]=ou s2[2]=rk s3[0]=uld s3[1]=you s3[2]=ark s4[0]=ould s4[1]= s4[2]=mark 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=could|you w[1]|w[2]=you|mark pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=mark w[1..4]=it w[1..4]=as __BOS__ +O w[-1]=could w[0]=you w[1]=mark w[2]=it wl[-1]=could wl[0]=you wl[1]=mark wl[2]=it pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLL shape[0]=LLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=m p1[2]=i p2[-1]=co p2[0]=yo p2[1]=ma p2[2]=it p3[-1]=cou p3[0]=you p3[1]=mar p3[2]= p4[-1]=coul p4[0]= p4[1]=mark p4[2]= s1[-1]=d s1[0]=u s1[1]=k s1[2]=t s2[-1]=ld s2[0]=ou s2[1]=rk s2[2]=it s3[-1]=uld s3[0]=you s3[1]=ark s3[2]= s4[-1]=ould s4[0]= s4[1]=mark s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=could|you w[0]|w[1]=you|mark w[1]|w[2]=mark|it pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[1..4]=mark w[1..4]=it w[1..4]=as w[1..4]=favourite +O w[-2]=could w[-1]=you w[0]=mark w[1]=it w[2]=as wl[-2]=could wl[-1]=you wl[0]=mark wl[1]=it wl[2]=as pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=PRP pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=m p1[1]=i p1[2]=a p2[-2]=co p2[-1]=yo p2[0]=ma p2[1]=it p2[2]=as p3[-2]=cou p3[-1]=you p3[0]=mar p3[1]= p3[2]= p4[-2]=coul p4[-1]= p4[0]=mark p4[1]= p4[2]= s1[-2]=d s1[-1]=u s1[0]=k s1[1]=t s1[2]=s s2[-2]=ld s2[-1]=ou s2[0]=rk s2[1]=it s2[2]=as s3[-2]=uld s3[-1]=you s3[0]=ark s3[1]= s3[2]= s4[-2]=ould s4[-1]= s4[0]=mark s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=could|you w[-1]|w[0]=you|mark w[0]|w[1]=mark|it w[1]|w[2]=it|as pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[1..4]=it w[1..4]=as w[1..4]=favourite +O w[-2]=you w[-1]=mark w[0]=it w[1]=as w[2]=favourite wl[-2]=you wl[-1]=mark wl[0]=it wl[1]=as wl[2]=favourite pos[-2]=PRP pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LL shape[1]=LL shape[2]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=y p1[-1]=m p1[0]=i p1[1]=a p1[2]=f p2[-2]=yo p2[-1]=ma p2[0]=it p2[1]=as p2[2]=fa p3[-2]=you p3[-1]=mar p3[0]= p3[1]= p3[2]=fav p4[-2]= p4[-1]=mark p4[0]= p4[1]= p4[2]=favo s1[-2]=u s1[-1]=k s1[0]=t s1[1]=s s1[2]=e s2[-2]=ou s2[-1]=rk s2[0]=it s2[1]=as s2[2]=te s3[-2]=you s3[-1]=ark s3[0]= s3[1]= s3[2]=ite s4[-2]= s4[-1]=mark s4[0]= s4[1]= s4[2]=rite 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|mark w[-1]|w[0]=mark|it w[0]|w[1]=it|as w[1]|w[2]=as|favourite pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[-4..-1]=mark w[1..4]=as w[1..4]=favourite +O w[-2]=mark w[-1]=it w[0]=as w[1]=favourite wl[-2]=mark wl[-1]=it wl[0]=as wl[1]=favourite pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LL shape[1]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=m p1[-1]=i p1[0]=a p1[1]=f p2[-2]=ma p2[-1]=it p2[0]=as p2[1]=fa p3[-2]=mar p3[-1]= p3[0]= p3[1]=fav p4[-2]=mark p4[-1]= p4[0]= p4[1]=favo s1[-2]=k s1[-1]=t s1[0]=s s1[1]=e s2[-2]=rk s2[-1]=it s2[0]=as s2[1]=te s3[-2]=ark s3[-1]= s3[0]= s3[1]=ite s4[-2]=mark s4[-1]= s4[0]= s4[1]=rite 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=mark|it w[-1]|w[0]=it|as w[0]|w[1]=as|favourite pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[-4..-1]=mark w[-4..-1]=it w[1..4]=favourite +O w[-2]=it w[-1]=as w[0]=favourite wl[-2]=it wl[-1]=as wl[0]=favourite pos[-2]=PRP pos[-1]=IN pos[0]=JJ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=i p1[-1]=a p1[0]=f p2[-2]=it p2[-1]=as p2[0]=fa p3[-2]= p3[-1]= p3[0]=fav p4[-2]= p4[-1]= p4[0]=favo s1[-2]=t s1[-1]=s s1[0]=e s2[-2]=it s2[-1]=as s2[0]=te s3[-2]= s3[-1]= s3[0]=ite s4[-2]= s4[-1]= s4[0]=rite 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=it|as w[-1]|w[0]=as|favourite pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=you w[-4..-1]=mark w[-4..-1]=it w[-4..-1]=as __EOS__ + +O w[0]=add w[1]=this w[2]=song wl[0]=add wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=a p1[1]=t p1[2]=s p2[0]=ad p2[1]=th p2[2]=so p3[0]=add p3[1]=thi p3[2]=son p4[0]= p4[1]=this p4[2]=song s1[0]=d s1[1]=s s1[2]=g s2[0]=dd s2[1]=is s2[2]=ng s3[0]=add s3[1]=his s3[2]=ong s4[0]= s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=add|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song w[1..4]=to w[1..4]=my __BOS__ +O w[-1]=add w[0]=this w[1]=song w[2]=to wl[-1]=add wl[0]=this wl[1]=song wl[2]=to pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=a p1[0]=t p1[1]=s p1[2]=t p2[-1]=ad p2[0]=th p2[1]=so p2[2]=to p3[-1]=add p3[0]=thi p3[1]=son p3[2]= p4[-1]= p4[0]=this p4[1]=song p4[2]= s1[-1]=d s1[0]=s s1[1]=g s1[2]=o s2[-1]=dd s2[0]=is s2[1]=ng s2[2]=to s3[-1]=add s3[0]=his s3[1]=ong s3[2]= s4[-1]= s4[0]=this s4[1]=song s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=add|this w[0]|w[1]=this|song w[1]|w[2]=song|to pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[1..4]=song w[1..4]=to w[1..4]=my w[1..4]=favourites +O w[-2]=add w[-1]=this w[0]=song w[1]=to w[2]=my wl[-2]=add wl[-1]=this wl[0]=song wl[1]=to wl[2]=my pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=t p1[0]=s p1[1]=t p1[2]=m p2[-2]=ad p2[-1]=th p2[0]=so p2[1]=to p2[2]=my p3[-2]=add p3[-1]=thi p3[0]=son p3[1]= p3[2]= p4[-2]= p4[-1]=this p4[0]=song p4[1]= p4[2]= s1[-2]=d s1[-1]=s s1[0]=g s1[1]=o s1[2]=y s2[-2]=dd s2[-1]=is s2[0]=ng s2[1]=to s2[2]=my s3[-2]=add s3[-1]=his s3[0]=ong s3[1]= s3[2]= s4[-2]= s4[-1]=this s4[0]=song s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=add|this w[-1]|w[0]=this|song w[0]|w[1]=song|to w[1]|w[2]=to|my pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[1..4]=to w[1..4]=my w[1..4]=favourites +O w[-2]=this w[-1]=song w[0]=to w[1]=my w[2]=favourites wl[-2]=this wl[-1]=song wl[0]=to wl[1]=my wl[2]=favourites pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=PRP$ pos[2]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=LL shape[2]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=s p1[0]=t p1[1]=m p1[2]=f p2[-2]=th p2[-1]=so p2[0]=to p2[1]=my p2[2]=fa p3[-2]=thi p3[-1]=son p3[0]= p3[1]= p3[2]=fav p4[-2]=this p4[-1]=song p4[0]= p4[1]= p4[2]=favo s1[-2]=s s1[-1]=g s1[0]=o s1[1]=y s1[2]=s s2[-2]=is s2[-1]=ng s2[0]=to s2[1]=my s2[2]=es s3[-2]=his s3[-1]=ong s3[0]= s3[1]= s3[2]=tes s4[-2]=this s4[-1]=song s4[0]= s4[1]= s4[2]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=this|song w[-1]|w[0]=song|to w[0]|w[1]=to|my w[1]|w[2]=my|favourites pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[-4..-1]=song w[1..4]=my w[1..4]=favourites +O w[-2]=song w[-1]=to w[0]=my w[1]=favourites wl[-2]=song wl[-1]=to wl[0]=my wl[1]=favourites pos[-2]=NN pos[-1]=IN pos[0]=PRP$ pos[1]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LL shape[1]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=s p1[-1]=t p1[0]=m p1[1]=f p2[-2]=so p2[-1]=to p2[0]=my p2[1]=fa p3[-2]=son p3[-1]= p3[0]= p3[1]=fav p4[-2]=song p4[-1]= p4[0]= p4[1]=favo s1[-2]=g s1[-1]=o s1[0]=y s1[1]=s s2[-2]=ng s2[-1]=to s2[0]=my s2[1]=es s3[-2]=ong s3[-1]= s3[0]= s3[1]=tes s4[-2]=song s4[-1]= s4[0]= s4[1]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|to w[-1]|w[0]=to|my w[0]|w[1]=my|favourites pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[-4..-1]=song w[-4..-1]=to w[1..4]=favourites +O w[-2]=to w[-1]=my w[0]=favourites wl[-2]=to wl[-1]=my wl[0]=favourites pos[-2]=IN pos[-1]=PRP$ pos[0]=NNS chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=m p1[0]=f p2[-2]=to p2[-1]=my p2[0]=fa p3[-2]= p3[-1]= p3[0]=fav p4[-2]= p4[-1]= p4[0]=favo s1[-2]=o s1[-1]=y s1[0]=s s2[-2]=to s2[-1]=my s2[0]=es s3[-2]= s3[-1]= s3[0]=tes s4[-2]= s4[-1]= s4[0]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|my w[-1]|w[0]=my|favourites pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=this w[-4..-1]=song w[-4..-1]=to w[-4..-1]=my __EOS__ + +O w[0]=stop w[1]=it wl[0]=stop wl[1]=it pos[0]=VB pos[1]=PRP chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=s p1[1]=i p2[0]=st p2[1]=it p3[0]=sto p3[1]= p4[0]=stop p4[1]= s1[0]=p s1[1]=t s2[0]=op s2[1]=it s3[0]=top s3[1]= s4[0]=stop s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=stop|it pos[0]|pos[1]=VB|PRP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=it __BOS__ +O w[-1]=stop w[0]=it wl[-1]=stop wl[0]=it pos[-1]=VB pos[0]=PRP chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=s p1[0]=i p2[-1]=st p2[0]=it p3[-1]=sto p3[0]= p4[-1]=stop p4[0]= s1[-1]=p s1[0]=t s2[-1]=op s2[0]=it s3[-1]=top s3[0]= s4[-1]=stop s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=stop|it pos[-1]|pos[0]=VB|PRP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=stop __EOS__ + +O w[0]=could w[1]=you w[2]=stop wl[0]=could wl[1]=you wl[2]=stop pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=s p2[0]=co p2[1]=yo p2[2]=st p3[0]=cou p3[1]=you p3[2]=sto p4[0]=coul p4[1]= p4[2]=stop s1[0]=d s1[1]=u s1[2]=p s2[0]=ld s2[1]=ou s2[2]=op s3[0]=uld s3[1]=you s3[2]=top s4[0]=ould s4[1]= s4[2]=stop 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=could|you w[1]|w[2]=you|stop pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=stop __BOS__ +O w[-1]=could w[0]=you w[1]=stop wl[-1]=could wl[0]=you wl[1]=stop pos[-1]=MD pos[0]=PRP pos[1]=VB chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLL shape[0]=LLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=c p1[0]=y p1[1]=s p2[-1]=co p2[0]=yo p2[1]=st p3[-1]=cou p3[0]=you p3[1]=sto p4[-1]=coul p4[0]= p4[1]=stop s1[-1]=d s1[0]=u s1[1]=p s2[-1]=ld s2[0]=ou s2[1]=op s3[-1]=uld s3[0]=you s3[1]=top s4[-1]=ould s4[0]= s4[1]=stop 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=could|you w[0]|w[1]=you|stop pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=could w[1..4]=stop +O w[-2]=could w[-1]=you w[0]=stop wl[-2]=could wl[-1]=you wl[0]=stop pos[-2]=MD pos[-1]=PRP pos[0]=VB chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=c p1[-1]=y p1[0]=s p2[-2]=co p2[-1]=yo p2[0]=st p3[-2]=cou p3[-1]=you p3[0]=sto p4[-2]=coul p4[-1]= p4[0]=stop s1[-2]=d s1[-1]=u s1[0]=p s2[-2]=ld s2[-1]=ou s2[0]=op s3[-2]=uld s3[-1]=you s3[0]=top s4[-2]=ould s4[-1]= s4[0]=stop 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=could|you w[-1]|w[0]=you|stop pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you __EOS__ + +O w[0]=music w[1]=off wl[0]=music wl[1]=off pos[0]=NN pos[1]=RP chk[0]=O chk[1]=O shape[0]=LLLLL shape[1]=LLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=m p1[1]=o p2[0]=mu p2[1]=of p3[0]=mus p3[1]=off p4[0]=musi p4[1]= s1[0]=c s1[1]=f s2[0]=ic s2[1]=ff s3[0]=sic s3[1]=off s4[0]=usic s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=music|off pos[0]|pos[1]=NN|RP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=off __BOS__ +O w[-1]=music w[0]=off wl[-1]=music wl[0]=off pos[-1]=NN pos[0]=RP chk[-1]=O chk[0]=O shape[-1]=LLLLL shape[0]=LLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=m p1[0]=o p2[-1]=mu p2[0]=of p3[-1]=mus p3[0]=off p4[-1]=musi p4[0]= s1[-1]=c s1[0]=f s2[-1]=ic s2[0]=ff s3[-1]=sic s3[0]=off s4[-1]=usic s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=music|off pos[-1]|pos[0]=NN|RP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=music __EOS__ + +O w[0]=can w[1]=you w[2]=stop wl[0]=can wl[1]=you wl[2]=stop pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=s p2[0]=ca p2[1]=yo p2[2]=st p3[0]=can p3[1]=you p3[2]=sto p4[0]= p4[1]= p4[2]=stop s1[0]=n s1[1]=u s1[2]=p s2[0]=an s2[1]=ou s2[2]=op s3[0]=can s3[1]=you s3[2]=top s4[0]= s4[1]= s4[2]=stop 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|stop pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=stop w[1..4]=the w[1..4]=music __BOS__ +O w[-1]=can w[0]=you w[1]=stop w[2]=the wl[-1]=can wl[0]=you wl[1]=stop wl[2]=the pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=s p1[2]=t p2[-1]=ca p2[0]=yo p2[1]=st p2[2]=th p3[-1]=can p3[0]=you p3[1]=sto p3[2]=the p4[-1]= p4[0]= p4[1]=stop p4[2]= s1[-1]=n s1[0]=u s1[1]=p s1[2]=e s2[-1]=an s2[0]=ou s2[1]=op s2[2]=he s3[-1]=can s3[0]=you s3[1]=top s3[2]=the s4[-1]= s4[0]= s4[1]=stop s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|stop w[1]|w[2]=stop|the pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=stop w[1..4]=the w[1..4]=music +O w[-2]=can w[-1]=you w[0]=stop w[1]=the w[2]=music wl[-2]=can wl[-1]=you wl[0]=stop wl[1]=the wl[2]=music pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=s p1[1]=t p1[2]=m p2[-2]=ca p2[-1]=yo p2[0]=st p2[1]=th p2[2]=mu p3[-2]=can p3[-1]=you p3[0]=sto p3[1]=the p3[2]=mus p4[-2]= p4[-1]= p4[0]=stop p4[1]= p4[2]=musi s1[-2]=n s1[-1]=u s1[0]=p s1[1]=e s1[2]=c s2[-2]=an s2[-1]=ou s2[0]=op s2[1]=he s2[2]=ic s3[-2]=can s3[-1]=you s3[0]=top s3[1]=the s3[2]=sic s4[-2]= s4[-1]= s4[0]=stop s4[1]= s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|stop w[0]|w[1]=stop|the w[1]|w[2]=the|music pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=the w[1..4]=music +O w[-2]=you w[-1]=stop w[0]=the w[1]=music wl[-2]=you wl[-1]=stop wl[0]=the wl[1]=music pos[-2]=PRP pos[-1]=VB pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=y p1[-1]=s p1[0]=t p1[1]=m p2[-2]=yo p2[-1]=st p2[0]=th p2[1]=mu p3[-2]=you p3[-1]=sto p3[0]=the p3[1]=mus p4[-2]= p4[-1]=stop p4[0]= p4[1]=musi s1[-2]=u s1[-1]=p s1[0]=e s1[1]=c s2[-2]=ou s2[-1]=op s2[0]=he s2[1]=ic s3[-2]=you s3[-1]=top s3[0]=the s3[1]=sic s4[-2]= s4[-1]=stop s4[0]= s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=you|stop w[-1]|w[0]=stop|the w[0]|w[1]=the|music pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=stop w[1..4]=music +O w[-2]=stop w[-1]=the w[0]=music wl[-2]=stop wl[-1]=the wl[0]=music pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=t p1[0]=m p2[-2]=st p2[-1]=th p2[0]=mu p3[-2]=sto p3[-1]=the p3[0]=mus p4[-2]=stop p4[-1]= p4[0]=musi s1[-2]=p s1[-1]=e s1[0]=c s2[-2]=op s2[-1]=he s2[0]=ic s3[-2]=top s3[-1]=the s3[0]=sic s4[-2]=stop s4[-1]= s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=stop|the w[-1]|w[0]=the|music pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=stop w[-4..-1]=the __EOS__ + +O w[0]=stop wl[0]=stop pos[0]=VB chk[0]=O shape[0]=LLLL shaped[0]=L type[0]=AllLetter p1[0]=s p2[0]=st p3[0]=sto p4[0]=stop s1[0]=p s2[0]=op s3[0]=top s4[0]=stop 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=stop w[1]=playing wl[0]=stop wl[1]=playing pos[0]=VB pos[1]=VBG chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=s p1[1]=p p2[0]=st p2[1]=pl p3[0]=sto p3[1]=pla p4[0]=stop p4[1]=play s1[0]=p s1[1]=g s2[0]=op s2[1]=ng s3[0]=top s3[1]=ing s4[0]=stop s4[1]=ying 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=stop|playing pos[0]|pos[1]=VB|VBG chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=playing __BOS__ +O w[-1]=stop w[0]=playing wl[-1]=stop wl[0]=playing pos[-1]=VB pos[0]=VBG chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=s p1[0]=p p2[-1]=st p2[0]=pl p3[-1]=sto p3[0]=pla p4[-1]=stop p4[0]=play s1[-1]=p s1[0]=g s2[-1]=op s2[0]=ng s3[-1]=top s3[0]=ing s4[-1]=stop s4[0]=ying 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=stop|playing pos[-1]|pos[0]=VB|VBG chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=stop __EOS__ + +O w[0]=stop w[1]=the w[2]=music wl[0]=stop wl[1]=the wl[2]=music pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=m p2[0]=st p2[1]=th p2[2]=mu p3[0]=sto p3[1]=the p3[2]=mus p4[0]=stop p4[1]= p4[2]=musi s1[0]=p s1[1]=e s1[2]=c s2[0]=op s2[1]=he s2[2]=ic s3[0]=top s3[1]=the s3[2]=sic s4[0]=stop s4[1]= s4[2]=usic 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=stop|the w[1]|w[2]=the|music pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=music __BOS__ +O w[-1]=stop w[0]=the w[1]=music wl[-1]=stop wl[0]=the wl[1]=music pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=s p1[0]=t p1[1]=m p2[-1]=st p2[0]=th p2[1]=mu p3[-1]=sto p3[0]=the p3[1]=mus p4[-1]=stop p4[0]= p4[1]=musi s1[-1]=p s1[0]=e s1[1]=c s2[-1]=op s2[0]=he s2[1]=ic s3[-1]=top s3[0]=the s3[1]=sic s4[-1]=stop s4[0]= s4[1]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=stop|the w[0]|w[1]=the|music pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=stop w[1..4]=music +O w[-2]=stop w[-1]=the w[0]=music wl[-2]=stop wl[-1]=the wl[0]=music pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=t p1[0]=m p2[-2]=st p2[-1]=th p2[0]=mu p3[-2]=sto p3[-1]=the p3[0]=mus p4[-2]=stop p4[-1]= p4[0]=musi s1[-2]=p s1[-1]=e s1[0]=c s2[-2]=op s2[-1]=he s2[0]=ic s3[-2]=top s3[-1]=the s3[0]=sic s4[-2]=stop s4[-1]= s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=stop|the w[-1]|w[0]=the|music pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=stop w[-4..-1]=the __EOS__ + +O w[0]=turn w[1]=off w[2]=music wl[0]=turn wl[1]=off wl[2]=music pos[0]=VB pos[1]=RP pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=o p1[2]=m p2[0]=tu p2[1]=of p2[2]=mu p3[0]=tur p3[1]=off p3[2]=mus p4[0]=turn p4[1]= p4[2]=musi s1[0]=n s1[1]=f s1[2]=c s2[0]=rn s2[1]=ff s2[2]=ic s3[0]=urn s3[1]=off s3[2]=sic s4[0]=turn s4[1]= s4[2]=usic 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=turn|off w[1]|w[2]=off|music pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=off w[1..4]=music __BOS__ +O w[-1]=turn w[0]=off w[1]=music wl[-1]=turn wl[0]=off wl[1]=music pos[-1]=VB pos[0]=RP pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=t p1[0]=o p1[1]=m p2[-1]=tu p2[0]=of p2[1]=mu p3[-1]=tur p3[0]=off p3[1]=mus p4[-1]=turn p4[0]= p4[1]=musi s1[-1]=n s1[0]=f s1[1]=c s2[-1]=rn s2[0]=ff s2[1]=ic s3[-1]=urn s3[0]=off s3[1]=sic s4[-1]=turn s4[0]= s4[1]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=turn|off w[0]|w[1]=off|music pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=turn w[1..4]=music +O w[-2]=turn w[-1]=off w[0]=music wl[-2]=turn wl[-1]=off wl[0]=music pos[-2]=VB pos[-1]=RP pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=o p1[0]=m p2[-2]=tu p2[-1]=of p2[0]=mu p3[-2]=tur p3[-1]=off p3[0]=mus p4[-2]=turn p4[-1]= p4[0]=musi s1[-2]=n s1[-1]=f s1[0]=c s2[-2]=rn s2[-1]=ff s2[0]=ic s3[-2]=urn s3[-1]=off s3[0]=sic s4[-2]=turn s4[-1]= s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=turn|off w[-1]|w[0]=off|music pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=off __EOS__ + +O w[0]=enough wl[0]=enough pos[0]=RB chk[0]=O shape[0]=LLLLLL shaped[0]=L type[0]=AllLetter p1[0]=e p2[0]=en p3[0]=eno p4[0]=enou s1[0]=h s2[0]=gh s3[0]=ugh s4[0]=ough 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=enough w[1]=music wl[0]=enough wl[1]=music pos[0]=JJ pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLLLL shape[1]=LLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=e p1[1]=m p2[0]=en p2[1]=mu p3[0]=eno p3[1]=mus p4[0]=enou p4[1]=musi s1[0]=h s1[1]=c s2[0]=gh s2[1]=ic s3[0]=ugh s3[1]=sic s4[0]=ough s4[1]=usic 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=enough|music pos[0]|pos[1]=JJ|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=music __BOS__ +O w[-1]=enough w[0]=music wl[-1]=enough wl[0]=music pos[-1]=JJ pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLLLL shape[0]=LLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=e p1[0]=m p2[-1]=en p2[0]=mu p3[-1]=eno p3[0]=mus p4[-1]=enou p4[0]=musi s1[-1]=h s1[0]=c s2[-1]=gh s2[0]=ic s3[-1]=ugh s3[0]=sic s4[-1]=ough s4[0]=usic 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=enough|music pos[-1]|pos[0]=JJ|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=enough __EOS__ + +O w[0]=repeat wl[0]=repeat pos[0]=VB chk[0]=O shape[0]=LLLLLL shaped[0]=L type[0]=AllLetter p1[0]=r p2[0]=re p3[0]=rep p4[0]=repe s1[0]=t s2[0]=at s3[0]=eat s4[0]=peat 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=repeat w[1]=one w[2]=more wl[0]=repeat wl[1]=one wl[2]=more pos[0]=VB pos[1]=CD pos[2]=JJR chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=o p1[2]=m p2[0]=re p2[1]=on p2[2]=mo p3[0]=rep p3[1]=one p3[2]=mor p4[0]=repe p4[1]= p4[2]=more s1[0]=t s1[1]=e s1[2]=e s2[0]=at s2[1]=ne s2[2]=re s3[0]=eat s3[1]=one s3[2]=ore s4[0]=peat s4[1]= s4[2]=more 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=repeat|one w[1]|w[2]=one|more pos[0]|pos[1]=VB|CD pos[1]|pos[2]=CD|JJR chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=one w[1..4]=more w[1..4]=time __BOS__ +O w[-1]=repeat w[0]=one w[1]=more w[2]=time wl[-1]=repeat wl[0]=one wl[1]=more wl[2]=time pos[-1]=VB pos[0]=CD pos[1]=JJR pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=r p1[0]=o p1[1]=m p1[2]=t p2[-1]=re p2[0]=on p2[1]=mo p2[2]=ti p3[-1]=rep p3[0]=one p3[1]=mor p3[2]=tim p4[-1]=repe p4[0]= p4[1]=more p4[2]=time s1[-1]=t s1[0]=e s1[1]=e s1[2]=e s2[-1]=at s2[0]=ne s2[1]=re s2[2]=me s3[-1]=eat s3[0]=one s3[1]=ore s3[2]=ime s4[-1]=peat s4[0]= s4[1]=more s4[2]=time 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=repeat|one w[0]|w[1]=one|more w[1]|w[2]=more|time pos[-1]|pos[0]=VB|CD pos[0]|pos[1]=CD|JJR pos[1]|pos[2]=JJR|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[1..4]=more w[1..4]=time +O w[-2]=repeat w[-1]=one w[0]=more w[1]=time wl[-2]=repeat wl[-1]=one wl[0]=more wl[1]=time pos[-2]=VB pos[-1]=CD pos[0]=JJR pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=r p1[-1]=o p1[0]=m p1[1]=t p2[-2]=re p2[-1]=on p2[0]=mo p2[1]=ti p3[-2]=rep p3[-1]=one p3[0]=mor p3[1]=tim p4[-2]=repe p4[-1]= p4[0]=more p4[1]=time s1[-2]=t s1[-1]=e s1[0]=e s1[1]=e s2[-2]=at s2[-1]=ne s2[0]=re s2[1]=me s3[-2]=eat s3[-1]=one s3[0]=ore s3[1]=ime s4[-2]=peat s4[-1]= s4[0]=more s4[1]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=repeat|one w[-1]|w[0]=one|more w[0]|w[1]=more|time pos[-2]|pos[-1]=VB|CD pos[-1]|pos[0]=CD|JJR pos[0]|pos[1]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=one w[1..4]=time +O w[-2]=one w[-1]=more w[0]=time wl[-2]=one wl[-1]=more wl[0]=time pos[-2]=CD pos[-1]=JJR pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=m p1[0]=t p2[-2]=on p2[-1]=mo p2[0]=ti p3[-2]=one p3[-1]=mor p3[0]=tim p4[-2]= p4[-1]=more p4[0]=time s1[-2]=e s1[-1]=e s1[0]=e s2[-2]=ne s2[-1]=re s2[0]=me s3[-2]=one s3[-1]=ore s3[0]=ime s4[-2]= s4[-1]=more s4[0]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=one|more w[-1]|w[0]=more|time pos[-2]|pos[-1]=CD|JJR pos[-1]|pos[0]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=one w[-4..-1]=more __EOS__ + +O w[0]=put w[1]=it w[2]=on wl[0]=put wl[1]=it wl[2]=on pos[0]=VB pos[1]=PRP pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=i p1[2]=o p2[0]=pu p2[1]=it p2[2]=on p3[0]=put p3[1]= p3[2]= p4[0]= p4[1]= p4[2]= s1[0]=t s1[1]=t s1[2]=n s2[0]=ut s2[1]=it s2[2]=on s3[0]=put s3[1]= s3[2]= s4[0]= s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|it w[1]|w[2]=it|on pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=on w[1..4]=repeat w[1..4]=mode __BOS__ +O w[-1]=put w[0]=it w[1]=on w[2]=repeat wl[-1]=put wl[0]=it wl[1]=on wl[2]=repeat pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LL shape[2]=LLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=i p1[1]=o p1[2]=r p2[-1]=pu p2[0]=it p2[1]=on p2[2]=re p3[-1]=put p3[0]= p3[1]= p3[2]=rep p4[-1]= p4[0]= p4[1]= p4[2]=repe s1[-1]=t s1[0]=t s1[1]=n s1[2]=t s2[-1]=ut s2[0]=it s2[1]=on s2[2]=at s3[-1]=put s3[0]= s3[1]= s3[2]=eat s4[-1]= s4[0]= s4[1]= s4[2]=peat 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|it w[0]|w[1]=it|on w[1]|w[2]=on|repeat pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=on w[1..4]=repeat w[1..4]=mode +O w[-2]=put w[-1]=it w[0]=on w[1]=repeat w[2]=mode wl[-2]=put wl[-1]=it wl[0]=on wl[1]=repeat wl[2]=mode pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LL shape[0]=LL shape[1]=LLLLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=i p1[0]=o p1[1]=r p1[2]=m p2[-2]=pu p2[-1]=it p2[0]=on p2[1]=re p2[2]=mo p3[-2]=put p3[-1]= p3[0]= p3[1]=rep p3[2]=mod p4[-2]= p4[-1]= p4[0]= p4[1]=repe p4[2]=mode s1[-2]=t s1[-1]=t s1[0]=n s1[1]=t s1[2]=e s2[-2]=ut s2[-1]=it s2[0]=on s2[1]=at s2[2]=de s3[-2]=put s3[-1]= s3[0]= s3[1]=eat s3[2]=ode s4[-2]= s4[-1]= s4[0]= s4[1]=peat s4[2]=mode 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=put|it w[-1]|w[0]=it|on w[0]|w[1]=on|repeat w[1]|w[2]=repeat|mode pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=it w[1..4]=repeat w[1..4]=mode +O w[-2]=it w[-1]=on w[0]=repeat w[1]=mode wl[-2]=it wl[-1]=on wl[0]=repeat wl[1]=mode pos[-2]=PRP pos[-1]=IN pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=i p1[-1]=o p1[0]=r p1[1]=m p2[-2]=it p2[-1]=on p2[0]=re p2[1]=mo p3[-2]= p3[-1]= p3[0]=rep p3[1]=mod p4[-2]= p4[-1]= p4[0]=repe p4[1]=mode s1[-2]=t s1[-1]=n s1[0]=t s1[1]=e s2[-2]=it s2[-1]=on s2[0]=at s2[1]=de s3[-2]= s3[-1]= s3[0]=eat s3[1]=ode s4[-2]= s4[-1]= s4[0]=peat s4[1]=mode 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=it|on w[-1]|w[0]=on|repeat w[0]|w[1]=repeat|mode pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=it w[-4..-1]=on w[1..4]=mode +O w[-2]=on w[-1]=repeat w[0]=mode wl[-2]=on wl[-1]=repeat wl[0]=mode pos[-2]=IN pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=r p1[0]=m p2[-2]=on p2[-1]=re p2[0]=mo p3[-2]= p3[-1]=rep p3[0]=mod p4[-2]= p4[-1]=repe p4[0]=mode s1[-2]=n s1[-1]=t s1[0]=e s2[-2]=on s2[-1]=at s2[0]=de s3[-2]= s3[-1]=eat s3[0]=ode s4[-2]= s4[-1]=peat s4[0]=mode 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=on|repeat w[-1]|w[0]=repeat|mode pos[-2]|pos[-1]=IN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=it w[-4..-1]=on w[-4..-1]=repeat __EOS__ + +O w[0]=play w[1]=this w[2]=track wl[0]=play wl[1]=this wl[2]=track pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=t p2[0]=pl p2[1]=th p2[2]=tr p3[0]=pla p3[1]=thi p3[2]=tra p4[0]=play p4[1]=this p4[2]=trac s1[0]=y s1[1]=s s1[2]=k s2[0]=ay s2[1]=is s2[2]=ck s3[0]=lay s3[1]=his s3[2]=ack s4[0]=play s4[1]=this s4[2]=rack 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|this w[1]|w[2]=this|track pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=track w[1..4]=once w[1..4]=again __BOS__ +O w[-1]=play w[0]=this w[1]=track w[2]=once wl[-1]=play wl[0]=this wl[1]=track wl[2]=once pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=RB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=t p1[2]=o p2[-1]=pl p2[0]=th p2[1]=tr p2[2]=on p3[-1]=pla p3[0]=thi p3[1]=tra p3[2]=onc p4[-1]=play p4[0]=this p4[1]=trac p4[2]=once s1[-1]=y s1[0]=s s1[1]=k s1[2]=e s2[-1]=ay s2[0]=is s2[1]=ck s2[2]=ce s3[-1]=lay s3[0]=his s3[1]=ack s3[2]=nce s4[-1]=play s4[0]=this s4[1]=rack s4[2]=once 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|this w[0]|w[1]=this|track w[1]|w[2]=track|once pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|RB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=track w[1..4]=once w[1..4]=again +O w[-2]=play w[-1]=this w[0]=track w[1]=once w[2]=again wl[-2]=play wl[-1]=this wl[0]=track wl[1]=once wl[2]=again pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=RB pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=t p1[1]=o p1[2]=a p2[-2]=pl p2[-1]=th p2[0]=tr p2[1]=on p2[2]=ag p3[-2]=pla p3[-1]=thi p3[0]=tra p3[1]=onc p3[2]=aga p4[-2]=play p4[-1]=this p4[0]=trac p4[1]=once p4[2]=agai s1[-2]=y s1[-1]=s s1[0]=k s1[1]=e s1[2]=n s2[-2]=ay s2[-1]=is s2[0]=ck s2[1]=ce s2[2]=in s3[-2]=lay s3[-1]=his s3[0]=ack s3[1]=nce s3[2]=ain s4[-2]=play s4[-1]=this s4[0]=rack s4[1]=once s4[2]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|this w[-1]|w[0]=this|track w[0]|w[1]=track|once w[1]|w[2]=once|again pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|RB pos[1]|pos[2]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=this w[1..4]=once w[1..4]=again +O w[-2]=this w[-1]=track w[0]=once w[1]=again wl[-2]=this wl[-1]=track wl[0]=once wl[1]=again pos[-2]=DT pos[-1]=NN pos[0]=RB pos[1]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=t p1[0]=o p1[1]=a p2[-2]=th p2[-1]=tr p2[0]=on p2[1]=ag p3[-2]=thi p3[-1]=tra p3[0]=onc p3[1]=aga p4[-2]=this p4[-1]=trac p4[0]=once p4[1]=agai s1[-2]=s s1[-1]=k s1[0]=e s1[1]=n s2[-2]=is s2[-1]=ck s2[0]=ce s2[1]=in s3[-2]=his s3[-1]=ack s3[0]=nce s3[1]=ain s4[-2]=this s4[-1]=rack s4[0]=once s4[1]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=this|track w[-1]|w[0]=track|once w[0]|w[1]=once|again pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|RB pos[0]|pos[1]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=this w[-4..-1]=track w[1..4]=again +O w[-2]=track w[-1]=once w[0]=again wl[-2]=track wl[-1]=once wl[0]=again pos[-2]=NN pos[-1]=RB pos[0]=RB chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=o p1[0]=a p2[-2]=tr p2[-1]=on p2[0]=ag p3[-2]=tra p3[-1]=onc p3[0]=aga p4[-2]=trac p4[-1]=once p4[0]=agai s1[-2]=k s1[-1]=e s1[0]=n s2[-2]=ck s2[-1]=ce s2[0]=in s3[-2]=ack s3[-1]=nce s3[0]=ain s4[-2]=rack s4[-1]=once s4[0]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=track|once w[-1]|w[0]=once|again pos[-2]|pos[-1]=NN|RB pos[-1]|pos[0]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=this w[-4..-1]=track w[-4..-1]=once __EOS__ + +O w[0]=repeat w[1]=it wl[0]=repeat wl[1]=it pos[0]=VB pos[1]=PRP chk[0]=O chk[1]=O shape[0]=LLLLLL shape[1]=LL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=r p1[1]=i p2[0]=re p2[1]=it p3[0]=rep p3[1]= p4[0]=repe p4[1]= s1[0]=t s1[1]=t s2[0]=at s2[1]=it s3[0]=eat s3[1]= s4[0]=peat s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=repeat|it pos[0]|pos[1]=VB|PRP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=it __BOS__ +O w[-1]=repeat w[0]=it wl[-1]=repeat wl[0]=it pos[-1]=VB pos[0]=PRP chk[-1]=O chk[0]=O shape[-1]=LLLLLL shape[0]=LL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=r p1[0]=i p2[-1]=re p2[0]=it p3[-1]=rep p3[0]= p4[-1]=repe p4[0]= s1[-1]=t s1[0]=t s2[-1]=at s2[0]=it s3[-1]=eat s3[0]= s4[-1]=peat s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=repeat|it pos[-1]|pos[0]=VB|PRP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat __EOS__ + +O w[0]=play w[1]=this w[2]=song wl[0]=play wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=thi p3[2]=son p4[0]=play p4[1]=this p4[2]=song s1[0]=y s1[1]=s s1[2]=g s2[0]=ay s2[1]=is s2[2]=ng s3[0]=lay s3[1]=his s3[2]=ong s4[0]=play s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song w[1..4]=from w[1..4]=the __BOS__ +O w[-1]=play w[0]=this w[1]=song w[2]=from wl[-1]=play wl[0]=this wl[1]=song wl[2]=from pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=s p1[2]=f p2[-1]=pl p2[0]=th p2[1]=so p2[2]=fr p3[-1]=pla p3[0]=thi p3[1]=son p3[2]=fro p4[-1]=play p4[0]=this p4[1]=song p4[2]=from s1[-1]=y s1[0]=s s1[1]=g s1[2]=m s2[-1]=ay s2[0]=is s2[1]=ng s2[2]=om s3[-1]=lay s3[0]=his s3[1]=ong s3[2]=rom s4[-1]=play s4[0]=this s4[1]=song s4[2]=from 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|this w[0]|w[1]=this|song w[1]|w[2]=song|from pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=song w[1..4]=from w[1..4]=the w[1..4]=beginning +O w[-2]=play w[-1]=this w[0]=song w[1]=from w[2]=the wl[-2]=play wl[-1]=this wl[0]=song wl[1]=from wl[2]=the pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p1[1]=f p1[2]=t p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=fr p2[2]=th p3[-2]=pla p3[-1]=thi p3[0]=son p3[1]=fro p3[2]=the p4[-2]=play p4[-1]=this p4[0]=song p4[1]=from p4[2]= s1[-2]=y s1[-1]=s s1[0]=g s1[1]=m s1[2]=e s2[-2]=ay s2[-1]=is s2[0]=ng s2[1]=om s2[2]=he s3[-2]=lay s3[-1]=his s3[0]=ong s3[1]=rom s3[2]=the s4[-2]=play s4[-1]=this s4[0]=song s4[1]=from s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|this w[-1]|w[0]=this|song w[0]|w[1]=song|from w[1]|w[2]=from|the pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=this w[1..4]=from w[1..4]=the w[1..4]=beginning +O w[-2]=this w[-1]=song w[0]=from w[1]=the w[2]=beginning wl[-2]=this wl[-1]=song wl[0]=from wl[1]=the wl[2]=beginning pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=s p1[0]=f p1[1]=t p1[2]=b p2[-2]=th p2[-1]=so p2[0]=fr p2[1]=th p2[2]=be p3[-2]=thi p3[-1]=son p3[0]=fro p3[1]=the p3[2]=beg p4[-2]=this p4[-1]=song p4[0]=from p4[1]= p4[2]=begi s1[-2]=s s1[-1]=g s1[0]=m s1[1]=e s1[2]=g s2[-2]=is s2[-1]=ng s2[0]=om s2[1]=he s2[2]=ng s3[-2]=his s3[-1]=ong s3[0]=rom s3[1]=the s3[2]=ing s4[-2]=this s4[-1]=song s4[0]=from s4[1]= s4[2]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=this|song w[-1]|w[0]=song|from w[0]|w[1]=from|the w[1]|w[2]=the|beginning pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=this w[-4..-1]=song w[1..4]=the w[1..4]=beginning +O w[-2]=song w[-1]=from w[0]=the w[1]=beginning wl[-2]=song wl[-1]=from wl[0]=the wl[1]=beginning pos[-2]=NN pos[-1]=IN pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=s p1[-1]=f p1[0]=t p1[1]=b p2[-2]=so p2[-1]=fr p2[0]=th p2[1]=be p3[-2]=son p3[-1]=fro p3[0]=the p3[1]=beg p4[-2]=song p4[-1]=from p4[0]= p4[1]=begi s1[-2]=g s1[-1]=m s1[0]=e s1[1]=g s2[-2]=ng s2[-1]=om s2[0]=he s2[1]=ng s3[-2]=ong s3[-1]=rom s3[0]=the s3[1]=ing s4[-2]=song s4[-1]=from s4[0]= s4[1]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|from w[-1]|w[0]=from|the w[0]|w[1]=the|beginning pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=this w[-4..-1]=song w[-4..-1]=from w[1..4]=beginning +O w[-2]=from w[-1]=the w[0]=beginning wl[-2]=from wl[-1]=the wl[0]=beginning pos[-2]=IN pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=f p1[-1]=t p1[0]=b p2[-2]=fr p2[-1]=th p2[0]=be p3[-2]=fro p3[-1]=the p3[0]=beg p4[-2]=from p4[-1]= p4[0]=begi s1[-2]=m s1[-1]=e s1[0]=g s2[-2]=om s2[-1]=he s2[0]=ng s3[-2]=rom s3[-1]=the s3[0]=ing s4[-2]=from s4[-1]= s4[0]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=from|the w[-1]|w[0]=the|beginning pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=this w[-4..-1]=song w[-4..-1]=from w[-4..-1]=the __EOS__ + +O w[0]=repeat w[1]=it w[2]=once wl[0]=repeat wl[1]=it wl[2]=once pos[0]=VB pos[1]=PRP pos[2]=RB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=i p1[2]=o p2[0]=re p2[1]=it p2[2]=on p3[0]=rep p3[1]= p3[2]=onc p4[0]=repe p4[1]= p4[2]=once s1[0]=t s1[1]=t s1[2]=e s2[0]=at s2[1]=it s2[2]=ce s3[0]=eat s3[1]= s3[2]=nce s4[0]=peat s4[1]= s4[2]=once 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=repeat|it w[1]|w[2]=it|once pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|RB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=once w[1..4]=again __BOS__ +O w[-1]=repeat w[0]=it w[1]=once w[2]=again wl[-1]=repeat wl[0]=it wl[1]=once wl[2]=again pos[-1]=VB pos[0]=PRP pos[1]=RB pos[2]=RB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=r p1[0]=i p1[1]=o p1[2]=a p2[-1]=re p2[0]=it p2[1]=on p2[2]=ag p3[-1]=rep p3[0]= p3[1]=onc p3[2]=aga p4[-1]=repe p4[0]= p4[1]=once p4[2]=agai s1[-1]=t s1[0]=t s1[1]=e s1[2]=n s2[-1]=at s2[0]=it s2[1]=ce s2[2]=in s3[-1]=eat s3[0]= s3[1]=nce s3[2]=ain s4[-1]=peat s4[0]= s4[1]=once s4[2]=gain 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=repeat|it w[0]|w[1]=it|once w[1]|w[2]=once|again pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|RB pos[1]|pos[2]=RB|RB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[1..4]=once w[1..4]=again +O w[-2]=repeat w[-1]=it w[0]=once w[1]=again wl[-2]=repeat wl[-1]=it wl[0]=once wl[1]=again pos[-2]=VB pos[-1]=PRP pos[0]=RB pos[1]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=r p1[-1]=i p1[0]=o p1[1]=a p2[-2]=re p2[-1]=it p2[0]=on p2[1]=ag p3[-2]=rep p3[-1]= p3[0]=onc p3[1]=aga p4[-2]=repe p4[-1]= p4[0]=once p4[1]=agai s1[-2]=t s1[-1]=t s1[0]=e s1[1]=n s2[-2]=at s2[-1]=it s2[0]=ce s2[1]=in s3[-2]=eat s3[-1]= s3[0]=nce s3[1]=ain s4[-2]=peat s4[-1]= s4[0]=once s4[1]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=repeat|it w[-1]|w[0]=it|once w[0]|w[1]=once|again pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|RB pos[0]|pos[1]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=it w[1..4]=again +O w[-2]=it w[-1]=once w[0]=again wl[-2]=it wl[-1]=once wl[0]=again pos[-2]=PRP pos[-1]=RB pos[0]=RB chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=i p1[-1]=o p1[0]=a p2[-2]=it p2[-1]=on p2[0]=ag p3[-2]= p3[-1]=onc p3[0]=aga p4[-2]= p4[-1]=once p4[0]=agai s1[-2]=t s1[-1]=e s1[0]=n s2[-2]=it s2[-1]=ce s2[0]=in s3[-2]= s3[-1]=nce s3[0]=ain s4[-2]= s4[-1]=once s4[0]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=it|once w[-1]|w[0]=once|again pos[-2]|pos[-1]=PRP|RB pos[-1]|pos[0]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=it w[-4..-1]=once __EOS__ + +O w[0]=play w[1]=again w[2]=from wl[0]=play wl[1]=again wl[2]=from pos[0]=VB pos[1]=RB pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=f p2[0]=pl p2[1]=ag p2[2]=fr p3[0]=pla p3[1]=aga p3[2]=fro p4[0]=play p4[1]=agai p4[2]=from s1[0]=y s1[1]=n s1[2]=m s2[0]=ay s2[1]=in s2[2]=om s3[0]=lay s3[1]=ain s3[2]=rom s4[0]=play s4[1]=gain s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|again w[1]|w[2]=again|from pos[0]|pos[1]=VB|RB pos[1]|pos[2]=RB|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=again w[1..4]=from w[1..4]=the w[1..4]=very __BOS__ +O w[-1]=play w[0]=again w[1]=from w[2]=the wl[-1]=play wl[0]=again wl[1]=from wl[2]=the pos[-1]=VB pos[0]=RB pos[1]=IN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=f p1[2]=t p2[-1]=pl p2[0]=ag p2[1]=fr p2[2]=th p3[-1]=pla p3[0]=aga p3[1]=fro p3[2]=the p4[-1]=play p4[0]=agai p4[1]=from p4[2]= s1[-1]=y s1[0]=n s1[1]=m s1[2]=e s2[-1]=ay s2[0]=in s2[1]=om s2[2]=he s3[-1]=lay s3[0]=ain s3[1]=rom s3[2]=the s4[-1]=play s4[0]=gain s4[1]=from s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|again w[0]|w[1]=again|from w[1]|w[2]=from|the pos[-1]|pos[0]=VB|RB pos[0]|pos[1]=RB|IN pos[1]|pos[2]=IN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=from w[1..4]=the w[1..4]=very w[1..4]=beginning +O w[-2]=play w[-1]=again w[0]=from w[1]=the w[2]=very wl[-2]=play wl[-1]=again wl[0]=from wl[1]=the wl[2]=very pos[-2]=VB pos[-1]=RB pos[0]=IN pos[1]=DT pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=f p1[1]=t p1[2]=v p2[-2]=pl p2[-1]=ag p2[0]=fr p2[1]=th p2[2]=ve p3[-2]=pla p3[-1]=aga p3[0]=fro p3[1]=the p3[2]=ver p4[-2]=play p4[-1]=agai p4[0]=from p4[1]= p4[2]=very s1[-2]=y s1[-1]=n s1[0]=m s1[1]=e s1[2]=y s2[-2]=ay s2[-1]=in s2[0]=om s2[1]=he s2[2]=ry s3[-2]=lay s3[-1]=ain s3[0]=rom s3[1]=the s3[2]=ery s4[-2]=play s4[-1]=gain s4[0]=from s4[1]= s4[2]=very 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|again w[-1]|w[0]=again|from w[0]|w[1]=from|the w[1]|w[2]=the|very pos[-2]|pos[-1]=VB|RB pos[-1]|pos[0]=RB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=again w[1..4]=the w[1..4]=very w[1..4]=beginning +O w[-2]=again w[-1]=from w[0]=the w[1]=very w[2]=beginning wl[-2]=again wl[-1]=from wl[0]=the wl[1]=very wl[2]=beginning pos[-2]=RB pos[-1]=IN pos[0]=DT pos[1]=JJ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=f p1[0]=t p1[1]=v p1[2]=b p2[-2]=ag p2[-1]=fr p2[0]=th p2[1]=ve p2[2]=be p3[-2]=aga p3[-1]=fro p3[0]=the p3[1]=ver p3[2]=beg p4[-2]=agai p4[-1]=from p4[0]= p4[1]=very p4[2]=begi s1[-2]=n s1[-1]=m s1[0]=e s1[1]=y s1[2]=g s2[-2]=in s2[-1]=om s2[0]=he s2[1]=ry s2[2]=ng s3[-2]=ain s3[-1]=rom s3[0]=the s3[1]=ery s3[2]=ing s4[-2]=gain s4[-1]=from s4[0]= s4[1]=very s4[2]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=again|from w[-1]|w[0]=from|the w[0]|w[1]=the|very w[1]|w[2]=very|beginning pos[-2]|pos[-1]=RB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=again w[-4..-1]=from w[1..4]=very w[1..4]=beginning +O w[-2]=from w[-1]=the w[0]=very w[1]=beginning wl[-2]=from wl[-1]=the wl[0]=very wl[1]=beginning pos[-2]=IN pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=f p1[-1]=t p1[0]=v p1[1]=b p2[-2]=fr p2[-1]=th p2[0]=ve p2[1]=be p3[-2]=fro p3[-1]=the p3[0]=ver p3[1]=beg p4[-2]=from p4[-1]= p4[0]=very p4[1]=begi s1[-2]=m s1[-1]=e s1[0]=y s1[1]=g s2[-2]=om s2[-1]=he s2[0]=ry s2[1]=ng s3[-2]=rom s3[-1]=the s3[0]=ery s3[1]=ing s4[-2]=from s4[-1]= s4[0]=very s4[1]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=from|the w[-1]|w[0]=the|very w[0]|w[1]=very|beginning pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=again w[-4..-1]=from w[-4..-1]=the w[1..4]=beginning +O w[-2]=the w[-1]=very w[0]=beginning wl[-2]=the wl[-1]=very wl[0]=beginning pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=v p1[0]=b p2[-2]=th p2[-1]=ve p2[0]=be p3[-2]=the p3[-1]=ver p3[0]=beg p4[-2]= p4[-1]=very p4[0]=begi s1[-2]=e s1[-1]=y s1[0]=g s2[-2]=he s2[-1]=ry s2[0]=ng s3[-2]=the s3[-1]=ery s3[0]=ing s4[-2]= s4[-1]=very s4[0]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|very w[-1]|w[0]=very|beginning pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=again w[-4..-1]=from w[-4..-1]=the w[-4..-1]=very __EOS__ + +O w[0]=repeat w[1]=this w[2]=track wl[0]=repeat wl[1]=this wl[2]=track pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=t p1[2]=t p2[0]=re p2[1]=th p2[2]=tr p3[0]=rep p3[1]=thi p3[2]=tra p4[0]=repe p4[1]=this p4[2]=trac s1[0]=t s1[1]=s s1[2]=k s2[0]=at s2[1]=is s2[2]=ck s3[0]=eat s3[1]=his s3[2]=ack s4[0]=peat s4[1]=this s4[2]=rack 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=repeat|this w[1]|w[2]=this|track pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=track __BOS__ +O w[-1]=repeat w[0]=this w[1]=track wl[-1]=repeat wl[0]=this wl[1]=track pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=r p1[0]=t p1[1]=t p2[-1]=re p2[0]=th p2[1]=tr p3[-1]=rep p3[0]=thi p3[1]=tra p4[-1]=repe p4[0]=this p4[1]=trac s1[-1]=t s1[0]=s s1[1]=k s2[-1]=at s2[0]=is s2[1]=ck s3[-1]=eat s3[0]=his s3[1]=ack s4[-1]=peat s4[0]=this s4[1]=rack 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=repeat|this w[0]|w[1]=this|track pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=repeat w[1..4]=track +O w[-2]=repeat w[-1]=this w[0]=track wl[-2]=repeat wl[-1]=this wl[0]=track pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=r p1[-1]=t p1[0]=t p2[-2]=re p2[-1]=th p2[0]=tr p3[-2]=rep p3[-1]=thi p3[0]=tra p4[-2]=repe p4[-1]=this p4[0]=trac s1[-2]=t s1[-1]=s s1[0]=k s2[-2]=at s2[-1]=is s2[0]=ck s3[-2]=eat s3[-1]=his s3[0]=ack s4[-2]=peat s4[-1]=this s4[0]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=repeat|this w[-1]|w[0]=this|track pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=this __EOS__ + +O w[0]=one w[1]=more w[2]=time wl[0]=one wl[1]=more wl[2]=time pos[0]=CD pos[1]=JJR pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=o p1[1]=m p1[2]=t p2[0]=on p2[1]=mo p2[2]=ti p3[0]=one p3[1]=mor p3[2]=tim p4[0]= p4[1]=more p4[2]=time s1[0]=e s1[1]=e s1[2]=e s2[0]=ne s2[1]=re s2[2]=me s3[0]=one s3[1]=ore s3[2]=ime s4[0]= s4[1]=more s4[2]=time 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=one|more w[1]|w[2]=more|time pos[0]|pos[1]=CD|JJR pos[1]|pos[2]=JJR|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=more w[1..4]=time __BOS__ +O w[-1]=one w[0]=more w[1]=time wl[-1]=one wl[0]=more wl[1]=time pos[-1]=CD pos[0]=JJR pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=o p1[0]=m p1[1]=t p2[-1]=on p2[0]=mo p2[1]=ti p3[-1]=one p3[0]=mor p3[1]=tim p4[-1]= p4[0]=more p4[1]=time s1[-1]=e s1[0]=e s1[1]=e s2[-1]=ne s2[0]=re s2[1]=me s3[-1]=one s3[0]=ore s3[1]=ime s4[-1]= s4[0]=more s4[1]=time 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=one|more w[0]|w[1]=more|time pos[-1]|pos[0]=CD|JJR pos[0]|pos[1]=JJR|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=one w[1..4]=time +O w[-2]=one w[-1]=more w[0]=time wl[-2]=one wl[-1]=more wl[0]=time pos[-2]=CD pos[-1]=JJR pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=m p1[0]=t p2[-2]=on p2[-1]=mo p2[0]=ti p3[-2]=one p3[-1]=mor p3[0]=tim p4[-2]= p4[-1]=more p4[0]=time s1[-2]=e s1[-1]=e s1[0]=e s2[-2]=ne s2[-1]=re s2[0]=me s3[-2]=one s3[-1]=ore s3[0]=ime s4[-2]= s4[-1]=more s4[0]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=one|more w[-1]|w[0]=more|time pos[-2]|pos[-1]=CD|JJR pos[-1]|pos[0]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=one w[-4..-1]=more __EOS__ + +O w[0]=play w[1]=it w[2]=again wl[0]=play wl[1]=it wl[2]=again pos[0]=VB pos[1]=PRP pos[2]=RB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=i p1[2]=a p2[0]=pl p2[1]=it p2[2]=ag p3[0]=pla p3[1]= p3[2]=aga p4[0]=play p4[1]= p4[2]=agai s1[0]=y s1[1]=t s1[2]=n s2[0]=ay s2[1]=it s2[2]=in s3[0]=lay s3[1]= s3[2]=ain s4[0]=play s4[1]= s4[2]=gain 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|it w[1]|w[2]=it|again pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|RB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=again __BOS__ +O w[-1]=play w[0]=it w[1]=again wl[-1]=play wl[0]=it wl[1]=again pos[-1]=VB pos[0]=PRP pos[1]=RB chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=i p1[1]=a p2[-1]=pl p2[0]=it p2[1]=ag p3[-1]=pla p3[0]= p3[1]=aga p4[-1]=play p4[0]= p4[1]=agai s1[-1]=y s1[0]=t s1[1]=n s2[-1]=ay s2[0]=it s2[1]=in s3[-1]=lay s3[0]= s3[1]=ain s4[-1]=play s4[0]= s4[1]=gain 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|it w[0]|w[1]=it|again pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|RB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=again +O w[-2]=play w[-1]=it w[0]=again wl[-2]=play wl[-1]=it wl[0]=again pos[-2]=VB pos[-1]=PRP pos[0]=RB chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=i p1[0]=a p2[-2]=pl p2[-1]=it p2[0]=ag p3[-2]=pla p3[-1]= p3[0]=aga p4[-2]=play p4[-1]= p4[0]=agai s1[-2]=y s1[-1]=t s1[0]=n s2[-2]=ay s2[-1]=it s2[0]=in s3[-2]=lay s3[-1]= s3[0]=ain s4[-2]=play s4[-1]= s4[0]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|it w[-1]|w[0]=it|again pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=it __EOS__ + +O w[0]=repeat w[1]=please wl[0]=repeat wl[1]=please pos[0]=VB pos[1]=UH chk[0]=O chk[1]=O shape[0]=LLLLLL shape[1]=LLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=r p1[1]=p p2[0]=re p2[1]=pl p3[0]=rep p3[1]=ple p4[0]=repe p4[1]=plea s1[0]=t s1[1]=e s2[0]=at s2[1]=se s3[0]=eat s3[1]=ase s4[0]=peat s4[1]=ease 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=repeat|please pos[0]|pos[1]=VB|UH chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=please __BOS__ +O w[-1]=repeat w[0]=please wl[-1]=repeat wl[0]=please pos[-1]=VB pos[0]=UH chk[-1]=O chk[0]=O shape[-1]=LLLLLL shape[0]=LLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=r p1[0]=p p2[-1]=re p2[0]=pl p3[-1]=rep p3[0]=ple p4[-1]=repe p4[0]=plea s1[-1]=t s1[0]=e s2[-1]=at s2[0]=se s3[-1]=eat s3[0]=ase s4[-1]=peat s4[0]=ease 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=repeat|please pos[-1]|pos[0]=VB|UH chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat __EOS__ + +O w[0]=repeat w[1]=this w[2]=track wl[0]=repeat wl[1]=this wl[2]=track pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=t p1[2]=t p2[0]=re p2[1]=th p2[2]=tr p3[0]=rep p3[1]=thi p3[2]=tra p4[0]=repe p4[1]=this p4[2]=trac s1[0]=t s1[1]=s s1[2]=k s2[0]=at s2[1]=is s2[2]=ck s3[0]=eat s3[1]=his s3[2]=ack s4[0]=peat s4[1]=this s4[2]=rack 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=repeat|this w[1]|w[2]=this|track pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=track w[1..4]=one w[1..4]=more __BOS__ +O w[-1]=repeat w[0]=this w[1]=track w[2]=one wl[-1]=repeat wl[0]=this wl[1]=track wl[2]=one pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=CD chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=r p1[0]=t p1[1]=t p1[2]=o p2[-1]=re p2[0]=th p2[1]=tr p2[2]=on p3[-1]=rep p3[0]=thi p3[1]=tra p3[2]=one p4[-1]=repe p4[0]=this p4[1]=trac p4[2]= s1[-1]=t s1[0]=s s1[1]=k s1[2]=e s2[-1]=at s2[0]=is s2[1]=ck s2[2]=ne s3[-1]=eat s3[0]=his s3[1]=ack s3[2]=one s4[-1]=peat s4[0]=this s4[1]=rack s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=repeat|this w[0]|w[1]=this|track w[1]|w[2]=track|one pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|CD chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[1..4]=track w[1..4]=one w[1..4]=more w[1..4]=time +O w[-2]=repeat w[-1]=this w[0]=track w[1]=one w[2]=more wl[-2]=repeat wl[-1]=this wl[0]=track wl[1]=one wl[2]=more pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=CD pos[2]=JJR chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=r p1[-1]=t p1[0]=t p1[1]=o p1[2]=m p2[-2]=re p2[-1]=th p2[0]=tr p2[1]=on p2[2]=mo p3[-2]=rep p3[-1]=thi p3[0]=tra p3[1]=one p3[2]=mor p4[-2]=repe p4[-1]=this p4[0]=trac p4[1]= p4[2]=more s1[-2]=t s1[-1]=s s1[0]=k s1[1]=e s1[2]=e s2[-2]=at s2[-1]=is s2[0]=ck s2[1]=ne s2[2]=re s3[-2]=eat s3[-1]=his s3[0]=ack s3[1]=one s3[2]=ore s4[-2]=peat s4[-1]=this s4[0]=rack s4[1]= s4[2]=more 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=repeat|this w[-1]|w[0]=this|track w[0]|w[1]=track|one w[1]|w[2]=one|more pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|CD pos[1]|pos[2]=CD|JJR chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=this w[1..4]=one w[1..4]=more w[1..4]=time +O w[-2]=this w[-1]=track w[0]=one w[1]=more w[2]=time wl[-2]=this wl[-1]=track wl[0]=one wl[1]=more wl[2]=time pos[-2]=DT pos[-1]=NN pos[0]=CD pos[1]=JJR pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=t p1[0]=o p1[1]=m p1[2]=t p2[-2]=th p2[-1]=tr p2[0]=on p2[1]=mo p2[2]=ti p3[-2]=thi p3[-1]=tra p3[0]=one p3[1]=mor p3[2]=tim p4[-2]=this p4[-1]=trac p4[0]= p4[1]=more p4[2]=time s1[-2]=s s1[-1]=k s1[0]=e s1[1]=e s1[2]=e s2[-2]=is s2[-1]=ck s2[0]=ne s2[1]=re s2[2]=me s3[-2]=his s3[-1]=ack s3[0]=one s3[1]=ore s3[2]=ime s4[-2]=this s4[-1]=rack s4[0]= s4[1]=more s4[2]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=this|track w[-1]|w[0]=track|one w[0]|w[1]=one|more w[1]|w[2]=more|time pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|CD pos[0]|pos[1]=CD|JJR pos[1]|pos[2]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=this w[-4..-1]=track w[1..4]=more w[1..4]=time +O w[-2]=track w[-1]=one w[0]=more w[1]=time wl[-2]=track wl[-1]=one wl[0]=more wl[1]=time pos[-2]=NN pos[-1]=CD pos[0]=JJR pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=o p1[0]=m p1[1]=t p2[-2]=tr p2[-1]=on p2[0]=mo p2[1]=ti p3[-2]=tra p3[-1]=one p3[0]=mor p3[1]=tim p4[-2]=trac p4[-1]= p4[0]=more p4[1]=time s1[-2]=k s1[-1]=e s1[0]=e s1[1]=e s2[-2]=ck s2[-1]=ne s2[0]=re s2[1]=me s3[-2]=ack s3[-1]=one s3[0]=ore s3[1]=ime s4[-2]=rack s4[-1]= s4[0]=more s4[1]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=track|one w[-1]|w[0]=one|more w[0]|w[1]=more|time pos[-2]|pos[-1]=NN|CD pos[-1]|pos[0]=CD|JJR pos[0]|pos[1]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=this w[-4..-1]=track w[-4..-1]=one w[1..4]=time +O w[-2]=one w[-1]=more w[0]=time wl[-2]=one wl[-1]=more wl[0]=time pos[-2]=CD pos[-1]=JJR pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=m p1[0]=t p2[-2]=on p2[-1]=mo p2[0]=ti p3[-2]=one p3[-1]=mor p3[0]=tim p4[-2]= p4[-1]=more p4[0]=time s1[-2]=e s1[-1]=e s1[0]=e s2[-2]=ne s2[-1]=re s2[0]=me s3[-2]=one s3[-1]=ore s3[0]=ime s4[-2]= s4[-1]=more s4[0]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=one|more w[-1]|w[0]=more|time pos[-2]|pos[-1]=CD|JJR pos[-1]|pos[0]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=this w[-4..-1]=track w[-4..-1]=one w[-4..-1]=more __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=yes cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=this +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=this w[1..4]=song +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=this wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=this pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=t p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=th p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=thi p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]=this s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=s s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=is s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=his s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]=this 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|this pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=this w[1..4]=song w[1..4]=once +O w[-2]=to w[-1]=listen w[0]=to w[1]=this w[2]=song wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=this wl[2]=song pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=t p1[2]=s p2[-2]=to p2[-1]=li p2[0]=to p2[1]=th p2[2]=so p3[-2]= p3[-1]=lis p3[0]= p3[1]=thi p3[2]=son p4[-2]= p4[-1]=list p4[0]= p4[1]=this p4[2]=song s1[-2]=o s1[-1]=n s1[0]=o s1[1]=s s1[2]=g s2[-2]=to s2[-1]=en s2[0]=to s2[1]=is s2[2]=ng s3[-2]= s3[-1]=ten s3[0]= s3[1]=his s3[2]=ong s4[-2]= s4[-1]=sten s4[0]= s4[1]=this s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|this w[1]|w[2]=this|song pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=this w[1..4]=song w[1..4]=once w[1..4]=again +O w[-2]=listen w[-1]=to w[0]=this w[1]=song w[2]=once wl[-2]=listen wl[-1]=to wl[0]=this wl[1]=song wl[2]=once pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=NN pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=t p1[1]=s p1[2]=o p2[-2]=li p2[-1]=to p2[0]=th p2[1]=so p2[2]=on p3[-2]=lis p3[-1]= p3[0]=thi p3[1]=son p3[2]=onc p4[-2]=list p4[-1]= p4[0]=this p4[1]=song p4[2]=once s1[-2]=n s1[-1]=o s1[0]=s s1[1]=g s1[2]=e s2[-2]=en s2[-1]=to s2[0]=is s2[1]=ng s2[2]=ce s3[-2]=ten s3[-1]= s3[0]=his s3[1]=ong s3[2]=nce s4[-2]=sten s4[-1]= s4[0]=this s4[1]=song s4[2]=once 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|this w[0]|w[1]=this|song w[1]|w[2]=song|once pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=song w[1..4]=once w[1..4]=again +O w[-2]=to w[-1]=this w[0]=song w[1]=once w[2]=again wl[-2]=to wl[-1]=this wl[0]=song wl[1]=once wl[2]=again pos[-2]=IN pos[-1]=DT pos[0]=NN pos[1]=RB pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=t p1[0]=s p1[1]=o p1[2]=a p2[-2]=to p2[-1]=th p2[0]=so p2[1]=on p2[2]=ag p3[-2]= p3[-1]=thi p3[0]=son p3[1]=onc p3[2]=aga p4[-2]= p4[-1]=this p4[0]=song p4[1]=once p4[2]=agai s1[-2]=o s1[-1]=s s1[0]=g s1[1]=e s1[2]=n s2[-2]=to s2[-1]=is s2[0]=ng s2[1]=ce s2[2]=in s3[-2]= s3[-1]=his s3[0]=ong s3[1]=nce s3[2]=ain s4[-2]= s4[-1]=this s4[0]=song s4[1]=once s4[2]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|this w[-1]|w[0]=this|song w[0]|w[1]=song|once w[1]|w[2]=once|again pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|RB pos[1]|pos[2]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=this w[1..4]=once w[1..4]=again +O w[-2]=this w[-1]=song w[0]=once w[1]=again wl[-2]=this wl[-1]=song wl[0]=once wl[1]=again pos[-2]=DT pos[-1]=NN pos[0]=RB pos[1]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=s p1[0]=o p1[1]=a p2[-2]=th p2[-1]=so p2[0]=on p2[1]=ag p3[-2]=thi p3[-1]=son p3[0]=onc p3[1]=aga p4[-2]=this p4[-1]=song p4[0]=once p4[1]=agai s1[-2]=s s1[-1]=g s1[0]=e s1[1]=n s2[-2]=is s2[-1]=ng s2[0]=ce s2[1]=in s3[-2]=his s3[-1]=ong s3[0]=nce s3[1]=ain s4[-2]=this s4[-1]=song s4[0]=once s4[1]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=this|song w[-1]|w[0]=song|once w[0]|w[1]=once|again pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|RB pos[0]|pos[1]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=this w[-4..-1]=song w[1..4]=again +O w[-2]=song w[-1]=once w[0]=again wl[-2]=song wl[-1]=once wl[0]=again pos[-2]=NN pos[-1]=RB pos[0]=RB chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=o p1[0]=a p2[-2]=so p2[-1]=on p2[0]=ag p3[-2]=son p3[-1]=onc p3[0]=aga p4[-2]=song p4[-1]=once p4[0]=agai s1[-2]=g s1[-1]=e s1[0]=n s2[-2]=ng s2[-1]=ce s2[0]=in s3[-2]=ong s3[-1]=nce s3[0]=ain s4[-2]=song s4[-1]=once s4[0]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|once w[-1]|w[0]=once|again pos[-2]|pos[-1]=NN|RB pos[-1]|pos[0]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=to w[-4..-1]=this w[-4..-1]=song w[-4..-1]=once __EOS__ + +O w[0]=repeat w[1]=the w[2]=song wl[0]=repeat wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=t p1[2]=s p2[0]=re p2[1]=th p2[2]=so p3[0]=rep p3[1]=the p3[2]=son p4[0]=repe p4[1]= p4[2]=song s1[0]=t s1[1]=e s1[2]=g s2[0]=at s2[1]=he s2[2]=ng s3[0]=eat s3[1]=the s3[2]=ong s4[0]=peat s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=repeat|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song __BOS__ +O w[-1]=repeat w[0]=the w[1]=song wl[-1]=repeat wl[0]=the wl[1]=song pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLL shape[0]=LLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=r p1[0]=t p1[1]=s p2[-1]=re p2[0]=th p2[1]=so p3[-1]=rep p3[0]=the p3[1]=son p4[-1]=repe p4[0]= p4[1]=song s1[-1]=t s1[0]=e s1[1]=g s2[-1]=at s2[0]=he s2[1]=ng s3[-1]=eat s3[0]=the s3[1]=ong s4[-1]=peat s4[0]= s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=repeat|the w[0]|w[1]=the|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=repeat w[1..4]=song +O w[-2]=repeat w[-1]=the w[0]=song wl[-2]=repeat wl[-1]=the wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLL shape[-1]=LLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=r p1[-1]=t p1[0]=s p2[-2]=re p2[-1]=th p2[0]=so p3[-2]=rep p3[-1]=the p3[0]=son p4[-2]=repe p4[-1]= p4[0]=song s1[-2]=t s1[-1]=e s1[0]=g s2[-2]=at s2[-1]=he s2[0]=ng s3[-2]=eat s3[-1]=the s3[0]=ong s4[-2]=peat s4[-1]= s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=repeat|the w[-1]|w[0]=the|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=the __EOS__ + +O w[0]=turn w[1]=on w[2]=repeat wl[0]=turn wl[1]=on wl[2]=repeat pos[0]=VB pos[1]=RP pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=o p1[2]=r p2[0]=tu p2[1]=on p2[2]=re p3[0]=tur p3[1]= p3[2]=rep p4[0]=turn p4[1]= p4[2]=repe s1[0]=n s1[1]=n s1[2]=t s2[0]=rn s2[1]=on s2[2]=at s3[0]=urn s3[1]= s3[2]=eat s4[0]=turn s4[1]= s4[2]=peat 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=turn|on w[1]|w[2]=on|repeat pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=repeat w[1..4]=for w[1..4]=this __BOS__ +O w[-1]=turn w[0]=on w[1]=repeat w[2]=for wl[-1]=turn wl[0]=on wl[1]=repeat wl[2]=for pos[-1]=VB pos[0]=RP pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=t p1[0]=o p1[1]=r p1[2]=f p2[-1]=tu p2[0]=on p2[1]=re p2[2]=fo p3[-1]=tur p3[0]= p3[1]=rep p3[2]=for p4[-1]=turn p4[0]= p4[1]=repe p4[2]= s1[-1]=n s1[0]=n s1[1]=t s1[2]=r s2[-1]=rn s2[0]=on s2[1]=at s2[2]=or s3[-1]=urn s3[0]= s3[1]=eat s3[2]=for s4[-1]=turn s4[0]= s4[1]=peat s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=turn|on w[0]|w[1]=on|repeat w[1]|w[2]=repeat|for pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[1..4]=repeat w[1..4]=for w[1..4]=this w[1..4]=song +O w[-2]=turn w[-1]=on w[0]=repeat w[1]=for w[2]=this wl[-2]=turn wl[-1]=on wl[0]=repeat wl[1]=for wl[2]=this pos[-2]=VB pos[-1]=RP pos[0]=NN pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=o p1[0]=r p1[1]=f p1[2]=t p2[-2]=tu p2[-1]=on p2[0]=re p2[1]=fo p2[2]=th p3[-2]=tur p3[-1]= p3[0]=rep p3[1]=for p3[2]=thi p4[-2]=turn p4[-1]= p4[0]=repe p4[1]= p4[2]=this s1[-2]=n s1[-1]=n s1[0]=t s1[1]=r s1[2]=s s2[-2]=rn s2[-1]=on s2[0]=at s2[1]=or s2[2]=is s3[-2]=urn s3[-1]= s3[0]=eat s3[1]=for s3[2]=his s4[-2]=turn s4[-1]= s4[0]=peat s4[1]= s4[2]=this 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=turn|on w[-1]|w[0]=on|repeat w[0]|w[1]=repeat|for w[1]|w[2]=for|this pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[1..4]=for w[1..4]=this w[1..4]=song +O w[-2]=on w[-1]=repeat w[0]=for w[1]=this w[2]=song wl[-2]=on wl[-1]=repeat wl[0]=for wl[1]=this wl[2]=song pos[-2]=RP pos[-1]=NN pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=o p1[-1]=r p1[0]=f p1[1]=t p1[2]=s p2[-2]=on p2[-1]=re p2[0]=fo p2[1]=th p2[2]=so p3[-2]= p3[-1]=rep p3[0]=for p3[1]=thi p3[2]=son p4[-2]= p4[-1]=repe p4[0]= p4[1]=this p4[2]=song s1[-2]=n s1[-1]=t s1[0]=r s1[1]=s s1[2]=g s2[-2]=on s2[-1]=at s2[0]=or s2[1]=is s2[2]=ng s3[-2]= s3[-1]=eat s3[0]=for s3[1]=his s3[2]=ong s4[-2]= s4[-1]=peat s4[0]= s4[1]=this s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=on|repeat w[-1]|w[0]=repeat|for w[0]|w[1]=for|this w[1]|w[2]=this|song pos[-2]|pos[-1]=RP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=repeat w[1..4]=this w[1..4]=song +O w[-2]=repeat w[-1]=for w[0]=this w[1]=song wl[-2]=repeat wl[-1]=for wl[0]=this wl[1]=song pos[-2]=NN pos[-1]=IN pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=r p1[-1]=f p1[0]=t p1[1]=s p2[-2]=re p2[-1]=fo p2[0]=th p2[1]=so p3[-2]=rep p3[-1]=for p3[0]=thi p3[1]=son p4[-2]=repe p4[-1]= p4[0]=this p4[1]=song s1[-2]=t s1[-1]=r s1[0]=s s1[1]=g s2[-2]=at s2[-1]=or s2[0]=is s2[1]=ng s3[-2]=eat s3[-1]=for s3[0]=his s3[1]=ong s4[-2]=peat s4[-1]= s4[0]=this s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=repeat|for w[-1]|w[0]=for|this w[0]|w[1]=this|song pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=repeat w[-4..-1]=for w[1..4]=song +O w[-2]=for w[-1]=this w[0]=song wl[-2]=for wl[-1]=this wl[0]=song pos[-2]=IN pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=f p1[-1]=t p1[0]=s p2[-2]=fo p2[-1]=th p2[0]=so p3[-2]=for p3[-1]=thi p3[0]=son p4[-2]= p4[-1]=this p4[0]=song s1[-2]=r s1[-1]=s s1[0]=g s2[-2]=or s2[-1]=is s2[0]=ng s3[-2]=for s3[-1]=his s3[0]=ong s4[-2]= s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=for|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=on w[-4..-1]=repeat w[-4..-1]=for w[-4..-1]=this __EOS__ + +O w[0]=can w[1]=you w[2]=repeat wl[0]=can wl[1]=you wl[2]=repeat pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=r p2[0]=ca p2[1]=yo p2[2]=re p3[0]=can p3[1]=you p3[2]=rep p4[0]= p4[1]= p4[2]=repe s1[0]=n s1[1]=u s1[2]=t s2[0]=an s2[1]=ou s2[2]=at s3[0]=can s3[1]=you s3[2]=eat s4[0]= s4[1]= s4[2]=peat 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|repeat pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=repeat w[1..4]=it __BOS__ +O w[-1]=can w[0]=you w[1]=repeat w[2]=it wl[-1]=can wl[0]=you wl[1]=repeat wl[2]=it pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=r p1[2]=i p2[-1]=ca p2[0]=yo p2[1]=re p2[2]=it p3[-1]=can p3[0]=you p3[1]=rep p3[2]= p4[-1]= p4[0]= p4[1]=repe p4[2]= s1[-1]=n s1[0]=u s1[1]=t s1[2]=t s2[-1]=an s2[0]=ou s2[1]=at s2[2]=it s3[-1]=can s3[0]=you s3[1]=eat s3[2]= s4[-1]= s4[0]= s4[1]=peat s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|repeat w[1]|w[2]=repeat|it pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=repeat w[1..4]=it +O w[-2]=can w[-1]=you w[0]=repeat w[1]=it wl[-2]=can wl[-1]=you wl[0]=repeat wl[1]=it pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLLLL shape[1]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=c p1[-1]=y p1[0]=r p1[1]=i p2[-2]=ca p2[-1]=yo p2[0]=re p2[1]=it p3[-2]=can p3[-1]=you p3[0]=rep p3[1]= p4[-2]= p4[-1]= p4[0]=repe p4[1]= s1[-2]=n s1[-1]=u s1[0]=t s1[1]=t s2[-2]=an s2[-1]=ou s2[0]=at s2[1]=it s3[-2]=can s3[-1]=you s3[0]=eat s3[1]= s4[-2]= s4[-1]= s4[0]=peat s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|repeat w[0]|w[1]=repeat|it pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=it +O w[-2]=you w[-1]=repeat w[0]=it wl[-2]=you wl[-1]=repeat wl[0]=it pos[-2]=PRP pos[-1]=VB pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLLLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=y p1[-1]=r p1[0]=i p2[-2]=yo p2[-1]=re p2[0]=it p3[-2]=you p3[-1]=rep p3[0]= p4[-2]= p4[-1]=repe p4[0]= s1[-2]=u s1[-1]=t s1[0]=t s2[-2]=ou s2[-1]=at s2[0]=it s3[-2]=you s3[-1]=eat s3[0]= s4[-2]= s4[-1]=peat s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=you|repeat w[-1]|w[0]=repeat|it pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=repeat __EOS__ + +O w[0]=can w[1]=you w[2]=repeat wl[0]=can wl[1]=you wl[2]=repeat pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=r p2[0]=ca p2[1]=yo p2[2]=re p3[0]=can p3[1]=you p3[2]=rep p4[0]= p4[1]= p4[2]=repe s1[0]=n s1[1]=u s1[2]=t s2[0]=an s2[1]=ou s2[2]=at s3[0]=can s3[1]=you s3[2]=eat s4[0]= s4[1]= s4[2]=peat 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|repeat pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=repeat w[1..4]=this w[1..4]=track __BOS__ +O w[-1]=can w[0]=you w[1]=repeat w[2]=this wl[-1]=can wl[0]=you wl[1]=repeat wl[2]=this pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=r p1[2]=t p2[-1]=ca p2[0]=yo p2[1]=re p2[2]=th p3[-1]=can p3[0]=you p3[1]=rep p3[2]=thi p4[-1]= p4[0]= p4[1]=repe p4[2]=this s1[-1]=n s1[0]=u s1[1]=t s1[2]=s s2[-1]=an s2[0]=ou s2[1]=at s2[2]=is s3[-1]=can s3[0]=you s3[1]=eat s3[2]=his s4[-1]= s4[0]= s4[1]=peat s4[2]=this 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|repeat w[1]|w[2]=repeat|this pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=repeat w[1..4]=this w[1..4]=track +O w[-2]=can w[-1]=you w[0]=repeat w[1]=this w[2]=track wl[-2]=can wl[-1]=you wl[0]=repeat wl[1]=this wl[2]=track pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=r p1[1]=t p1[2]=t p2[-2]=ca p2[-1]=yo p2[0]=re p2[1]=th p2[2]=tr p3[-2]=can p3[-1]=you p3[0]=rep p3[1]=thi p3[2]=tra p4[-2]= p4[-1]= p4[0]=repe p4[1]=this p4[2]=trac s1[-2]=n s1[-1]=u s1[0]=t s1[1]=s s1[2]=k s2[-2]=an s2[-1]=ou s2[0]=at s2[1]=is s2[2]=ck s3[-2]=can s3[-1]=you s3[0]=eat s3[1]=his s3[2]=ack s4[-2]= s4[-1]= s4[0]=peat s4[1]=this s4[2]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|repeat w[0]|w[1]=repeat|this w[1]|w[2]=this|track pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=this w[1..4]=track +O w[-2]=you w[-1]=repeat w[0]=this w[1]=track wl[-2]=you wl[-1]=repeat wl[0]=this wl[1]=track pos[-2]=PRP pos[-1]=VB pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=y p1[-1]=r p1[0]=t p1[1]=t p2[-2]=yo p2[-1]=re p2[0]=th p2[1]=tr p3[-2]=you p3[-1]=rep p3[0]=thi p3[1]=tra p4[-2]= p4[-1]=repe p4[0]=this p4[1]=trac s1[-2]=u s1[-1]=t s1[0]=s s1[1]=k s2[-2]=ou s2[-1]=at s2[0]=is s2[1]=ck s3[-2]=you s3[-1]=eat s3[0]=his s3[1]=ack s4[-2]= s4[-1]=peat s4[0]=this s4[1]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=you|repeat w[-1]|w[0]=repeat|this w[0]|w[1]=this|track pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=repeat w[1..4]=track +O w[-2]=repeat w[-1]=this w[0]=track wl[-2]=repeat wl[-1]=this wl[0]=track pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=r p1[-1]=t p1[0]=t p2[-2]=re p2[-1]=th p2[0]=tr p3[-2]=rep p3[-1]=thi p3[0]=tra p4[-2]=repe p4[-1]=this p4[0]=trac s1[-2]=t s1[-1]=s s1[0]=k s2[-2]=at s2[-1]=is s2[0]=ck s3[-2]=eat s3[-1]=his s3[0]=ack s4[-2]=peat s4[-1]=this s4[0]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=repeat|this w[-1]|w[0]=this|track pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=repeat w[-4..-1]=this __EOS__ + +O w[0]=turn w[1]=on w[2]=repeat wl[0]=turn wl[1]=on wl[2]=repeat pos[0]=VB pos[1]=RP pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=o p1[2]=r p2[0]=tu p2[1]=on p2[2]=re p3[0]=tur p3[1]= p3[2]=rep p4[0]=turn p4[1]= p4[2]=repe s1[0]=n s1[1]=n s1[2]=t s2[0]=rn s2[1]=on s2[2]=at s3[0]=urn s3[1]= s3[2]=eat s4[0]=turn s4[1]= s4[2]=peat 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=turn|on w[1]|w[2]=on|repeat pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=repeat w[1..4]=mode w[1..4]=for __BOS__ +O w[-1]=turn w[0]=on w[1]=repeat w[2]=mode wl[-1]=turn wl[0]=on wl[1]=repeat wl[2]=mode pos[-1]=VB pos[0]=RP pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=t p1[0]=o p1[1]=r p1[2]=m p2[-1]=tu p2[0]=on p2[1]=re p2[2]=mo p3[-1]=tur p3[0]= p3[1]=rep p3[2]=mod p4[-1]=turn p4[0]= p4[1]=repe p4[2]=mode s1[-1]=n s1[0]=n s1[1]=t s1[2]=e s2[-1]=rn s2[0]=on s2[1]=at s2[2]=de s3[-1]=urn s3[0]= s3[1]=eat s3[2]=ode s4[-1]=turn s4[0]= s4[1]=peat s4[2]=mode 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=turn|on w[0]|w[1]=on|repeat w[1]|w[2]=repeat|mode pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[1..4]=repeat w[1..4]=mode w[1..4]=for w[1..4]=this +O w[-2]=turn w[-1]=on w[0]=repeat w[1]=mode w[2]=for wl[-2]=turn wl[-1]=on wl[0]=repeat wl[1]=mode wl[2]=for pos[-2]=VB pos[-1]=RP pos[0]=NN pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=o p1[0]=r p1[1]=m p1[2]=f p2[-2]=tu p2[-1]=on p2[0]=re p2[1]=mo p2[2]=fo p3[-2]=tur p3[-1]= p3[0]=rep p3[1]=mod p3[2]=for p4[-2]=turn p4[-1]= p4[0]=repe p4[1]=mode p4[2]= s1[-2]=n s1[-1]=n s1[0]=t s1[1]=e s1[2]=r s2[-2]=rn s2[-1]=on s2[0]=at s2[1]=de s2[2]=or s3[-2]=urn s3[-1]= s3[0]=eat s3[1]=ode s3[2]=for s4[-2]=turn s4[-1]= s4[0]=peat s4[1]=mode s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=turn|on w[-1]|w[0]=on|repeat w[0]|w[1]=repeat|mode w[1]|w[2]=mode|for pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[1..4]=mode w[1..4]=for w[1..4]=this w[1..4]=song +O w[-2]=on w[-1]=repeat w[0]=mode w[1]=for w[2]=this wl[-2]=on wl[-1]=repeat wl[0]=mode wl[1]=for wl[2]=this pos[-2]=RP pos[-1]=NN pos[0]=NN pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=o p1[-1]=r p1[0]=m p1[1]=f p1[2]=t p2[-2]=on p2[-1]=re p2[0]=mo p2[1]=fo p2[2]=th p3[-2]= p3[-1]=rep p3[0]=mod p3[1]=for p3[2]=thi p4[-2]= p4[-1]=repe p4[0]=mode p4[1]= p4[2]=this s1[-2]=n s1[-1]=t s1[0]=e s1[1]=r s1[2]=s s2[-2]=on s2[-1]=at s2[0]=de s2[1]=or s2[2]=is s3[-2]= s3[-1]=eat s3[0]=ode s3[1]=for s3[2]=his s4[-2]= s4[-1]=peat s4[0]=mode s4[1]= s4[2]=this 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=on|repeat w[-1]|w[0]=repeat|mode w[0]|w[1]=mode|for w[1]|w[2]=for|this pos[-2]|pos[-1]=RP|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=repeat w[1..4]=for w[1..4]=this w[1..4]=song +O w[-2]=repeat w[-1]=mode w[0]=for w[1]=this w[2]=song wl[-2]=repeat wl[-1]=mode wl[0]=for wl[1]=this wl[2]=song pos[-2]=NN pos[-1]=NN pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=r p1[-1]=m p1[0]=f p1[1]=t p1[2]=s p2[-2]=re p2[-1]=mo p2[0]=fo p2[1]=th p2[2]=so p3[-2]=rep p3[-1]=mod p3[0]=for p3[1]=thi p3[2]=son p4[-2]=repe p4[-1]=mode p4[0]= p4[1]=this p4[2]=song s1[-2]=t s1[-1]=e s1[0]=r s1[1]=s s1[2]=g s2[-2]=at s2[-1]=de s2[0]=or s2[1]=is s2[2]=ng s3[-2]=eat s3[-1]=ode s3[0]=for s3[1]=his s3[2]=ong s4[-2]=peat s4[-1]=mode s4[0]= s4[1]=this s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=repeat|mode w[-1]|w[0]=mode|for w[0]|w[1]=for|this w[1]|w[2]=this|song pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=repeat w[-4..-1]=mode w[1..4]=this w[1..4]=song +O w[-2]=mode w[-1]=for w[0]=this w[1]=song wl[-2]=mode wl[-1]=for wl[0]=this wl[1]=song pos[-2]=NN pos[-1]=IN pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=m p1[-1]=f p1[0]=t p1[1]=s p2[-2]=mo p2[-1]=fo p2[0]=th p2[1]=so p3[-2]=mod p3[-1]=for p3[0]=thi p3[1]=son p4[-2]=mode p4[-1]= p4[0]=this p4[1]=song s1[-2]=e s1[-1]=r s1[0]=s s1[1]=g s2[-2]=de s2[-1]=or s2[0]=is s2[1]=ng s3[-2]=ode s3[-1]=for s3[0]=his s3[1]=ong s4[-2]=mode s4[-1]= s4[0]=this s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=mode|for w[-1]|w[0]=for|this w[0]|w[1]=this|song pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=on w[-4..-1]=repeat w[-4..-1]=mode w[-4..-1]=for w[1..4]=song +O w[-2]=for w[-1]=this w[0]=song wl[-2]=for wl[-1]=this wl[0]=song pos[-2]=IN pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=f p1[-1]=t p1[0]=s p2[-2]=fo p2[-1]=th p2[0]=so p3[-2]=for p3[-1]=thi p3[0]=son p4[-2]= p4[-1]=this p4[0]=song s1[-2]=r s1[-1]=s s1[0]=g s2[-2]=or s2[-1]=is s2[0]=ng s3[-2]=for s3[-1]=his s3[0]=ong s4[-2]= s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=for|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=mode w[-4..-1]=for w[-4..-1]=this __EOS__ + +O w[0]=put w[1]=this w[2]=track wl[0]=put wl[1]=this wl[2]=track pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=t p2[0]=pu p2[1]=th p2[2]=tr p3[0]=put p3[1]=thi p3[2]=tra p4[0]= p4[1]=this p4[2]=trac s1[0]=t s1[1]=s s1[2]=k s2[0]=ut s2[1]=is s2[2]=ck s3[0]=put s3[1]=his s3[2]=ack s4[0]= s4[1]=this s4[2]=rack 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|this w[1]|w[2]=this|track pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=track w[1..4]=on w[1..4]=repeat __BOS__ +O w[-1]=put w[0]=this w[1]=track w[2]=on wl[-1]=put wl[0]=this wl[1]=track wl[2]=on pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=t p1[2]=o p2[-1]=pu p2[0]=th p2[1]=tr p2[2]=on p3[-1]=put p3[0]=thi p3[1]=tra p3[2]= p4[-1]= p4[0]=this p4[1]=trac p4[2]= s1[-1]=t s1[0]=s s1[1]=k s1[2]=n s2[-1]=ut s2[0]=is s2[1]=ck s2[2]=on s3[-1]=put s3[0]=his s3[1]=ack s3[2]= s4[-1]= s4[0]=this s4[1]=rack s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|this w[0]|w[1]=this|track w[1]|w[2]=track|on pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=track w[1..4]=on w[1..4]=repeat +O w[-2]=put w[-1]=this w[0]=track w[1]=on w[2]=repeat wl[-2]=put wl[-1]=this wl[0]=track wl[1]=on wl[2]=repeat pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=t p1[1]=o p1[2]=r p2[-2]=pu p2[-1]=th p2[0]=tr p2[1]=on p2[2]=re p3[-2]=put p3[-1]=thi p3[0]=tra p3[1]= p3[2]=rep p4[-2]= p4[-1]=this p4[0]=trac p4[1]= p4[2]=repe s1[-2]=t s1[-1]=s s1[0]=k s1[1]=n s1[2]=t s2[-2]=ut s2[-1]=is s2[0]=ck s2[1]=on s2[2]=at s3[-2]=put s3[-1]=his s3[0]=ack s3[1]= s3[2]=eat s4[-2]= s4[-1]=this s4[0]=rack s4[1]= s4[2]=peat 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=put|this w[-1]|w[0]=this|track w[0]|w[1]=track|on w[1]|w[2]=on|repeat pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=this w[1..4]=on w[1..4]=repeat +O w[-2]=this w[-1]=track w[0]=on w[1]=repeat wl[-2]=this wl[-1]=track wl[0]=on wl[1]=repeat pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=t p1[0]=o p1[1]=r p2[-2]=th p2[-1]=tr p2[0]=on p2[1]=re p3[-2]=thi p3[-1]=tra p3[0]= p3[1]=rep p4[-2]=this p4[-1]=trac p4[0]= p4[1]=repe s1[-2]=s s1[-1]=k s1[0]=n s1[1]=t s2[-2]=is s2[-1]=ck s2[0]=on s2[1]=at s3[-2]=his s3[-1]=ack s3[0]= s3[1]=eat s4[-2]=this s4[-1]=rack s4[0]= s4[1]=peat 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=this|track w[-1]|w[0]=track|on w[0]|w[1]=on|repeat pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=this w[-4..-1]=track w[1..4]=repeat +O w[-2]=track w[-1]=on w[0]=repeat wl[-2]=track wl[-1]=on wl[0]=repeat pos[-2]=NN pos[-1]=IN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LL shape[0]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=o p1[0]=r p2[-2]=tr p2[-1]=on p2[0]=re p3[-2]=tra p3[-1]= p3[0]=rep p4[-2]=trac p4[-1]= p4[0]=repe s1[-2]=k s1[-1]=n s1[0]=t s2[-2]=ck s2[-1]=on s2[0]=at s3[-2]=ack s3[-1]= s3[0]=eat s4[-2]=rack s4[-1]= s4[0]=peat 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=track|on w[-1]|w[0]=on|repeat pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=this w[-4..-1]=track w[-4..-1]=on __EOS__ + +O w[0]=repeat w[1]=this w[2]=song wl[0]=repeat wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=t p1[2]=s p2[0]=re p2[1]=th p2[2]=so p3[0]=rep p3[1]=thi p3[2]=son p4[0]=repe p4[1]=this p4[2]=song s1[0]=t s1[1]=s s1[2]=g s2[0]=at s2[1]=is s2[2]=ng s3[0]=eat s3[1]=his s3[2]=ong s4[0]=peat s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=repeat|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song __BOS__ +O w[-1]=repeat w[0]=this w[1]=song wl[-1]=repeat wl[0]=this wl[1]=song pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=r p1[0]=t p1[1]=s p2[-1]=re p2[0]=th p2[1]=so p3[-1]=rep p3[0]=thi p3[1]=son p4[-1]=repe p4[0]=this p4[1]=song s1[-1]=t s1[0]=s s1[1]=g s2[-1]=at s2[0]=is s2[1]=ng s3[-1]=eat s3[0]=his s3[1]=ong s4[-1]=peat s4[0]=this s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=repeat|this w[0]|w[1]=this|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=repeat w[1..4]=song +O w[-2]=repeat w[-1]=this w[0]=song wl[-2]=repeat wl[-1]=this wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=r p1[-1]=t p1[0]=s p2[-2]=re p2[-1]=th p2[0]=so p3[-2]=rep p3[-1]=thi p3[0]=son p4[-2]=repe p4[-1]=this p4[0]=song s1[-2]=t s1[-1]=s s1[0]=g s2[-2]=at s2[-1]=is s2[0]=ng s3[-2]=eat s3[-1]=his s3[0]=ong s4[-2]=peat s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=repeat|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=this __EOS__ + +O w[0]=repeat w[1]=mode w[2]=for wl[0]=repeat wl[1]=mode wl[2]=for pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=m p1[2]=f p2[0]=re p2[1]=mo p2[2]=fo p3[0]=rep p3[1]=mod p3[2]=for p4[0]=repe p4[1]=mode p4[2]= s1[0]=t s1[1]=e s1[2]=r s2[0]=at s2[1]=de s2[2]=or s3[0]=eat s3[1]=ode s3[2]=for s4[0]=peat s4[1]=mode s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=repeat|mode w[1]|w[2]=mode|for pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=mode w[1..4]=for w[1..4]=this w[1..4]=track __BOS__ +O w[-1]=repeat w[0]=mode w[1]=for w[2]=this wl[-1]=repeat wl[0]=mode wl[1]=for wl[2]=this pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=r p1[0]=m p1[1]=f p1[2]=t p2[-1]=re p2[0]=mo p2[1]=fo p2[2]=th p3[-1]=rep p3[0]=mod p3[1]=for p3[2]=thi p4[-1]=repe p4[0]=mode p4[1]= p4[2]=this s1[-1]=t s1[0]=e s1[1]=r s1[2]=s s2[-1]=at s2[0]=de s2[1]=or s2[2]=is s3[-1]=eat s3[0]=ode s3[1]=for s3[2]=his s4[-1]=peat s4[0]=mode s4[1]= s4[2]=this 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=repeat|mode w[0]|w[1]=mode|for w[1]|w[2]=for|this pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[1..4]=for w[1..4]=this w[1..4]=track +O w[-2]=repeat w[-1]=mode w[0]=for w[1]=this w[2]=track wl[-2]=repeat wl[-1]=mode wl[0]=for wl[1]=this wl[2]=track pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=r p1[-1]=m p1[0]=f p1[1]=t p1[2]=t p2[-2]=re p2[-1]=mo p2[0]=fo p2[1]=th p2[2]=tr p3[-2]=rep p3[-1]=mod p3[0]=for p3[1]=thi p3[2]=tra p4[-2]=repe p4[-1]=mode p4[0]= p4[1]=this p4[2]=trac s1[-2]=t s1[-1]=e s1[0]=r s1[1]=s s1[2]=k s2[-2]=at s2[-1]=de s2[0]=or s2[1]=is s2[2]=ck s3[-2]=eat s3[-1]=ode s3[0]=for s3[1]=his s3[2]=ack s4[-2]=peat s4[-1]=mode s4[0]= s4[1]=this s4[2]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=repeat|mode w[-1]|w[0]=mode|for w[0]|w[1]=for|this w[1]|w[2]=this|track pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=mode w[1..4]=this w[1..4]=track +O w[-2]=mode w[-1]=for w[0]=this w[1]=track wl[-2]=mode wl[-1]=for wl[0]=this wl[1]=track pos[-2]=NN pos[-1]=IN pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=m p1[-1]=f p1[0]=t p1[1]=t p2[-2]=mo p2[-1]=fo p2[0]=th p2[1]=tr p3[-2]=mod p3[-1]=for p3[0]=thi p3[1]=tra p4[-2]=mode p4[-1]= p4[0]=this p4[1]=trac s1[-2]=e s1[-1]=r s1[0]=s s1[1]=k s2[-2]=de s2[-1]=or s2[0]=is s2[1]=ck s3[-2]=ode s3[-1]=for s3[0]=his s3[1]=ack s4[-2]=mode s4[-1]= s4[0]=this s4[1]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=mode|for w[-1]|w[0]=for|this w[0]|w[1]=this|track pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=mode w[-4..-1]=for w[1..4]=track +O w[-2]=for w[-1]=this w[0]=track wl[-2]=for wl[-1]=this wl[0]=track pos[-2]=IN pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=f p1[-1]=t p1[0]=t p2[-2]=fo p2[-1]=th p2[0]=tr p3[-2]=for p3[-1]=thi p3[0]=tra p4[-2]= p4[-1]=this p4[0]=trac s1[-2]=r s1[-1]=s s1[0]=k s2[-2]=or s2[-1]=is s2[0]=ck s3[-2]=for s3[-1]=his s3[0]=ack s4[-2]= s4[-1]=this s4[0]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=for|this w[-1]|w[0]=this|track pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=mode w[-4..-1]=for w[-4..-1]=this __EOS__ + +O w[0]=put w[1]=this w[2]=on wl[0]=put wl[1]=this wl[2]=on pos[0]=VB pos[1]=DT pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=o p2[0]=pu p2[1]=th p2[2]=on p3[0]=put p3[1]=thi p3[2]= p4[0]= p4[1]=this p4[2]= s1[0]=t s1[1]=s s1[2]=n s2[0]=ut s2[1]=is s2[2]=on s3[0]=put s3[1]=his s3[2]= s4[0]= s4[1]=this s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|this w[1]|w[2]=this|on pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=on w[1..4]=repeat __BOS__ +O w[-1]=put w[0]=this w[1]=on w[2]=repeat wl[-1]=put wl[0]=this wl[1]=on wl[2]=repeat pos[-1]=VB pos[0]=DT pos[1]=IN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=o p1[2]=r p2[-1]=pu p2[0]=th p2[1]=on p2[2]=re p3[-1]=put p3[0]=thi p3[1]= p3[2]=rep p4[-1]= p4[0]=this p4[1]= p4[2]=repe s1[-1]=t s1[0]=s s1[1]=n s1[2]=t s2[-1]=ut s2[0]=is s2[1]=on s2[2]=at s3[-1]=put s3[0]=his s3[1]= s3[2]=eat s4[-1]= s4[0]=this s4[1]= s4[2]=peat 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|this w[0]|w[1]=this|on w[1]|w[2]=on|repeat pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|IN pos[1]|pos[2]=IN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=on w[1..4]=repeat +O w[-2]=put w[-1]=this w[0]=on w[1]=repeat wl[-2]=put wl[-1]=this wl[0]=on wl[1]=repeat pos[-2]=VB pos[-1]=DT pos[0]=IN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=t p1[0]=o p1[1]=r p2[-2]=pu p2[-1]=th p2[0]=on p2[1]=re p3[-2]=put p3[-1]=thi p3[0]= p3[1]=rep p4[-2]= p4[-1]=this p4[0]= p4[1]=repe s1[-2]=t s1[-1]=s s1[0]=n s1[1]=t s2[-2]=ut s2[-1]=is s2[0]=on s2[1]=at s3[-2]=put s3[-1]=his s3[0]= s3[1]=eat s4[-2]= s4[-1]=this s4[0]= s4[1]=peat 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=put|this w[-1]|w[0]=this|on w[0]|w[1]=on|repeat pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|IN pos[0]|pos[1]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=this w[1..4]=repeat +O w[-2]=this w[-1]=on w[0]=repeat wl[-2]=this wl[-1]=on wl[0]=repeat pos[-2]=DT pos[-1]=IN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=o p1[0]=r p2[-2]=th p2[-1]=on p2[0]=re p3[-2]=thi p3[-1]= p3[0]=rep p4[-2]=this p4[-1]= p4[0]=repe s1[-2]=s s1[-1]=n s1[0]=t s2[-2]=is s2[-1]=on s2[0]=at s3[-2]=his s3[-1]= s3[0]=eat s4[-2]=this s4[-1]= s4[0]=peat 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=this|on w[-1]|w[0]=on|repeat pos[-2]|pos[-1]=DT|IN pos[-1]|pos[0]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=this w[-4..-1]=on __EOS__ + +O w[0]=could w[1]=you w[2]=repeat wl[0]=could wl[1]=you wl[2]=repeat pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=r p2[0]=co p2[1]=yo p2[2]=re p3[0]=cou p3[1]=you p3[2]=rep p4[0]=coul p4[1]= p4[2]=repe s1[0]=d s1[1]=u s1[2]=t s2[0]=ld s2[1]=ou s2[2]=at s3[0]=uld s3[1]=you s3[2]=eat s4[0]=ould s4[1]= s4[2]=peat 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=could|you w[1]|w[2]=you|repeat pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=repeat w[1..4]=them __BOS__ +O w[-1]=could w[0]=you w[1]=repeat w[2]=them wl[-1]=could wl[0]=you wl[1]=repeat wl[2]=them pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLL shape[0]=LLL shape[1]=LLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=r p1[2]=t p2[-1]=co p2[0]=yo p2[1]=re p2[2]=th p3[-1]=cou p3[0]=you p3[1]=rep p3[2]=the p4[-1]=coul p4[0]= p4[1]=repe p4[2]=them s1[-1]=d s1[0]=u s1[1]=t s1[2]=m s2[-1]=ld s2[0]=ou s2[1]=at s2[2]=em s3[-1]=uld s3[0]=you s3[1]=eat s3[2]=hem s4[-1]=ould s4[0]= s4[1]=peat s4[2]=them 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=could|you w[0]|w[1]=you|repeat w[1]|w[2]=repeat|them pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[1..4]=repeat w[1..4]=them +O w[-2]=could w[-1]=you w[0]=repeat w[1]=them wl[-2]=could wl[-1]=you wl[0]=repeat wl[1]=them pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLL shape[-1]=LLL shape[0]=LLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=c p1[-1]=y p1[0]=r p1[1]=t p2[-2]=co p2[-1]=yo p2[0]=re p2[1]=th p3[-2]=cou p3[-1]=you p3[0]=rep p3[1]=the p4[-2]=coul p4[-1]= p4[0]=repe p4[1]=them s1[-2]=d s1[-1]=u s1[0]=t s1[1]=m s2[-2]=ld s2[-1]=ou s2[0]=at s2[1]=em s3[-2]=uld s3[-1]=you s3[0]=eat s3[1]=hem s4[-2]=ould s4[-1]= s4[0]=peat s4[1]=them 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=could|you w[-1]|w[0]=you|repeat w[0]|w[1]=repeat|them pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[1..4]=them +O w[-2]=you w[-1]=repeat w[0]=them wl[-2]=you wl[-1]=repeat wl[0]=them pos[-2]=PRP pos[-1]=VB pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=y p1[-1]=r p1[0]=t p2[-2]=yo p2[-1]=re p2[0]=th p3[-2]=you p3[-1]=rep p3[0]=the p4[-2]= p4[-1]=repe p4[0]=them s1[-2]=u s1[-1]=t s1[0]=m s2[-2]=ou s2[-1]=at s2[0]=em s3[-2]=you s3[-1]=eat s3[0]=hem s4[-2]= s4[-1]=peat s4[0]=them 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=you|repeat w[-1]|w[0]=repeat|them pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[-4..-1]=repeat __EOS__ + +O w[0]=play w[1]=this w[2]=song wl[0]=play wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=thi p3[2]=son p4[0]=play p4[1]=this p4[2]=song s1[0]=y s1[1]=s s1[2]=g s2[0]=ay s2[1]=is s2[2]=ng s3[0]=lay s3[1]=his s3[2]=ong s4[0]=play s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song w[1..4]=again __BOS__ +O w[-1]=play w[0]=this w[1]=song w[2]=again wl[-1]=play wl[0]=this wl[1]=song wl[2]=again pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=RB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=s p1[2]=a p2[-1]=pl p2[0]=th p2[1]=so p2[2]=ag p3[-1]=pla p3[0]=thi p3[1]=son p3[2]=aga p4[-1]=play p4[0]=this p4[1]=song p4[2]=agai s1[-1]=y s1[0]=s s1[1]=g s1[2]=n s2[-1]=ay s2[0]=is s2[1]=ng s2[2]=in s3[-1]=lay s3[0]=his s3[1]=ong s3[2]=ain s4[-1]=play s4[0]=this s4[1]=song s4[2]=gain 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|this w[0]|w[1]=this|song w[1]|w[2]=song|again pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|RB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=song w[1..4]=again +O w[-2]=play w[-1]=this w[0]=song w[1]=again wl[-2]=play wl[-1]=this wl[0]=song wl[1]=again pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p1[1]=a p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=ag p3[-2]=pla p3[-1]=thi p3[0]=son p3[1]=aga p4[-2]=play p4[-1]=this p4[0]=song p4[1]=agai s1[-2]=y s1[-1]=s s1[0]=g s1[1]=n s2[-2]=ay s2[-1]=is s2[0]=ng s2[1]=in s3[-2]=lay s3[-1]=his s3[0]=ong s3[1]=ain s4[-2]=play s4[-1]=this s4[0]=song s4[1]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|this w[-1]|w[0]=this|song w[0]|w[1]=song|again pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=this w[1..4]=again +O w[-2]=this w[-1]=song w[0]=again wl[-2]=this wl[-1]=song wl[0]=again pos[-2]=DT pos[-1]=NN pos[0]=RB chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=s p1[0]=a p2[-2]=th p2[-1]=so p2[0]=ag p3[-2]=thi p3[-1]=son p3[0]=aga p4[-2]=this p4[-1]=song p4[0]=agai s1[-2]=s s1[-1]=g s1[0]=n s2[-2]=is s2[-1]=ng s2[0]=in s3[-2]=his s3[-1]=ong s3[0]=ain s4[-2]=this s4[-1]=song s4[0]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=this|song w[-1]|w[0]=song|again pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=this w[-4..-1]=song __EOS__ + +O w[0]=repeat w[1]=this w[2]=song wl[0]=repeat wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=t p1[2]=s p2[0]=re p2[1]=th p2[2]=so p3[0]=rep p3[1]=thi p3[2]=son p4[0]=repe p4[1]=this p4[2]=song s1[0]=t s1[1]=s s1[2]=g s2[0]=at s2[1]=is s2[2]=ng s3[0]=eat s3[1]=his s3[2]=ong s4[0]=peat s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=repeat|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song w[1..4]=once w[1..4]=again __BOS__ +O w[-1]=repeat w[0]=this w[1]=song w[2]=once wl[-1]=repeat wl[0]=this wl[1]=song wl[2]=once pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=RB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=r p1[0]=t p1[1]=s p1[2]=o p2[-1]=re p2[0]=th p2[1]=so p2[2]=on p3[-1]=rep p3[0]=thi p3[1]=son p3[2]=onc p4[-1]=repe p4[0]=this p4[1]=song p4[2]=once s1[-1]=t s1[0]=s s1[1]=g s1[2]=e s2[-1]=at s2[0]=is s2[1]=ng s2[2]=ce s3[-1]=eat s3[0]=his s3[1]=ong s3[2]=nce s4[-1]=peat s4[0]=this s4[1]=song s4[2]=once 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=repeat|this w[0]|w[1]=this|song w[1]|w[2]=song|once pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|RB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[1..4]=song w[1..4]=once w[1..4]=again +O w[-2]=repeat w[-1]=this w[0]=song w[1]=once w[2]=again wl[-2]=repeat wl[-1]=this wl[0]=song wl[1]=once wl[2]=again pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=RB pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=r p1[-1]=t p1[0]=s p1[1]=o p1[2]=a p2[-2]=re p2[-1]=th p2[0]=so p2[1]=on p2[2]=ag p3[-2]=rep p3[-1]=thi p3[0]=son p3[1]=onc p3[2]=aga p4[-2]=repe p4[-1]=this p4[0]=song p4[1]=once p4[2]=agai s1[-2]=t s1[-1]=s s1[0]=g s1[1]=e s1[2]=n s2[-2]=at s2[-1]=is s2[0]=ng s2[1]=ce s2[2]=in s3[-2]=eat s3[-1]=his s3[0]=ong s3[1]=nce s3[2]=ain s4[-2]=peat s4[-1]=this s4[0]=song s4[1]=once s4[2]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=repeat|this w[-1]|w[0]=this|song w[0]|w[1]=song|once w[1]|w[2]=once|again pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|RB pos[1]|pos[2]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=this w[1..4]=once w[1..4]=again +O w[-2]=this w[-1]=song w[0]=once w[1]=again wl[-2]=this wl[-1]=song wl[0]=once wl[1]=again pos[-2]=DT pos[-1]=NN pos[0]=RB pos[1]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=s p1[0]=o p1[1]=a p2[-2]=th p2[-1]=so p2[0]=on p2[1]=ag p3[-2]=thi p3[-1]=son p3[0]=onc p3[1]=aga p4[-2]=this p4[-1]=song p4[0]=once p4[1]=agai s1[-2]=s s1[-1]=g s1[0]=e s1[1]=n s2[-2]=is s2[-1]=ng s2[0]=ce s2[1]=in s3[-2]=his s3[-1]=ong s3[0]=nce s3[1]=ain s4[-2]=this s4[-1]=song s4[0]=once s4[1]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=this|song w[-1]|w[0]=song|once w[0]|w[1]=once|again pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|RB pos[0]|pos[1]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=this w[-4..-1]=song w[1..4]=again +O w[-2]=song w[-1]=once w[0]=again wl[-2]=song wl[-1]=once wl[0]=again pos[-2]=NN pos[-1]=RB pos[0]=RB chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=o p1[0]=a p2[-2]=so p2[-1]=on p2[0]=ag p3[-2]=son p3[-1]=onc p3[0]=aga p4[-2]=song p4[-1]=once p4[0]=agai s1[-2]=g s1[-1]=e s1[0]=n s2[-2]=ng s2[-1]=ce s2[0]=in s3[-2]=ong s3[-1]=nce s3[0]=ain s4[-2]=song s4[-1]=once s4[0]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|once w[-1]|w[0]=once|again pos[-2]|pos[-1]=NN|RB pos[-1]|pos[0]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=this w[-4..-1]=song w[-4..-1]=once __EOS__ + +O w[0]=play w[1]=it w[2]=one wl[0]=play wl[1]=it wl[2]=one pos[0]=VB pos[1]=PRP pos[2]=CD chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=i p1[2]=o p2[0]=pl p2[1]=it p2[2]=on p3[0]=pla p3[1]= p3[2]=one p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=t s1[2]=e s2[0]=ay s2[1]=it s2[2]=ne s3[0]=lay s3[1]= s3[2]=one s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|it w[1]|w[2]=it|one pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|CD chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=one w[1..4]=more w[1..4]=time __BOS__ +O w[-1]=play w[0]=it w[1]=one w[2]=more wl[-1]=play wl[0]=it wl[1]=one wl[2]=more pos[-1]=VB pos[0]=PRP pos[1]=CD pos[2]=JJR chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=i p1[1]=o p1[2]=m p2[-1]=pl p2[0]=it p2[1]=on p2[2]=mo p3[-1]=pla p3[0]= p3[1]=one p3[2]=mor p4[-1]=play p4[0]= p4[1]= p4[2]=more s1[-1]=y s1[0]=t s1[1]=e s1[2]=e s2[-1]=ay s2[0]=it s2[1]=ne s2[2]=re s3[-1]=lay s3[0]= s3[1]=one s3[2]=ore s4[-1]=play s4[0]= s4[1]= s4[2]=more 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|it w[0]|w[1]=it|one w[1]|w[2]=one|more pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|CD pos[1]|pos[2]=CD|JJR chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=one w[1..4]=more w[1..4]=time +O w[-2]=play w[-1]=it w[0]=one w[1]=more w[2]=time wl[-2]=play wl[-1]=it wl[0]=one wl[1]=more wl[2]=time pos[-2]=VB pos[-1]=PRP pos[0]=CD pos[1]=JJR pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=i p1[0]=o p1[1]=m p1[2]=t p2[-2]=pl p2[-1]=it p2[0]=on p2[1]=mo p2[2]=ti p3[-2]=pla p3[-1]= p3[0]=one p3[1]=mor p3[2]=tim p4[-2]=play p4[-1]= p4[0]= p4[1]=more p4[2]=time s1[-2]=y s1[-1]=t s1[0]=e s1[1]=e s1[2]=e s2[-2]=ay s2[-1]=it s2[0]=ne s2[1]=re s2[2]=me s3[-2]=lay s3[-1]= s3[0]=one s3[1]=ore s3[2]=ime s4[-2]=play s4[-1]= s4[0]= s4[1]=more s4[2]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|it w[-1]|w[0]=it|one w[0]|w[1]=one|more w[1]|w[2]=more|time pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|CD pos[0]|pos[1]=CD|JJR pos[1]|pos[2]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=it w[1..4]=more w[1..4]=time +O w[-2]=it w[-1]=one w[0]=more w[1]=time wl[-2]=it wl[-1]=one wl[0]=more wl[1]=time pos[-2]=PRP pos[-1]=CD pos[0]=JJR pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=i p1[-1]=o p1[0]=m p1[1]=t p2[-2]=it p2[-1]=on p2[0]=mo p2[1]=ti p3[-2]= p3[-1]=one p3[0]=mor p3[1]=tim p4[-2]= p4[-1]= p4[0]=more p4[1]=time s1[-2]=t s1[-1]=e s1[0]=e s1[1]=e s2[-2]=it s2[-1]=ne s2[0]=re s2[1]=me s3[-2]= s3[-1]=one s3[0]=ore s3[1]=ime s4[-2]= s4[-1]= s4[0]=more s4[1]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=it|one w[-1]|w[0]=one|more w[0]|w[1]=more|time pos[-2]|pos[-1]=PRP|CD pos[-1]|pos[0]=CD|JJR pos[0]|pos[1]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=it w[-4..-1]=one w[1..4]=time +O w[-2]=one w[-1]=more w[0]=time wl[-2]=one wl[-1]=more wl[0]=time pos[-2]=CD pos[-1]=JJR pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=m p1[0]=t p2[-2]=on p2[-1]=mo p2[0]=ti p3[-2]=one p3[-1]=mor p3[0]=tim p4[-2]= p4[-1]=more p4[0]=time s1[-2]=e s1[-1]=e s1[0]=e s2[-2]=ne s2[-1]=re s2[0]=me s3[-2]=one s3[-1]=ore s3[0]=ime s4[-2]= s4[-1]=more s4[0]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=one|more w[-1]|w[0]=more|time pos[-2]|pos[-1]=CD|JJR pos[-1]|pos[0]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=it w[-4..-1]=one w[-4..-1]=more __EOS__ + +O w[0]=let's w[1]=repeat w[2]=this wl[0]=let's wl[1]=repeat wl[2]=this pos[0]=VB pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL'L shape[1]=LLLLLL shape[2]=LLLL shaped[0]=L'L shaped[1]=L shaped[2]=L type[0]=NO type[1]=AllLetter type[2]=AllLetter p1[0]=l p1[1]=r p1[2]=t p2[0]=le p2[1]=re p2[2]=th p3[0]=let p3[1]=rep p3[2]=thi p4[0]=let' p4[1]=repe p4[2]=this s1[0]=s s1[1]=t s1[2]=s s2[0]='s s2[1]=at s2[2]=is s3[0]=t's s3[1]=eat s3[2]=his s4[0]=et's s4[1]=peat s4[2]=this 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=let's|repeat w[1]|w[2]=repeat|this pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=NO|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=repeat w[1..4]=this w[1..4]=track __BOS__ +O w[-1]=let's w[0]=repeat w[1]=this w[2]=track wl[-1]=let's wl[0]=repeat wl[1]=this wl[2]=track pos[-1]=VB pos[0]=PRP pos[1]=VB pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL'L shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLLL shaped[-1]=L'L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=NO type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=l p1[0]=r p1[1]=t p1[2]=t p2[-1]=le p2[0]=re p2[1]=th p2[2]=tr p3[-1]=let p3[0]=rep p3[1]=thi p3[2]=tra p4[-1]=let' p4[0]=repe p4[1]=this p4[2]=trac s1[-1]=s s1[0]=t s1[1]=s s1[2]=k s2[-1]='s s2[0]=at s2[1]=is s2[2]=ck s3[-1]=t's s3[0]=eat s3[1]=his s3[2]=ack s4[-1]=et's s4[0]=peat s4[1]=this s4[2]=rack 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=let's|repeat w[0]|w[1]=repeat|this w[1]|w[2]=this|track pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L'L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=NO|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=let's w[1..4]=this w[1..4]=track +O w[-2]=let's w[-1]=repeat w[0]=this w[1]=track wl[-2]=let's wl[-1]=repeat wl[0]=this wl[1]=track pos[-2]=VB pos[-1]=PRP pos[0]=VB pos[1]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL'L shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L'L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=NO type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=l p1[-1]=r p1[0]=t p1[1]=t p2[-2]=le p2[-1]=re p2[0]=th p2[1]=tr p3[-2]=let p3[-1]=rep p3[0]=thi p3[1]=tra p4[-2]=let' p4[-1]=repe p4[0]=this p4[1]=trac s1[-2]=s s1[-1]=t s1[0]=s s1[1]=k s2[-2]='s s2[-1]=at s2[0]=is s2[1]=ck s3[-2]=t's s3[-1]=eat s3[0]=his s3[1]=ack s4[-2]=et's s4[-1]=peat s4[0]=this s4[1]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=let's|repeat w[-1]|w[0]=repeat|this w[0]|w[1]=this|track pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L'L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=NO|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=let's w[-4..-1]=repeat w[1..4]=track +O w[-2]=repeat w[-1]=this w[0]=track wl[-2]=repeat wl[-1]=this wl[0]=track pos[-2]=PRP pos[-1]=VB pos[0]=DT chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=r p1[-1]=t p1[0]=t p2[-2]=re p2[-1]=th p2[0]=tr p3[-2]=rep p3[-1]=thi p3[0]=tra p4[-2]=repe p4[-1]=this p4[0]=trac s1[-2]=t s1[-1]=s s1[0]=k s2[-2]=at s2[-1]=is s2[0]=ck s3[-2]=eat s3[-1]=his s3[0]=ack s4[-2]=peat s4[-1]=this s4[0]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=repeat|this w[-1]|w[0]=this|track pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=let's w[-4..-1]=repeat w[-4..-1]=this __EOS__ + +O w[0]=turn w[1]=on w[2]=repeat wl[0]=turn wl[1]=on wl[2]=repeat pos[0]=VB pos[1]=RP pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=o p1[2]=r p2[0]=tu p2[1]=on p2[2]=re p3[0]=tur p3[1]= p3[2]=rep p4[0]=turn p4[1]= p4[2]=repe s1[0]=n s1[1]=n s1[2]=t s2[0]=rn s2[1]=on s2[2]=at s3[0]=urn s3[1]= s3[2]=eat s4[0]=turn s4[1]= s4[2]=peat 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=turn|on w[1]|w[2]=on|repeat pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=repeat w[1..4]=mode w[1..4]=for __BOS__ +O w[-1]=turn w[0]=on w[1]=repeat w[2]=mode wl[-1]=turn wl[0]=on wl[1]=repeat wl[2]=mode pos[-1]=VB pos[0]=RP pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=t p1[0]=o p1[1]=r p1[2]=m p2[-1]=tu p2[0]=on p2[1]=re p2[2]=mo p3[-1]=tur p3[0]= p3[1]=rep p3[2]=mod p4[-1]=turn p4[0]= p4[1]=repe p4[2]=mode s1[-1]=n s1[0]=n s1[1]=t s1[2]=e s2[-1]=rn s2[0]=on s2[1]=at s2[2]=de s3[-1]=urn s3[0]= s3[1]=eat s3[2]=ode s4[-1]=turn s4[0]= s4[1]=peat s4[2]=mode 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=turn|on w[0]|w[1]=on|repeat w[1]|w[2]=repeat|mode pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[1..4]=repeat w[1..4]=mode w[1..4]=for w[1..4]=it +O w[-2]=turn w[-1]=on w[0]=repeat w[1]=mode w[2]=for wl[-2]=turn wl[-1]=on wl[0]=repeat wl[1]=mode wl[2]=for pos[-2]=VB pos[-1]=RP pos[0]=NN pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=o p1[0]=r p1[1]=m p1[2]=f p2[-2]=tu p2[-1]=on p2[0]=re p2[1]=mo p2[2]=fo p3[-2]=tur p3[-1]= p3[0]=rep p3[1]=mod p3[2]=for p4[-2]=turn p4[-1]= p4[0]=repe p4[1]=mode p4[2]= s1[-2]=n s1[-1]=n s1[0]=t s1[1]=e s1[2]=r s2[-2]=rn s2[-1]=on s2[0]=at s2[1]=de s2[2]=or s3[-2]=urn s3[-1]= s3[0]=eat s3[1]=ode s3[2]=for s4[-2]=turn s4[-1]= s4[0]=peat s4[1]=mode s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=turn|on w[-1]|w[0]=on|repeat w[0]|w[1]=repeat|mode w[1]|w[2]=mode|for pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[1..4]=mode w[1..4]=for w[1..4]=it +O w[-2]=on w[-1]=repeat w[0]=mode w[1]=for w[2]=it wl[-2]=on wl[-1]=repeat wl[0]=mode wl[1]=for wl[2]=it pos[-2]=RP pos[-1]=NN pos[0]=NN pos[1]=IN pos[2]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=o p1[-1]=r p1[0]=m p1[1]=f p1[2]=i p2[-2]=on p2[-1]=re p2[0]=mo p2[1]=fo p2[2]=it p3[-2]= p3[-1]=rep p3[0]=mod p3[1]=for p3[2]= p4[-2]= p4[-1]=repe p4[0]=mode p4[1]= p4[2]= s1[-2]=n s1[-1]=t s1[0]=e s1[1]=r s1[2]=t s2[-2]=on s2[-1]=at s2[0]=de s2[1]=or s2[2]=it s3[-2]= s3[-1]=eat s3[0]=ode s3[1]=for s3[2]= s4[-2]= s4[-1]=peat s4[0]=mode s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=on|repeat w[-1]|w[0]=repeat|mode w[0]|w[1]=mode|for w[1]|w[2]=for|it pos[-2]|pos[-1]=RP|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=repeat w[1..4]=for w[1..4]=it +O w[-2]=repeat w[-1]=mode w[0]=for w[1]=it wl[-2]=repeat wl[-1]=mode wl[0]=for wl[1]=it pos[-2]=NN pos[-1]=NN pos[0]=IN pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLL shape[1]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=r p1[-1]=m p1[0]=f p1[1]=i p2[-2]=re p2[-1]=mo p2[0]=fo p2[1]=it p3[-2]=rep p3[-1]=mod p3[0]=for p3[1]= p4[-2]=repe p4[-1]=mode p4[0]= p4[1]= s1[-2]=t s1[-1]=e s1[0]=r s1[1]=t s2[-2]=at s2[-1]=de s2[0]=or s2[1]=it s3[-2]=eat s3[-1]=ode s3[0]=for s3[1]= s4[-2]=peat s4[-1]=mode s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=repeat|mode w[-1]|w[0]=mode|for w[0]|w[1]=for|it pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=repeat w[-4..-1]=mode w[1..4]=it +O w[-2]=mode w[-1]=for w[0]=it wl[-2]=mode wl[-1]=for wl[0]=it pos[-2]=NN pos[-1]=IN pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=f p1[0]=i p2[-2]=mo p2[-1]=fo p2[0]=it p3[-2]=mod p3[-1]=for p3[0]= p4[-2]=mode p4[-1]= p4[0]= s1[-2]=e s1[-1]=r s1[0]=t s2[-2]=de s2[-1]=or s2[0]=it s3[-2]=ode s3[-1]=for s3[0]= s4[-2]=mode s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=mode|for w[-1]|w[0]=for|it pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=on w[-4..-1]=repeat w[-4..-1]=mode w[-4..-1]=for __EOS__ + +O w[0]=play w[1]=the w[2]=next wl[0]=play wl[1]=the wl[2]=next pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=n p2[0]=pl p2[1]=th p2[2]=ne p3[0]=pla p3[1]=the p3[2]=nex p4[0]=play p4[1]= p4[2]=next s1[0]=y s1[1]=e s1[2]=t s2[0]=ay s2[1]=he s2[2]=xt s3[0]=lay s3[1]=the s3[2]=ext s4[0]=play s4[1]= s4[2]=next 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|next pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=next w[1..4]=one __BOS__ +O w[-1]=play w[0]=the w[1]=next w[2]=one wl[-1]=play wl[0]=the wl[1]=next wl[2]=one pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=CD chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=n p1[2]=o p2[-1]=pl p2[0]=th p2[1]=ne p2[2]=on p3[-1]=pla p3[0]=the p3[1]=nex p3[2]=one p4[-1]=play p4[0]= p4[1]=next p4[2]= s1[-1]=y s1[0]=e s1[1]=t s1[2]=e s2[-1]=ay s2[0]=he s2[1]=xt s2[2]=ne s3[-1]=lay s3[0]=the s3[1]=ext s3[2]=one s4[-1]=play s4[0]= s4[1]=next s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|next w[1]|w[2]=next|one pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|CD chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=next w[1..4]=one +O w[-2]=play w[-1]=the w[0]=next w[1]=one wl[-2]=play wl[-1]=the wl[0]=next wl[1]=one pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=CD chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=t p1[0]=n p1[1]=o p2[-2]=pl p2[-1]=th p2[0]=ne p2[1]=on p3[-2]=pla p3[-1]=the p3[0]=nex p3[1]=one p4[-2]=play p4[-1]= p4[0]=next p4[1]= s1[-2]=y s1[-1]=e s1[0]=t s1[1]=e s2[-2]=ay s2[-1]=he s2[0]=xt s2[1]=ne s3[-2]=lay s3[-1]=the s3[0]=ext s3[1]=one s4[-2]=play s4[-1]= s4[0]=next s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|next w[0]|w[1]=next|one pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=one +O w[-2]=the w[-1]=next w[0]=one wl[-2]=the wl[-1]=next wl[0]=one pos[-2]=DT pos[-1]=JJ pos[0]=CD chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=o p2[-2]=th p2[-1]=ne p2[0]=on p3[-2]=the p3[-1]=nex p3[0]=one p4[-2]= p4[-1]=next p4[0]= s1[-2]=e s1[-1]=t s1[0]=e s2[-2]=he s2[-1]=xt s2[0]=ne s3[-2]=the s3[-1]=ext s3[0]=one s4[-2]= s4[-1]=next s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|one pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=next __EOS__ + +O w[0]=what's w[1]=the w[2]=next wl[0]=what's wl[1]=the wl[2]=next pos[0]=WP pos[1]=VBZ pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL'L shape[1]=LLL shape[2]=LLLL shaped[0]=L'L shaped[1]=L shaped[2]=L type[0]=NO type[1]=AllLetter type[2]=AllLetter p1[0]=w p1[1]=t p1[2]=n p2[0]=wh p2[1]=th p2[2]=ne p3[0]=wha p3[1]=the p3[2]=nex p4[0]=what p4[1]= p4[2]=next s1[0]=s s1[1]=e s1[2]=t s2[0]='s s2[1]=he s2[2]=xt s3[0]=t's s3[1]=the s3[2]=ext s4[0]=at's s4[1]= s4[2]=next 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=what's|the w[1]|w[2]=the|next pos[0]|pos[1]=WP|VBZ pos[1]|pos[2]=VBZ|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=NO|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=next w[1..4]=one __BOS__ +O w[-1]=what's w[0]=the w[1]=next w[2]=one wl[-1]=what's wl[0]=the wl[1]=next wl[2]=one pos[-1]=WP pos[0]=VBZ pos[1]=DT pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL'L shape[0]=LLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L'L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=NO type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=w p1[0]=t p1[1]=n p1[2]=o p2[-1]=wh p2[0]=th p2[1]=ne p2[2]=on p3[-1]=wha p3[0]=the p3[1]=nex p3[2]=one p4[-1]=what p4[0]= p4[1]=next p4[2]= s1[-1]=s s1[0]=e s1[1]=t s1[2]=e s2[-1]='s s2[0]=he s2[1]=xt s2[2]=ne s3[-1]=t's s3[0]=the s3[1]=ext s3[2]=one s4[-1]=at's s4[0]= s4[1]=next s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=what's|the w[0]|w[1]=the|next w[1]|w[2]=next|one pos[-1]|pos[0]=WP|VBZ pos[0]|pos[1]=VBZ|DT pos[1]|pos[2]=DT|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L'L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=NO|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=what's w[1..4]=next w[1..4]=one +O w[-2]=what's w[-1]=the w[0]=next w[1]=one wl[-2]=what's wl[-1]=the wl[0]=next wl[1]=one pos[-2]=WP pos[-1]=VBZ pos[0]=DT pos[1]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL'L shape[-1]=LLL shape[0]=LLLL shape[1]=LLL shaped[-2]=L'L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=NO type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=w p1[-1]=t p1[0]=n p1[1]=o p2[-2]=wh p2[-1]=th p2[0]=ne p2[1]=on p3[-2]=wha p3[-1]=the p3[0]=nex p3[1]=one p4[-2]=what p4[-1]= p4[0]=next p4[1]= s1[-2]=s s1[-1]=e s1[0]=t s1[1]=e s2[-2]='s s2[-1]=he s2[0]=xt s2[1]=ne s3[-2]=t's s3[-1]=the s3[0]=ext s3[1]=one s4[-2]=at's s4[-1]= s4[0]=next s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=what's|the w[-1]|w[0]=the|next w[0]|w[1]=next|one pos[-2]|pos[-1]=WP|VBZ pos[-1]|pos[0]=VBZ|DT pos[0]|pos[1]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L'L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=NO|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=what's w[-4..-1]=the w[1..4]=one +O w[-2]=the w[-1]=next w[0]=one wl[-2]=the wl[-1]=next wl[0]=one pos[-2]=VBZ pos[-1]=DT pos[0]=JJ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=o p2[-2]=th p2[-1]=ne p2[0]=on p3[-2]=the p3[-1]=nex p3[0]=one p4[-2]= p4[-1]=next p4[0]= s1[-2]=e s1[-1]=t s1[0]=e s2[-2]=he s2[-1]=xt s2[0]=ne s3[-2]=the s3[-1]=ext s3[0]=one s4[-2]= s4[-1]=next s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|one pos[-2]|pos[-1]=VBZ|DT pos[-1]|pos[0]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=what's w[-4..-1]=the w[-4..-1]=next __EOS__ + +O w[0]=skip w[1]=next wl[0]=skip wl[1]=next pos[0]=VB pos[1]=RB chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=s p1[1]=n p2[0]=sk p2[1]=ne p3[0]=ski p3[1]=nex p4[0]=skip p4[1]=next s1[0]=p s1[1]=t s2[0]=ip s2[1]=xt s3[0]=kip s3[1]=ext s4[0]=skip s4[1]=next 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=skip|next pos[0]|pos[1]=VB|RB chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=next __BOS__ +O w[-1]=skip w[0]=next wl[-1]=skip wl[0]=next pos[-1]=VB pos[0]=RB chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=s p1[0]=n p2[-1]=sk p2[0]=ne p3[-1]=ski p3[0]=nex p4[-1]=skip p4[0]=next s1[-1]=p s1[0]=t s2[-1]=ip s2[0]=xt s3[-1]=kip s3[0]=ext s4[-1]=skip s4[0]=next 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=skip|next pos[-1]|pos[0]=VB|RB chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip __EOS__ + +O w[0]=skip w[1]=to w[2]=next wl[0]=skip wl[1]=to wl[2]=next pos[0]=VB pos[1]=IN pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=n p2[0]=sk p2[1]=to p2[2]=ne p3[0]=ski p3[1]= p3[2]=nex p4[0]=skip p4[1]= p4[2]=next s1[0]=p s1[1]=o s1[2]=t s2[0]=ip s2[1]=to s2[2]=xt s3[0]=kip s3[1]= s3[2]=ext s4[0]=skip s4[1]= s4[2]=next 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=skip|to w[1]|w[2]=to|next pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=next __BOS__ +O w[-1]=skip w[0]=to w[1]=next wl[-1]=skip wl[0]=to wl[1]=next pos[-1]=VB pos[0]=IN pos[1]=JJ chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=s p1[0]=t p1[1]=n p2[-1]=sk p2[0]=to p2[1]=ne p3[-1]=ski p3[0]= p3[1]=nex p4[-1]=skip p4[0]= p4[1]=next s1[-1]=p s1[0]=o s1[1]=t s2[-1]=ip s2[0]=to s2[1]=xt s3[-1]=kip s3[0]= s3[1]=ext s4[-1]=skip s4[0]= s4[1]=next 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=skip|to w[0]|w[1]=to|next pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=skip w[1..4]=next +O w[-2]=skip w[-1]=to w[0]=next wl[-2]=skip wl[-1]=to wl[0]=next pos[-2]=VB pos[-1]=IN pos[0]=JJ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=t p1[0]=n p2[-2]=sk p2[-1]=to p2[0]=ne p3[-2]=ski p3[-1]= p3[0]=nex p4[-2]=skip p4[-1]= p4[0]=next s1[-2]=p s1[-1]=o s1[0]=t s2[-2]=ip s2[-1]=to s2[0]=xt s3[-2]=kip s3[-1]= s3[0]=ext s4[-2]=skip s4[-1]= s4[0]=next 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=skip|to w[-1]|w[0]=to|next pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to __EOS__ + +O w[0]=next w[1]=track wl[0]=next wl[1]=track pos[0]=JJ pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=n p1[1]=t p2[0]=ne p2[1]=tr p3[0]=nex p3[1]=tra p4[0]=next p4[1]=trac s1[0]=t s1[1]=k s2[0]=xt s2[1]=ck s3[0]=ext s3[1]=ack s4[0]=next s4[1]=rack 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=next|track pos[0]|pos[1]=JJ|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=track __BOS__ +O w[-1]=next w[0]=track wl[-1]=next wl[0]=track pos[-1]=JJ pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=n p1[0]=t p2[-1]=ne p2[0]=tr p3[-1]=nex p3[0]=tra p4[-1]=next p4[0]=trac s1[-1]=t s1[0]=k s2[-1]=xt s2[0]=ck s3[-1]=ext s3[0]=ack s4[-1]=next s4[0]=rack 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=next|track pos[-1]|pos[0]=JJ|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=next __EOS__ + +O w[0]=go w[1]=to w[2]=the wl[0]=go wl[1]=to wl[2]=the pos[0]=VB pos[1]=IN pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LL shape[1]=LL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=g p1[1]=t p1[2]=t p2[0]=go p2[1]=to p2[2]=th p3[0]= p3[1]= p3[2]=the p4[0]= p4[1]= p4[2]= s1[0]=o s1[1]=o s1[2]=e s2[0]=go s2[1]=to s2[2]=he s3[0]= s3[1]= s3[2]=the s4[0]= s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=go|to w[1]|w[2]=to|the pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=the w[1..4]=next __BOS__ +O w[-1]=go w[0]=to w[1]=the w[2]=next wl[-1]=go wl[0]=to wl[1]=the wl[2]=next pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LL shape[0]=LL shape[1]=LLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=g p1[0]=t p1[1]=t p1[2]=n p2[-1]=go p2[0]=to p2[1]=th p2[2]=ne p3[-1]= p3[0]= p3[1]=the p3[2]=nex p4[-1]= p4[0]= p4[1]= p4[2]=next s1[-1]=o s1[0]=o s1[1]=e s1[2]=t s2[-1]=go s2[0]=to s2[1]=he s2[2]=xt s3[-1]= s3[0]= s3[1]=the s3[2]=ext s4[-1]= s4[0]= s4[1]= s4[2]=next 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=go|to w[0]|w[1]=to|the w[1]|w[2]=the|next pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[1..4]=the w[1..4]=next +O w[-2]=go w[-1]=to w[0]=the w[1]=next wl[-2]=go wl[-1]=to wl[0]=the wl[1]=next pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LL shape[0]=LLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=g p1[-1]=t p1[0]=t p1[1]=n p2[-2]=go p2[-1]=to p2[0]=th p2[1]=ne p3[-2]= p3[-1]= p3[0]=the p3[1]=nex p4[-2]= p4[-1]= p4[0]= p4[1]=next s1[-2]=o s1[-1]=o s1[0]=e s1[1]=t s2[-2]=go s2[-1]=to s2[0]=he s2[1]=xt s3[-2]= s3[-1]= s3[0]=the s3[1]=ext s4[-2]= s4[-1]= s4[0]= s4[1]=next 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=go|to w[-1]|w[0]=to|the w[0]|w[1]=the|next pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=to w[1..4]=next +O w[-2]=to w[-1]=the w[0]=next wl[-2]=to wl[-1]=the wl[0]=next pos[-2]=IN pos[-1]=DT pos[0]=JJ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=t p1[0]=n p2[-2]=to p2[-1]=th p2[0]=ne p3[-2]= p3[-1]=the p3[0]=nex p4[-2]= p4[-1]= p4[0]=next s1[-2]=o s1[-1]=e s1[0]=t s2[-2]=to s2[-1]=he s2[0]=xt s3[-2]= s3[-1]=the s3[0]=ext s4[-2]= s4[-1]= s4[0]=next 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|next pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=to w[-4..-1]=the __EOS__ + +O w[0]=what's w[1]=next wl[0]=what's wl[1]=next pos[0]=WP pos[1]=VBZ chk[0]=O chk[1]=O shape[0]=LLLL'L shape[1]=LLLL shaped[0]=L'L shaped[1]=L type[0]=NO type[1]=AllLetter p1[0]=w p1[1]=n p2[0]=wh p2[1]=ne p3[0]=wha p3[1]=nex p4[0]=what p4[1]=next s1[0]=s s1[1]=t s2[0]='s s2[1]=xt s3[0]=t's s3[1]=ext s4[0]=at's s4[1]=next 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=no al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=yes cs[1]=no w[0]|w[1]=what's|next pos[0]|pos[1]=WP|VBZ chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L'L|L type[0]|type[1]=NO|AllLetter w[1..4]=next __BOS__ +O w[-1]=what's w[0]=next wl[-1]=what's wl[0]=next pos[-1]=WP pos[0]=VBZ chk[-1]=O chk[0]=O shape[-1]=LLLL'L shape[0]=LLLL shaped[-1]=L'L shaped[0]=L type[-1]=NO type[0]=AllLetter p1[-1]=w p1[0]=n p2[-1]=wh p2[0]=ne p3[-1]=wha p3[0]=nex p4[-1]=what p4[0]=next s1[-1]=s s1[0]=t s2[-1]='s s2[0]=xt s3[-1]=t's s3[0]=ext s4[-1]=at's s4[0]=next 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=no al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=yes cs[0]=no w[-1]|w[0]=what's|next pos[-1]|pos[0]=WP|VBZ chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L'L|L type[-1]|type[0]=NO|AllLetter w[-4..-1]=what's __EOS__ + +O w[0]=now w[1]=the w[2]=next wl[0]=now wl[1]=the wl[2]=next pos[0]=RB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=n p1[1]=t p1[2]=n p2[0]=no p2[1]=th p2[2]=ne p3[0]=now p3[1]=the p3[2]=nex p4[0]= p4[1]= p4[2]=next s1[0]=w s1[1]=e s1[2]=t s2[0]=ow s2[1]=he s2[2]=xt s3[0]=now s3[1]=the s3[2]=ext s4[0]= s4[1]= s4[2]=next 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=now|the w[1]|w[2]=the|next pos[0]|pos[1]=RB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=next w[1..4]=one __BOS__ +O w[-1]=now w[0]=the w[1]=next w[2]=one wl[-1]=now wl[0]=the wl[1]=next wl[2]=one pos[-1]=RB pos[0]=DT pos[1]=JJ pos[2]=CD chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=n p1[0]=t p1[1]=n p1[2]=o p2[-1]=no p2[0]=th p2[1]=ne p2[2]=on p3[-1]=now p3[0]=the p3[1]=nex p3[2]=one p4[-1]= p4[0]= p4[1]=next p4[2]= s1[-1]=w s1[0]=e s1[1]=t s1[2]=e s2[-1]=ow s2[0]=he s2[1]=xt s2[2]=ne s3[-1]=now s3[0]=the s3[1]=ext s3[2]=one s4[-1]= s4[0]= s4[1]=next s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=now|the w[0]|w[1]=the|next w[1]|w[2]=next|one pos[-1]|pos[0]=RB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|CD chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=now w[1..4]=next w[1..4]=one +O w[-2]=now w[-1]=the w[0]=next w[1]=one wl[-2]=now wl[-1]=the wl[0]=next wl[1]=one pos[-2]=RB pos[-1]=DT pos[0]=JJ pos[1]=CD chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=n p1[-1]=t p1[0]=n p1[1]=o p2[-2]=no p2[-1]=th p2[0]=ne p2[1]=on p3[-2]=now p3[-1]=the p3[0]=nex p3[1]=one p4[-2]= p4[-1]= p4[0]=next p4[1]= s1[-2]=w s1[-1]=e s1[0]=t s1[1]=e s2[-2]=ow s2[-1]=he s2[0]=xt s2[1]=ne s3[-2]=now s3[-1]=the s3[0]=ext s3[1]=one s4[-2]= s4[-1]= s4[0]=next s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=now|the w[-1]|w[0]=the|next w[0]|w[1]=next|one pos[-2]|pos[-1]=RB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=now w[-4..-1]=the w[1..4]=one +O w[-2]=the w[-1]=next w[0]=one wl[-2]=the wl[-1]=next wl[0]=one pos[-2]=DT pos[-1]=JJ pos[0]=CD chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=o p2[-2]=th p2[-1]=ne p2[0]=on p3[-2]=the p3[-1]=nex p3[0]=one p4[-2]= p4[-1]=next p4[0]= s1[-2]=e s1[-1]=t s1[0]=e s2[-2]=he s2[-1]=xt s2[0]=ne s3[-2]=the s3[-1]=ext s3[0]=one s4[-2]= s4[-1]=next s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|one pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=now w[-4..-1]=the w[-4..-1]=next __EOS__ + +O w[0]=play w[1]=next wl[0]=play wl[1]=next pos[0]=VB pos[1]=RB chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=n p2[0]=pl p2[1]=ne p3[0]=pla p3[1]=nex p4[0]=play p4[1]=next s1[0]=y s1[1]=t s2[0]=ay s2[1]=xt s3[0]=lay s3[1]=ext s4[0]=play s4[1]=next 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|next pos[0]|pos[1]=VB|RB chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=next __BOS__ +O w[-1]=play w[0]=next wl[-1]=play wl[0]=next pos[-1]=VB pos[0]=RB chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=n p2[-1]=pl p2[0]=ne p3[-1]=pla p3[0]=nex p4[-1]=play p4[0]=next s1[-1]=y s1[0]=t s2[-1]=ay s2[0]=xt s3[-1]=lay s3[0]=ext s4[-1]=play s4[0]=next 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|next pos[-1]|pos[0]=VB|RB chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play __EOS__ + +O w[0]=the w[1]=next w[2]=song wl[0]=the wl[1]=next wl[2]=song pos[0]=DT pos[1]=JJ pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=n p1[2]=s p2[0]=th p2[1]=ne p2[2]=so p3[0]=the p3[1]=nex p3[2]=son p4[0]= p4[1]=next p4[2]=song s1[0]=e s1[1]=t s1[2]=g s2[0]=he s2[1]=xt s2[2]=ng s3[0]=the s3[1]=ext s3[2]=ong s4[0]= s4[1]=next s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=the|next w[1]|w[2]=next|song pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=next w[1..4]=song __BOS__ +O w[-1]=the w[0]=next w[1]=song wl[-1]=the wl[0]=next wl[1]=song pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=t p1[0]=n p1[1]=s p2[-1]=th p2[0]=ne p2[1]=so p3[-1]=the p3[0]=nex p3[1]=son p4[-1]= p4[0]=next p4[1]=song s1[-1]=e s1[0]=t s1[1]=g s2[-1]=he s2[0]=xt s2[1]=ng s3[-1]=the s3[0]=ext s3[1]=ong s4[-1]= s4[0]=next s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=the|next w[0]|w[1]=next|song pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=the w[1..4]=song +O w[-2]=the w[-1]=next w[0]=song wl[-2]=the wl[-1]=next wl[0]=song pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=s p2[-2]=th p2[-1]=ne p2[0]=so p3[-2]=the p3[-1]=nex p3[0]=son p4[-2]= p4[-1]=next p4[0]=song s1[-2]=e s1[-1]=t s1[0]=g s2[-2]=he s2[-1]=xt s2[0]=ng s3[-2]=the s3[-1]=ext s3[0]=ong s4[-2]= s4[-1]=next s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|song pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=the w[-4..-1]=next __EOS__ + +O w[0]=skip w[1]=forward wl[0]=skip wl[1]=forward pos[0]=VB pos[1]=RB chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=s p1[1]=f p2[0]=sk p2[1]=fo p3[0]=ski p3[1]=for p4[0]=skip p4[1]=forw s1[0]=p s1[1]=d s2[0]=ip s2[1]=rd s3[0]=kip s3[1]=ard s4[0]=skip s4[1]=ward 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=skip|forward pos[0]|pos[1]=VB|RB chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=forward __BOS__ +O w[-1]=skip w[0]=forward wl[-1]=skip wl[0]=forward pos[-1]=VB pos[0]=RB chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=s p1[0]=f p2[-1]=sk p2[0]=fo p3[-1]=ski p3[0]=for p4[-1]=skip p4[0]=forw s1[-1]=p s1[0]=d s2[-1]=ip s2[0]=rd s3[-1]=kip s3[0]=ard s4[-1]=skip s4[0]=ward 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=skip|forward pos[-1]|pos[0]=VB|RB chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip __EOS__ + +O w[0]=play w[1]=next w[2]=track wl[0]=play wl[1]=next wl[2]=track pos[0]=VB pos[1]=JJ pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=n p1[2]=t p2[0]=pl p2[1]=ne p2[2]=tr p3[0]=pla p3[1]=nex p3[2]=tra p4[0]=play p4[1]=next p4[2]=trac s1[0]=y s1[1]=t s1[2]=k s2[0]=ay s2[1]=xt s2[2]=ck s3[0]=lay s3[1]=ext s3[2]=ack s4[0]=play s4[1]=next s4[2]=rack 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|next w[1]|w[2]=next|track pos[0]|pos[1]=VB|JJ pos[1]|pos[2]=JJ|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=next w[1..4]=track __BOS__ +O w[-1]=play w[0]=next w[1]=track wl[-1]=play wl[0]=next wl[1]=track pos[-1]=VB pos[0]=JJ pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=n p1[1]=t p2[-1]=pl p2[0]=ne p2[1]=tr p3[-1]=pla p3[0]=nex p3[1]=tra p4[-1]=play p4[0]=next p4[1]=trac s1[-1]=y s1[0]=t s1[1]=k s2[-1]=ay s2[0]=xt s2[1]=ck s3[-1]=lay s3[0]=ext s3[1]=ack s4[-1]=play s4[0]=next s4[1]=rack 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|next w[0]|w[1]=next|track pos[-1]|pos[0]=VB|JJ pos[0]|pos[1]=JJ|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=track +O w[-2]=play w[-1]=next w[0]=track wl[-2]=play wl[-1]=next wl[0]=track pos[-2]=VB pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=n p1[0]=t p2[-2]=pl p2[-1]=ne p2[0]=tr p3[-2]=pla p3[-1]=nex p3[0]=tra p4[-2]=play p4[-1]=next p4[0]=trac s1[-2]=y s1[-1]=t s1[0]=k s2[-2]=ay s2[-1]=xt s2[0]=ck s3[-2]=lay s3[-1]=ext s3[0]=ack s4[-2]=play s4[-1]=next s4[0]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|next w[-1]|w[0]=next|track pos[-2]|pos[-1]=VB|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=next __EOS__ + +O w[0]=the w[1]=following w[2]=song wl[0]=the wl[1]=following wl[2]=song pos[0]=DT pos[1]=VBG pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLLLLLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=f p1[2]=s p2[0]=th p2[1]=fo p2[2]=so p3[0]=the p3[1]=fol p3[2]=son p4[0]= p4[1]=foll p4[2]=song s1[0]=e s1[1]=g s1[2]=g s2[0]=he s2[1]=ng s2[2]=ng s3[0]=the s3[1]=ing s3[2]=ong s4[0]= s4[1]=wing s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=the|following w[1]|w[2]=following|song pos[0]|pos[1]=DT|VBG pos[1]|pos[2]=VBG|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=following w[1..4]=song __BOS__ +O w[-1]=the w[0]=following w[1]=song wl[-1]=the wl[0]=following wl[1]=song pos[-1]=DT pos[0]=VBG pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLL shape[0]=LLLLLLLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=t p1[0]=f p1[1]=s p2[-1]=th p2[0]=fo p2[1]=so p3[-1]=the p3[0]=fol p3[1]=son p4[-1]= p4[0]=foll p4[1]=song s1[-1]=e s1[0]=g s1[1]=g s2[-1]=he s2[0]=ng s2[1]=ng s3[-1]=the s3[0]=ing s3[1]=ong s4[-1]= s4[0]=wing s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=the|following w[0]|w[1]=following|song pos[-1]|pos[0]=DT|VBG pos[0]|pos[1]=VBG|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=the w[1..4]=song +O w[-2]=the w[-1]=following w[0]=song wl[-2]=the wl[-1]=following wl[0]=song pos[-2]=DT pos[-1]=VBG pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLLLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=f p1[0]=s p2[-2]=th p2[-1]=fo p2[0]=so p3[-2]=the p3[-1]=fol p3[0]=son p4[-2]= p4[-1]=foll p4[0]=song s1[-2]=e s1[-1]=g s1[0]=g s2[-2]=he s2[-1]=ng s2[0]=ng s3[-2]=the s3[-1]=ing s3[0]=ong s4[-2]= s4[-1]=wing s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|following w[-1]|w[0]=following|song pos[-2]|pos[-1]=DT|VBG pos[-1]|pos[0]=VBG|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=the w[-4..-1]=following __EOS__ + +O w[0]=what's w[1]=the w[2]=next wl[0]=what's wl[1]=the wl[2]=next pos[0]=WP pos[1]=VBZ pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL'L shape[1]=LLL shape[2]=LLLL shaped[0]=L'L shaped[1]=L shaped[2]=L type[0]=NO type[1]=AllLetter type[2]=AllLetter p1[0]=w p1[1]=t p1[2]=n p2[0]=wh p2[1]=th p2[2]=ne p3[0]=wha p3[1]=the p3[2]=nex p4[0]=what p4[1]= p4[2]=next s1[0]=s s1[1]=e s1[2]=t s2[0]='s s2[1]=he s2[2]=xt s3[0]=t's s3[1]=the s3[2]=ext s4[0]=at's s4[1]= s4[2]=next 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=what's|the w[1]|w[2]=the|next pos[0]|pos[1]=WP|VBZ pos[1]|pos[2]=VBZ|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=NO|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=next w[1..4]=song __BOS__ +O w[-1]=what's w[0]=the w[1]=next w[2]=song wl[-1]=what's wl[0]=the wl[1]=next wl[2]=song pos[-1]=WP pos[0]=VBZ pos[1]=DT pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL'L shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L'L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=NO type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=w p1[0]=t p1[1]=n p1[2]=s p2[-1]=wh p2[0]=th p2[1]=ne p2[2]=so p3[-1]=wha p3[0]=the p3[1]=nex p3[2]=son p4[-1]=what p4[0]= p4[1]=next p4[2]=song s1[-1]=s s1[0]=e s1[1]=t s1[2]=g s2[-1]='s s2[0]=he s2[1]=xt s2[2]=ng s3[-1]=t's s3[0]=the s3[1]=ext s3[2]=ong s4[-1]=at's s4[0]= s4[1]=next s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=what's|the w[0]|w[1]=the|next w[1]|w[2]=next|song pos[-1]|pos[0]=WP|VBZ pos[0]|pos[1]=VBZ|DT pos[1]|pos[2]=DT|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L'L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=NO|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=what's w[1..4]=next w[1..4]=song +O w[-2]=what's w[-1]=the w[0]=next w[1]=song wl[-2]=what's wl[-1]=the wl[0]=next wl[1]=song pos[-2]=WP pos[-1]=VBZ pos[0]=DT pos[1]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL'L shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=L'L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=NO type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=w p1[-1]=t p1[0]=n p1[1]=s p2[-2]=wh p2[-1]=th p2[0]=ne p2[1]=so p3[-2]=wha p3[-1]=the p3[0]=nex p3[1]=son p4[-2]=what p4[-1]= p4[0]=next p4[1]=song s1[-2]=s s1[-1]=e s1[0]=t s1[1]=g s2[-2]='s s2[-1]=he s2[0]=xt s2[1]=ng s3[-2]=t's s3[-1]=the s3[0]=ext s3[1]=ong s4[-2]=at's s4[-1]= s4[0]=next s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=what's|the w[-1]|w[0]=the|next w[0]|w[1]=next|song pos[-2]|pos[-1]=WP|VBZ pos[-1]|pos[0]=VBZ|DT pos[0]|pos[1]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L'L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=NO|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=what's w[-4..-1]=the w[1..4]=song +O w[-2]=the w[-1]=next w[0]=song wl[-2]=the wl[-1]=next wl[0]=song pos[-2]=VBZ pos[-1]=DT pos[0]=JJ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=s p2[-2]=th p2[-1]=ne p2[0]=so p3[-2]=the p3[-1]=nex p3[0]=son p4[-2]= p4[-1]=next p4[0]=song s1[-2]=e s1[-1]=t s1[0]=g s2[-2]=he s2[-1]=xt s2[0]=ng s3[-2]=the s3[-1]=ext s3[0]=ong s4[-2]= s4[-1]=next s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|song pos[-2]|pos[-1]=VBZ|DT pos[-1]|pos[0]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=what's w[-4..-1]=the w[-4..-1]=next __EOS__ + +O w[0]=go w[1]=to w[2]=the wl[0]=go wl[1]=to wl[2]=the pos[0]=VB pos[1]=IN pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LL shape[1]=LL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=g p1[1]=t p1[2]=t p2[0]=go p2[1]=to p2[2]=th p3[0]= p3[1]= p3[2]=the p4[0]= p4[1]= p4[2]= s1[0]=o s1[1]=o s1[2]=e s2[0]=go s2[1]=to s2[2]=he s3[0]= s3[1]= s3[2]=the s4[0]= s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=go|to w[1]|w[2]=to|the pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=the w[1..4]=next w[1..4]=one __BOS__ +O w[-1]=go w[0]=to w[1]=the w[2]=next wl[-1]=go wl[0]=to wl[1]=the wl[2]=next pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LL shape[0]=LL shape[1]=LLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=g p1[0]=t p1[1]=t p1[2]=n p2[-1]=go p2[0]=to p2[1]=th p2[2]=ne p3[-1]= p3[0]= p3[1]=the p3[2]=nex p4[-1]= p4[0]= p4[1]= p4[2]=next s1[-1]=o s1[0]=o s1[1]=e s1[2]=t s2[-1]=go s2[0]=to s2[1]=he s2[2]=xt s3[-1]= s3[0]= s3[1]=the s3[2]=ext s4[-1]= s4[0]= s4[1]= s4[2]=next 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=go|to w[0]|w[1]=to|the w[1]|w[2]=the|next pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[1..4]=the w[1..4]=next w[1..4]=one +O w[-2]=go w[-1]=to w[0]=the w[1]=next w[2]=one wl[-2]=go wl[-1]=to wl[0]=the wl[1]=next wl[2]=one pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=JJ pos[2]=CD chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LL shape[0]=LLL shape[1]=LLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=g p1[-1]=t p1[0]=t p1[1]=n p1[2]=o p2[-2]=go p2[-1]=to p2[0]=th p2[1]=ne p2[2]=on p3[-2]= p3[-1]= p3[0]=the p3[1]=nex p3[2]=one p4[-2]= p4[-1]= p4[0]= p4[1]=next p4[2]= s1[-2]=o s1[-1]=o s1[0]=e s1[1]=t s1[2]=e s2[-2]=go s2[-1]=to s2[0]=he s2[1]=xt s2[2]=ne s3[-2]= s3[-1]= s3[0]=the s3[1]=ext s3[2]=one s4[-2]= s4[-1]= s4[0]= s4[1]=next s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=go|to w[-1]|w[0]=to|the w[0]|w[1]=the|next w[1]|w[2]=next|one pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=to w[1..4]=next w[1..4]=one +O w[-2]=to w[-1]=the w[0]=next w[1]=one wl[-2]=to wl[-1]=the wl[0]=next wl[1]=one pos[-2]=IN pos[-1]=DT pos[0]=JJ pos[1]=CD chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLL shape[0]=LLLL shape[1]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=t p1[0]=n p1[1]=o p2[-2]=to p2[-1]=th p2[0]=ne p2[1]=on p3[-2]= p3[-1]=the p3[0]=nex p3[1]=one p4[-2]= p4[-1]= p4[0]=next p4[1]= s1[-2]=o s1[-1]=e s1[0]=t s1[1]=e s2[-2]=to s2[-1]=he s2[0]=xt s2[1]=ne s3[-2]= s3[-1]=the s3[0]=ext s3[1]=one s4[-2]= s4[-1]= s4[0]=next s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|next w[0]|w[1]=next|one pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=to w[-4..-1]=the w[1..4]=one +O w[-2]=the w[-1]=next w[0]=one wl[-2]=the wl[-1]=next wl[0]=one pos[-2]=DT pos[-1]=JJ pos[0]=CD chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=o p2[-2]=th p2[-1]=ne p2[0]=on p3[-2]=the p3[-1]=nex p3[0]=one p4[-2]= p4[-1]=next p4[0]= s1[-2]=e s1[-1]=t s1[0]=e s2[-2]=he s2[-1]=xt s2[0]=ne s3[-2]=the s3[-1]=ext s3[0]=one s4[-2]= s4[-1]=next s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|one pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=to w[-4..-1]=the w[-4..-1]=next __EOS__ + +O w[0]=go w[1]=forward wl[0]=go wl[1]=forward pos[0]=VB pos[1]=RB chk[0]=O chk[1]=O shape[0]=LL shape[1]=LLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=g p1[1]=f p2[0]=go p2[1]=fo p3[0]= p3[1]=for p4[0]= p4[1]=forw s1[0]=o s1[1]=d s2[0]=go s2[1]=rd s3[0]= s3[1]=ard s4[0]= s4[1]=ward 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=go|forward pos[0]|pos[1]=VB|RB chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=forward __BOS__ +O w[-1]=go w[0]=forward wl[-1]=go wl[0]=forward pos[-1]=VB pos[0]=RB chk[-1]=O chk[0]=O shape[-1]=LL shape[0]=LLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=g p1[0]=f p2[-1]=go p2[0]=fo p3[-1]= p3[0]=for p4[-1]= p4[0]=forw s1[-1]=o s1[0]=d s2[-1]=go s2[0]=rd s3[-1]= s3[0]=ard s4[-1]= s4[0]=ward 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=go|forward pos[-1]|pos[0]=VB|RB chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=go __EOS__ + +O w[0]=next w[1]=song wl[0]=next wl[1]=song pos[0]=JJ pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=n p1[1]=s p2[0]=ne p2[1]=so p3[0]=nex p3[1]=son p4[0]=next p4[1]=song s1[0]=t s1[1]=g s2[0]=xt s2[1]=ng s3[0]=ext s3[1]=ong s4[0]=next s4[1]=song 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=next|song pos[0]|pos[1]=JJ|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=song __BOS__ +O w[-1]=next w[0]=song wl[-1]=next wl[0]=song pos[-1]=JJ pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=n p1[0]=s p2[-1]=ne p2[0]=so p3[-1]=nex p3[0]=son p4[-1]=next p4[0]=song s1[-1]=t s1[0]=g s2[-1]=xt s2[0]=ng s3[-1]=ext s3[0]=ong s4[-1]=next s4[0]=song 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=next|song pos[-1]|pos[0]=JJ|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=next __EOS__ + +O w[0]=skip wl[0]=skip pos[0]=VB chk[0]=O shape[0]=LLLL shaped[0]=L type[0]=AllLetter p1[0]=s p2[0]=sk p3[0]=ski p4[0]=skip s1[0]=p s2[0]=ip s3[0]=kip s4[0]=skip 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=play w[1]=the w[2]=next wl[0]=play wl[1]=the wl[2]=next pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=n p2[0]=pl p2[1]=th p2[2]=ne p3[0]=pla p3[1]=the p3[2]=nex p4[0]=play p4[1]= p4[2]=next s1[0]=y s1[1]=e s1[2]=t s2[0]=ay s2[1]=he s2[2]=xt s3[0]=lay s3[1]=the s3[2]=ext s4[0]=play s4[1]= s4[2]=next 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|next pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=next w[1..4]=song __BOS__ +O w[-1]=play w[0]=the w[1]=next w[2]=song wl[-1]=play wl[0]=the wl[1]=next wl[2]=song pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=n p1[2]=s p2[-1]=pl p2[0]=th p2[1]=ne p2[2]=so p3[-1]=pla p3[0]=the p3[1]=nex p3[2]=son p4[-1]=play p4[0]= p4[1]=next p4[2]=song s1[-1]=y s1[0]=e s1[1]=t s1[2]=g s2[-1]=ay s2[0]=he s2[1]=xt s2[2]=ng s3[-1]=lay s3[0]=the s3[1]=ext s3[2]=ong s4[-1]=play s4[0]= s4[1]=next s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|next w[1]|w[2]=next|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=next w[1..4]=song +O w[-2]=play w[-1]=the w[0]=next w[1]=song wl[-2]=play wl[-1]=the wl[0]=next wl[1]=song pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=t p1[0]=n p1[1]=s p2[-2]=pl p2[-1]=th p2[0]=ne p2[1]=so p3[-2]=pla p3[-1]=the p3[0]=nex p3[1]=son p4[-2]=play p4[-1]= p4[0]=next p4[1]=song s1[-2]=y s1[-1]=e s1[0]=t s1[1]=g s2[-2]=ay s2[-1]=he s2[0]=xt s2[1]=ng s3[-2]=lay s3[-1]=the s3[0]=ext s3[1]=ong s4[-2]=play s4[-1]= s4[0]=next s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|next w[0]|w[1]=next|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=song +O w[-2]=the w[-1]=next w[0]=song wl[-2]=the wl[-1]=next wl[0]=song pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=s p2[-2]=th p2[-1]=ne p2[0]=so p3[-2]=the p3[-1]=nex p3[0]=son p4[-2]= p4[-1]=next p4[0]=song s1[-2]=e s1[-1]=t s1[0]=g s2[-2]=he s2[-1]=xt s2[0]=ng s3[-2]=the s3[-1]=ext s3[0]=ong s4[-2]= s4[-1]=next s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|song pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=next __EOS__ + +O w[0]=the w[1]=next w[2]=please wl[0]=the wl[1]=next wl[2]=please pos[0]=DT pos[1]=JJ pos[2]=UH chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=n p1[2]=p p2[0]=th p2[1]=ne p2[2]=pl p3[0]=the p3[1]=nex p3[2]=ple p4[0]= p4[1]=next p4[2]=plea s1[0]=e s1[1]=t s1[2]=e s2[0]=he s2[1]=xt s2[2]=se s3[0]=the s3[1]=ext s3[2]=ase s4[0]= s4[1]=next s4[2]=ease 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=the|next w[1]|w[2]=next|please pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|UH chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=next w[1..4]=please __BOS__ +O w[-1]=the w[0]=next w[1]=please wl[-1]=the wl[0]=next wl[1]=please pos[-1]=DT pos[0]=JJ pos[1]=UH chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=t p1[0]=n p1[1]=p p2[-1]=th p2[0]=ne p2[1]=pl p3[-1]=the p3[0]=nex p3[1]=ple p4[-1]= p4[0]=next p4[1]=plea s1[-1]=e s1[0]=t s1[1]=e s2[-1]=he s2[0]=xt s2[1]=se s3[-1]=the s3[0]=ext s3[1]=ase s4[-1]= s4[0]=next s4[1]=ease 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=the|next w[0]|w[1]=next|please pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|UH chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=the w[1..4]=please +O w[-2]=the w[-1]=next w[0]=please wl[-2]=the wl[-1]=next wl[0]=please pos[-2]=DT pos[-1]=JJ pos[0]=UH chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=p p2[-2]=th p2[-1]=ne p2[0]=pl p3[-2]=the p3[-1]=nex p3[0]=ple p4[-2]= p4[-1]=next p4[0]=plea s1[-2]=e s1[-1]=t s1[0]=e s2[-2]=he s2[-1]=xt s2[0]=se s3[-2]=the s3[-1]=ext s3[0]=ase s4[-2]= s4[-1]=next s4[0]=ease 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|please pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|UH chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=the w[-4..-1]=next __EOS__ + +O w[0]=next w[1]=please wl[0]=next wl[1]=please pos[0]=RB pos[1]=UH chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=n p1[1]=p p2[0]=ne p2[1]=pl p3[0]=nex p3[1]=ple p4[0]=next p4[1]=plea s1[0]=t s1[1]=e s2[0]=xt s2[1]=se s3[0]=ext s3[1]=ase s4[0]=next s4[1]=ease 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=next|please pos[0]|pos[1]=RB|UH chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=please __BOS__ +O w[-1]=next w[0]=please wl[-1]=next wl[0]=please pos[-1]=RB pos[0]=UH chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=n p1[0]=p p2[-1]=ne p2[0]=pl p3[-1]=nex p3[0]=ple p4[-1]=next p4[0]=plea s1[-1]=t s1[0]=e s2[-1]=xt s2[0]=se s3[-1]=ext s3[0]=ase s4[-1]=next s4[0]=ease 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=next|please pos[-1]|pos[0]=RB|UH chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=next __EOS__ + +O w[0]=skip w[1]=this w[2]=song wl[0]=skip wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=s p2[0]=sk p2[1]=th p2[2]=so p3[0]=ski p3[1]=thi p3[2]=son p4[0]=skip p4[1]=this p4[2]=song s1[0]=p s1[1]=s s1[2]=g s2[0]=ip s2[1]=is s2[2]=ng s3[0]=kip s3[1]=his s3[2]=ong s4[0]=skip s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=skip|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song __BOS__ +O w[-1]=skip w[0]=this w[1]=song wl[-1]=skip wl[0]=this wl[1]=song pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=s p1[0]=t p1[1]=s p2[-1]=sk p2[0]=th p2[1]=so p3[-1]=ski p3[0]=thi p3[1]=son p4[-1]=skip p4[0]=this p4[1]=song s1[-1]=p s1[0]=s s1[1]=g s2[-1]=ip s2[0]=is s2[1]=ng s3[-1]=kip s3[0]=his s3[1]=ong s4[-1]=skip s4[0]=this s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=skip|this w[0]|w[1]=this|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=skip w[1..4]=song +O w[-2]=skip w[-1]=this w[0]=song wl[-2]=skip wl[-1]=this wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=t p1[0]=s p2[-2]=sk p2[-1]=th p2[0]=so p3[-2]=ski p3[-1]=thi p3[0]=son p4[-2]=skip p4[-1]=this p4[0]=song s1[-2]=p s1[-1]=s s1[0]=g s2[-2]=ip s2[-1]=is s2[0]=ng s3[-2]=kip s3[-1]=his s3[0]=ong s4[-2]=skip s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=skip|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=this __EOS__ + +O w[0]=play w[1]=another w[2]=one wl[0]=play wl[1]=another wl[2]=one pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLLLL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=o p2[0]=pl p2[1]=an p2[2]=on p3[0]=pla p3[1]=ano p3[2]=one p4[0]=play p4[1]=anot p4[2]= s1[0]=y s1[1]=r s1[2]=e s2[0]=ay s2[1]=er s2[2]=ne s3[0]=lay s3[1]=her s3[2]=one s4[0]=play s4[1]=ther s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|another w[1]|w[2]=another|one pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=another w[1..4]=one __BOS__ +O w[-1]=play w[0]=another w[1]=one wl[-1]=play wl[0]=another wl[1]=one pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LLLLLLL shape[1]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=a p1[1]=o p2[-1]=pl p2[0]=an p2[1]=on p3[-1]=pla p3[0]=ano p3[1]=one p4[-1]=play p4[0]=anot p4[1]= s1[-1]=y s1[0]=r s1[1]=e s2[-1]=ay s2[0]=er s2[1]=ne s3[-1]=lay s3[0]=her s3[1]=one s4[-1]=play s4[0]=ther s4[1]= 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|another w[0]|w[1]=another|one pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=one +O w[-2]=play w[-1]=another w[0]=one wl[-2]=play wl[-1]=another wl[0]=one pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLLLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=a p1[0]=o p2[-2]=pl p2[-1]=an p2[0]=on p3[-2]=pla p3[-1]=ano p3[0]=one p4[-2]=play p4[-1]=anot p4[0]= s1[-2]=y s1[-1]=r s1[0]=e s2[-2]=ay s2[-1]=er s2[0]=ne s3[-2]=lay s3[-1]=her s3[0]=one s4[-2]=play s4[-1]=ther s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|another w[-1]|w[0]=another|one pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=another __EOS__ + +O w[0]=next wl[0]=next pos[0]=RB chk[0]=O shape[0]=LLLL shaped[0]=L type[0]=AllLetter p1[0]=n p2[0]=ne p3[0]=nex p4[0]=next s1[0]=t s2[0]=xt s3[0]=ext s4[0]=next 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=skip w[1]=to w[2]=the wl[0]=skip wl[1]=to wl[2]=the pos[0]=VB pos[1]=IN pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=t p2[0]=sk p2[1]=to p2[2]=th p3[0]=ski p3[1]= p3[2]=the p4[0]=skip p4[1]= p4[2]= s1[0]=p s1[1]=o s1[2]=e s2[0]=ip s2[1]=to s2[2]=he s3[0]=kip s3[1]= s3[2]=the s4[0]=skip s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=skip|to w[1]|w[2]=to|the pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=the w[1..4]=next w[1..4]=one __BOS__ +O w[-1]=skip w[0]=to w[1]=the w[2]=next wl[-1]=skip wl[0]=to wl[1]=the wl[2]=next pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=s p1[0]=t p1[1]=t p1[2]=n p2[-1]=sk p2[0]=to p2[1]=th p2[2]=ne p3[-1]=ski p3[0]= p3[1]=the p3[2]=nex p4[-1]=skip p4[0]= p4[1]= p4[2]=next s1[-1]=p s1[0]=o s1[1]=e s1[2]=t s2[-1]=ip s2[0]=to s2[1]=he s2[2]=xt s3[-1]=kip s3[0]= s3[1]=the s3[2]=ext s4[-1]=skip s4[0]= s4[1]= s4[2]=next 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=skip|to w[0]|w[1]=to|the w[1]|w[2]=the|next pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=skip w[1..4]=the w[1..4]=next w[1..4]=one +O w[-2]=skip w[-1]=to w[0]=the w[1]=next w[2]=one wl[-2]=skip wl[-1]=to wl[0]=the wl[1]=next wl[2]=one pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=JJ pos[2]=CD chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=t p1[0]=t p1[1]=n p1[2]=o p2[-2]=sk p2[-1]=to p2[0]=th p2[1]=ne p2[2]=on p3[-2]=ski p3[-1]= p3[0]=the p3[1]=nex p3[2]=one p4[-2]=skip p4[-1]= p4[0]= p4[1]=next p4[2]= s1[-2]=p s1[-1]=o s1[0]=e s1[1]=t s1[2]=e s2[-2]=ip s2[-1]=to s2[0]=he s2[1]=xt s2[2]=ne s3[-2]=kip s3[-1]= s3[0]=the s3[1]=ext s3[2]=one s4[-2]=skip s4[-1]= s4[0]= s4[1]=next s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=skip|to w[-1]|w[0]=to|the w[0]|w[1]=the|next w[1]|w[2]=next|one pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to w[1..4]=next w[1..4]=one +O w[-2]=to w[-1]=the w[0]=next w[1]=one wl[-2]=to wl[-1]=the wl[0]=next wl[1]=one pos[-2]=IN pos[-1]=DT pos[0]=JJ pos[1]=CD chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLL shape[0]=LLLL shape[1]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=t p1[0]=n p1[1]=o p2[-2]=to p2[-1]=th p2[0]=ne p2[1]=on p3[-2]= p3[-1]=the p3[0]=nex p3[1]=one p4[-2]= p4[-1]= p4[0]=next p4[1]= s1[-2]=o s1[-1]=e s1[0]=t s1[1]=e s2[-2]=to s2[-1]=he s2[0]=xt s2[1]=ne s3[-2]= s3[-1]=the s3[0]=ext s3[1]=one s4[-2]= s4[-1]= s4[0]=next s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|next w[0]|w[1]=next|one pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to w[-4..-1]=the w[1..4]=one +O w[-2]=the w[-1]=next w[0]=one wl[-2]=the wl[-1]=next wl[0]=one pos[-2]=DT pos[-1]=JJ pos[0]=CD chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=o p2[-2]=th p2[-1]=ne p2[0]=on p3[-2]=the p3[-1]=nex p3[0]=one p4[-2]= p4[-1]=next p4[0]= s1[-2]=e s1[-1]=t s1[0]=e s2[-2]=he s2[-1]=xt s2[0]=ne s3[-2]=the s3[-1]=ext s3[0]=one s4[-2]= s4[-1]=next s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|one pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to w[-4..-1]=the w[-4..-1]=next __EOS__ + diff --git a/TrainingFiles/bolo.model b/TrainingFiles/bolo.model new file mode 100644 index 000000000..62affe762 Binary files /dev/null and b/TrainingFiles/bolo.model differ diff --git a/TrainingFiles/crfsuite b/TrainingFiles/crfsuite new file mode 100755 index 000000000..3fab0c91f Binary files /dev/null and b/TrainingFiles/crfsuite differ diff --git a/TrainingFiles/rawTrain.txt b/TrainingFiles/rawTrain.txt new file mode 100644 index 000000000..5629080ed --- /dev/null +++ b/TrainingFiles/rawTrain.txt @@ -0,0 +1,2226 @@ +O add VB O +O this DT O +O song NN O +O to IN O +O my PRP$ O +O playlist NN O + +O put VB O +O it PRP O +O on IN O +O my PRP$ O +playlist Late JJ I +playlist Night JJ I +O playlist NN O + +O save VB O +O this DT O +O song NN O +O to IN O +O my PRP$ O +playlist Workout NNP I +O playlist NN O + +O move VB O +O it PRP O +O to IN O +O the DT O +playlist Gym NNP I +O playlist NN O + +O add VB O +O it PRP O +O to IN O +O the DT O +O playlist NN O +playlist Yoga NN I + +O save VB O +O this DT O +O track NN O +O in IN O +O my PRP$ O +O playlist NN O + +O put VB O +O it PRP O +O into IN O +O the DT O +O playlist NN O +playlist Running VBG I + +O now RB O +O play VBP O + +O play VB O +O this DT O + +O play VB O + +O could MD O +O you PRP O +O play VB O +O this DT O +O one NN O + +O I PRP O +O want VBP O +O you PRP O +O to TO O +O play VB O +O it PRP O + +O start VB O +O playing VBG O +O it PRP O + +O play VB O +O it PRP O + +O could MD O +O you PRP O +O play VB O +O it PRP O +O for IN O +O me PRP O + +O now RB O +O start VBP O +O playing VBG O + +O play VB O +O it PRP O + +O can MD O +O you PRP O +O play VB O +O it PRP O + +O and CC O +O play VB O +O it PRP O + +O shuffle VB O +O them PRP O + +O shuffle VB O +O this DT O +O playlist NN O + +O shuffle VB O +O mode NN O +O on IN O + +O turn VB O +O on RP O +O shuffle NN O +O mode NN O + +O shuffle VB O + +O play VB O +O some DT O +genre rock NN I +O music NN O + +O just RB O +O play VBP O +O music NN O +O for IN O +O me PRP O + +O play VBP O +O genre NN O +genre romance NN I + +O play VBP O +O song NN O +song The DT I +song Nights DT I + +O play VB O +O a DT O +O song NN O +song Another DT I +song Brick DT I +song in DT I +song the DT I +song Wall DT I + +O play VB O +song Ca NNP I +song Marche NNP I +O by IN O +artist Maitre NNP I +artist Gims NNP I + +O play VB O +O any DT O +O song NN O +O of IN O +artist Babbu NNP I +artist Maan NNP I +O from IN O +O my PRP$ O +O library NN O + +artist Eminem NNP I +O song NN O + +O song JJ O +genre pop NN I + +O play VB O +O the DT O +O album NN O +album Divorcio NNP I +O by IN O +artist Julio NNP I +artist Iglesia NNP I + +O play VB O +song Miracle NN I + +O I PRP O +O wanna MD O +O listen VB O +O to IN O +genre reggae NN I + +O play VB O +O some DT O +genre smooth JJ I +genre jazz JJ I + +O play VB O +song 6 CD I +song Words CD I +O by IN O +artist Wretch JJ I +artist 32 JJ I +O on IN O +service Spotify NNP I + +O play VB O +album Led NNP I +album Zeppelin NNP I +album two NNP I + +O reproduce VB O +O a DT O +O the DT O +O track NN O +song Monster NN I +O by IN O +artist Rihanna NNP I +O ft NN O +artist Eminem NNP I + +O I PRP O +O want VBP O +O you PRP O +O to TO O +O play VB O +O music NN O + +O Play VB O +artist Five CD I +artist Seconds CD I +artist of CD I +artist Summer CD I + +O play VBP O +O song NN O +O by IN O +artist Nicki NNP I +artist Minaj NNP I + +O let's VB O +O hear PRP O +artist The VB I +artist Beatles VB I + +O play VB O +song Do VBP I +song I VBP I +song Wanna VBP I +song Know VBP I +O by IN O +artist Arctic NNP I +artist Monkeys NNP I + +O play VBP O +artist Queens NNPS I +artist of NNPS I +artist the NNPS I +artist stone NNPS I +artist age NNPS I + +O play VB O +artist Rihanna NNP I +song Unfaithful NNP I +O for IN O +O me PRP O + +O play VB O +song Ignition NN I +O by IN O +artist R NN I +artist Kelly NN I + +O I'd PRP O +O like MD O +O to VB O +O listen TO O +O to VB O +genre jazz IN I + +O I PRP O +O want VBP O +O to TO O +O hear VB O +O a DT O +O song NN O + +O please UH O +O play VB O +O song NN O +song Lost VBN I +song in VBN I +song You VBN I + +O play VB O +O album NN O +album The DT I +album marshall DT I +album mathers DT I +O by IN O +artist Eminem NNP I + +O play VB O +song Hard NNP I +song Times NNP I +O by IN O +artist David NNP I +artist Newman NNP I + +O let VB O +O me PRP O +O hear VB O +O some DT O +O music NN O +O by IN O +artist Coldplay NNP I + +genre country NN I +O song NN O + +O play VBP O +O album NN O +album Purple JJ I +album Rain JJ I +O on IN O +service Spotify NNP I + +O can MD O +O you PRP O +O turn VB O +O on RP O +O my PRP$ O +O music NN O + +O play VBP O +O music NN O +O by IN O +artist Megan NNP I +artist Trainer NNP I + +O play VB O +song End NN I +song of NN I +song the NN I +song World NN I +O by IN O +artist The DT I +artist living DT I +artist end DT I + +O play VB O +artist Metallica NNP I + +O play VBP O +O song NN O +O from IN O +artist Rihanna NNP I + +O play VB O +O a DT O +artist U2 JJ I +O song NN O + +O play VB O +O a DT O +O song NN O +O from IN O +service Spotify NNP I + +O play VB O +album Tears NNS I +album in NNS I +album Heaven NNS I +O by IN O +artist Eric NNP I +artist Clapton NNP I + +O play VBP O +O song NN O +O by IN O +artist Eminem NNP I +O and CC O +artist Rihanna NNP I + +O play VB O +song Miracles NNS I +O from IN O +O phone NN O + +O switch VB O +O to TO O +playlist workout NN I +O music NN O + +O play VBP O +O song NN O +O from IN O +O the DT O +O album NN O +album Address NN I + +O play VB O +O some DT O +O good JJ O +O music NN O + +O play VB O +song Black NNP I +song Widow NNP I +O by IN O +artist Iggy NNP I +artist Azalea NNP I +O song NN O +O on IN O +service Spotify NNP I + +O play VB O +O the DT O +O song NN O +song Love VB I +song Me VB I +song Like VB I +song You VB I +song Do VB I + +O play VB O +O some DT O +genre rock NN I +genre n NN I +genre roll NN I +O music NN O + +O play VB O +artist Drake NNP I + +O start VB O +O playing VBG O +song The DT I +song Lost DT I +O song NN O + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +O a DT O +O song NN O + +O play VBP O +O album NN O +album Songs NNP I +album for NNP I +album the NNP I +album Deaf NNP I +O by IN O +artist Queens NNPS I +artist of NNPS I +artist the NNPS I +artist stone NNPS I +artist age NNPS I + +artist Tom NNP I +artist Waits NNP I +O songs NNS O + +O play VB O +O a DT O +genre country NN I +O song NN O + +O play VB O +O the DT O +O album NN O +album Un NNP I +album monde NNP I +album meilleur NNP I +O by IN O +artist Kids NNPS I +artist United NNPS I + +O play VB O +artist Red NNP I +artist Hot NNP I +artist Chili NNP I +artist Peppers NNP I + +O play VBP O +O song NN O +O by IN O +artist Willie NNP I +artist Nelson NNP I + +O play VB O +O something NN O +O by IN O +artist Rihanna NNP I + +O play VB O +O some DT O +genre rock NN I +genre and NN I +genre roll NN I + +O play VBP O +O song NN O +song Roxanne NNP I + +O play VB O +O Madonna's NNP O +song Like POS I +song a POS I +song Virgin POS I + +O play VBP O +O song NN O +song How WRB I +song do WRB I +song I WRB I +song Live WRB I + +O play VB O +O album NN O +album Madonna NNP I + +O play VB O +genre country NN I +genre blues NN I + +O music NN O +O play NN O +song Addicted VBN I +song to VBN I +song Love VBN I + +O play VB O +genre hip NN I +genre hop NN I + +O put VB O +O on RP O +O my PRP$ O +playlist late JJ I +playlist night JJ I +O playlist NN O + +O play VBP O +O genre NN O +genre party NN I + +O play VBP O +O genre NN O +genre blues NNS I + +O can MD O +O you PRP O +O play VB O +O the DT O +O song NN O +song Still RB I +song into RB I +song You RB I + +O play VBP O +genre jazz NN I +O on IN O +service Spotify NNP I + +O play VB O +artist Pearl NNP I +artist Jam NNP I + +O play VB O +artist Britney NNP I +artist Spears NNP I +song Me PRP I +song Against PRP I +song the PRP I +song Music PRP I +O feat NN O +artist Madonna NNP I + +O play VB O +O me PRP O +O some DT O +sort good JJ I +O music NN O + +O I PRP O +O would MD O +O like VB O +O to TO O +O hear VB O +O some DT O +O music NN O + +O play VB O +sort best JJS I +artist Metallica NNP I + +O play VBP O +O song NN O +song Alive NNP I + +O play VB O +song It’s PRP I +song Now PRP I +song or PRP I +song Never PRP I + +O play VB O +song Faded VBN I +O by IN O +artist ZHU NNP I +O song NN O +O on IN O +service Spotify NNP I + +O play VB O +O the DT O +O song NN O +song Chasing VBG I +song the VBG I +song Dragon VBG I + +O play VB O +O album NN O +album Graceland NNP I +O by IN O +artist Paul NNP I +artist Simon NNP I + +O let VB O +O me PRP O +O hear VB O +O something NN O +O from IN O +artist George NNP I +artist Strait NNP I + +artist Bob NNP I +artist Marley NNP I +O play VB O +O the DT O +O song NN O +O please NN O + +O play VB O +O album NN O +album Power NNP I +album Corruption NNP I +album Lies NNP I + +O play VBP O +O music NN O +O by IN O +artist Marco NNP I +artist Mengoni NNP I + +O play VB O +song Hello UH I + +O start VB O +O up RP O +O the DT O +O track NN O +song Come VB I +song Together VB I + +O play VB O +genre jazz NN I + +O play VB O +O a DT O +genre pop NN I +O song NN O + +O play VB O +song Bad JJ I +O from IN O +artist Michael NNP I +artist Jackson NNP I + +O play VB O +O a DT O +genre romantic JJ I +O song NN O + +O play VB O +O the DT O +O song NN O +song Gorilla NNP I + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +song Temperature NN I +O by IN O +artist Sean NNP I +artist Paul NNP I + +O play VB O +song Animals NNS I +O by IN O +artist Maroon NN I +artist 5 NN I + +O play VBP O +O songs NNS O +O by IN O +artist Ellie NNP I +artist Goulding NNP I + +O play VBP O +song Never RB I +song listen RB I +artist Julia NNP I +artist Othmer NNP I + +O play VB O +O album NN O +album After IN I +album the IN I +album Gold IN I +album Rush IN I + +O play VB O +song Do VBP I +song I VBP I +song Wanna VBP I +song Know VBP I +O by IN O +artist Arctic NNP I +artist Monkeys NNP I +O song NN O +O on IN O +service Spotify NNP I + +O play VB O +O album NN O +album Madonna NNP I +O by IN O +album Madonna NNP I + +O play VB O +O Adele's NNP O +song Hello POS I + +O play VBP O +O song NN O +song In IN I +song Da IN I +song Club IN I + +O play VB O +O me PRP O +O a DT O +O song NN O +O by IN O +artist Aventura NNP I + +O play VB O +artist Justin NNP I +artist Bieber NNP I + +O change VB O +O to IN O +O my PRP$ O +playlist workout NN I +O music NN O + +O play VBP O +O song NN O +O from IN O +service iTunes NNS I + +O play VB O +song Miracles NNPS I +O from IN O +service Apple NNP I +service Music NNP I + +O can MD O +O you PRP O +O play VB O +O song NN O +song Dark JJ I +song Horse JJ I + +O play VB O +album Empty JJ I +album Sky JJ I +O by IN O +artist Elton NNP I +artist John NNP I + +O play VBP O +O song NN O +song Killer NNP I +song Queen NNP I +O by IN O +artist Queen NNP I + +O play VB O +song She's PRP I +song Got PRP I +song the PRP I +song Look PRP I +O by NNP O +artist Roxette IN I + +O play VB O +genre Gospel NN I +O songs NNS O +O on IN O +service Spotify NNP I + +O play VB O +artist Amy NNP I +artist Winehouse NNP I + +O play VB O +song Dangerous JJ I +O feat NN O +artist Sam NNP I +artist Martin NNP I +O by IN O +artist David NNP I +artist Guetta NNP I +O song NN O +O on IN O +service Spotify NNP I + +O play VBP O +O album NN O +album Ramones NNP I +O on IN O +service Spotify NNP I + +O play VB O +O something NN O +O by IN O +artist The DT I +artist Rolling DT I +artist Stones DT I + +O play VB O +O a DT O +O song NN O +O on IN O +service Spotify NNP I + +O can MD O +O you PRP O +O play VB O +O some DT O +O music NN O + +O turn VB O +O on RP O +playlist meditative JJ I +O tracks NNS O + +O play VB O +O the DT O +O song NN O +song Encantadora NNP I + +O play VB O +O my PRP$ O +playlist workout NN I +O playlist NN O + +O turn VB O +O on RP O +O a DT O +O song NN O + +O play VB O +sort greatest JJS I +O hits NNS O +O by IN O +artist Metallica NNP I + +O play VB O +O album NN O +album London NNP I +album calling NNP I +O by IN O +artist The DT I +artist Clash DT I + +O play VB O +O the DT O +O song NN O +song Bird NNP I + +O play VB O +artist Maroon NN I +artist 5 NN I + +O play VBP O +O songs NNS O +O from IN O +O playlist NN O +playlist Hot NNP I +playlist Hits NNP I +playlist UK NNP I + +O play VB O +O some DT O +genre relaxing VBG I +O music NN O + +O show VBP O +sort best JJS I +O songs NNS O +O by IN O +artist Rihanna NNP I + +O can MD O +O you PRP O +O play VB O +song Irreplaceable JJ I +O by IN O +artist Beyonce NNP I + +O play VB O +playlist my PRP$ I +playlist faves PRP$ I +O playlist NN O + +O put VBN O +O on RP O +O some DT O +artist Rolling NNP I +artist Stones NNP I + +O music NN O +song Grenade NNP I +O in IN O +O my PRP$ O +O library NN O + +O play VB O +artist Guns NNPS I +artist N NNPS I +artist Roses NNPS I + +O Play VB O +playlist chill NN I +O playlist NN O + +O let's VB O +O hear PRP O +artist Wilco VB I + +O play VB O +song What WP I +song Does WP I +song the WP I +song Fox WP I +song Say WP I + +O play VB O +O the DT O +song Mean NNP I +song Kitty NNP I +O song NN O + +O play VBP O +O song NN O +song Thriller NNP I + +O play VBP O +O song NN O +song The DT I +song Cantos DT I +song de DT I +song Mallorca DT I + +O play VB O +genre Experimental JJ I +O songs NNS O +O on IN O +service Spotify NNP I + +O play VBP O +O song NN O +song Poker NNP I +song Face NNP I +O by IN O +artist Lady NNP I +artist Gaga NNP I + +O I'd PRP O +O like MD O +O to VB O +O listen TO O +O to VB O +O music IN O + +O turn VB O +O on RP O +O the DT O +O music NN O + +O play VB O +song Anaconda NNP I +O by IN O +artist Nicki NNP I +artist Minaj NNP I + +O play VB O +song Apparently RB I +O by IN O +artist J NNP I +artist Cole NNP I + +O play VB O +song Thriller NNP I +artist Michael NNP I +artist Jackson NNP I + +O play VB O +song Keep VB I +song On VB I +song Walking VB I +O by IN O +artist CeCe NNP I + +O play VB O +O the DT O +O song JJ O +song Nothing NN I +song Gonna NN I +song Stop NN I +song Us NN I +song Now NN I + +O play VB O +artist Beyonce NNP I + +O can MD O +O you PRP O +O play VB O +song How WRB I +song You WRB I +song Remind WRB I +song Me WRB I + +song Hollaback NNP I +song Girl NNP I +O music NN O + +O play VB O +genre RnB NN I + +O play VB O +artist Meghan NNP I +artist Trainor NNP I + +O play VB O +O album NN O +album Master NNP I +album of NNP I +album Puppets NNP I + +O play VB O +O the DT O +O song JJ O +song Pots NNS I +song of NNS I +song gold NNS I +O by IN O +O the DT O +O artist NN O +artist Mamas NNP I +artist Gun NNP I + +O play VB O +O the DT O +O album NN O +album The DT I +album Wall DT I +O on IN O +service Spotify NNP I + +O play VB O +O some DT O +genre romantic JJ I +O songs NNS O + +O play VB O +song Best JJS I +song of JJS I +song You JJS I +O by IN O +artist Foo NNP I +artist Fighters NNP I + +O play VB O +O me PRP O +O some DT O +genre relaxing VBG I +O music NN O + +O play VB O +O artist NN O +artist ACDC NNP I + +O can MD O +O you PRP O +O open VB O +song Shape NN I +song of NN I +song My NN I +song Heart NN I +O in IN O +service Google NNP I +service music NNP I + +O play VB O +O artist NN O +artist Meghan NNP I +artist Trainor NNP I + +O can MD O +O you PRP O +O open VB O +song Careless NNP I +song Whisper NNP I +O song NN O + +O play VBP O +O song NN O +artist Krystof NNP I +song Tak NNP I +song Pojd NNP I +song Hlwdat NNP I +song Breh NNP I + +O play VB O +song Foolin NNP I +O by IN O +artist Changing VBG I +artist Faces VBG I + +O play VBP O +O music NN O +O for IN O +O me PRP O + +O play VBP O +O album NN O +album Sounds VBZ I +album Good VBZ I +album Field VBZ I +O by IN O +artist Five CD I +artist Seconds CD I +artist of CD I +artist Summer CD I + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +song Crazy NNP I +O performed VBN O +O by IN O +artist Aerosmith NNP I + +artist Cher NNP I +song Believe VB I + +O play VB O +song Now RB I +song Call RB I +song Mom RB I + +O play VB O +song Yesterday NN I +O by IN O +artist Beatles NNP I + +artist Bart NNP I +artist Baker NNP I +O song NN O + +O play VB O +O the DT O +sort newest JJS I +O song NN O +O by IN O +artist Eminem NNP I + +O play VB O +artist Laura NNP I +artist Pausini NNP I + +O play VB O +artist The DT I +artist Police DT I + +O play VB O +O album NN O +album Fly NN I +album by NN I +album Night NN I +O by IN O +artist Rush NNP I + +O play VB O +song Focus NN I +O by IN O +artist Ariana NNP I +artist Grande NNP I + +song Blank NNP I +song Space NNP I +O song NN O + +song Can't MD I +song Feel MD I +song My MD I +song Face MD I +O on NNP O +service Google IN I +service Music IN I + +O play VBP O +O song NN O +O by IN O +artist Shaggy NNP I + +O play VB O +song Thinking VBG I +song Out VBG I +song Loud VBG I +O by IN O +artist Ed NNP I +artist Sheeran NNP I + +O play VB O +O a DT O +O song NN O +O from IN O +O my PRP$ O +O music NN O +O library NN O + +O the DT O +O song NN O +song Grew VBN I +O by IN O +artist Bruno NNP I +artist Mars NNP I + +O play VB O +O album NN O +album Appetite NN I +album for NN I +album destruction NN I +O by IN O +artist Guns NNPS I +artist n NNPS I +artist Roses NNPS I + +O play VBP O +O album NN O +album Horses NNS I + +O play VB O +O me PRP O +O some DT O +artist Michael NNP I +artist Jackson NNP I + +O play VB O +song Elastic NNP I +song Heart NNP I +O by IN O +artist Sia NNP I +O song NN O +O on IN O +service Spotify NNP I + +O play VB O +O me PRP O +O some DT O +genre country NN I +O music NN O + +O play VB O +O a DT O +O song NN O +song Tera NNP I +song Mera NNP I +song Rishta NNP I + +O a DT O +O song NN O +song Still RB I +song Loving RB I +song You RB I + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +song Disturbia NNP I +O song NN O + +O play VB O +song Harder RBR I +song Better RBR I +song Faster RBR I + +O can MD O +O I PRP O +O listen VB O +O to IN O +song Macarena NNP I + +O play VB O +song Song NNP I +song of NNP I +song Joy NNP I + +O play VB O +song Miracle NN I +O from IN O +service Apple NNP I +service Music NNP I + +O play VB O +song Bohemian NNP I +song Rhapsody NNP I +O by IN O +artist Queen NNP I + +O play VB O +O music NN O + +O can MD O +O you PRP O +O play VB O +song It PRP I +song Must PRP I +song Have PRP I +song Been PRP I +song Love PRP I + +O can MD O +O you PRP O +O play VB O +genre country NN I +O music NN O + +O let's VB O +O listen PRP O +O to VB O +song Come TO I +song together TO I +O by RB O +artist Beatles IN I + +O play VBP O +O songs NNS O +O by IN O +artist Enrique NNP I +artist Iglesias NNP I + +O play VB O +O an DT O +O album NN O +O by IN O +artist Madonna NNP I + +O play VB O +artist Nirvana NNP I + +O please UH O +O play VB O +O song NN O +genre Secret NNP I +genre Love NNP I +genre Song NNP I + +O can MD O +O you PRP O +O play VB O +O the DT O +O song JJ O +song Beauty NNP I +song and NNP I +song a NNP I +song Beat NNP I + +O play VB O +song I PRP I +song Will PRP I +song Always PRP I +song Love PRP I +song You PRP I +O from IN O +artist Whitney NNP I +artist Houston NNP I + +O can MD O +O you PRP O +O start VB O +O playing VBG O +O music NN O + +O play VB O +song 21 CD I +O by IN O +artist Adele NNP I +O on IN O +service Spotify NNP I + +O play VB O +artist Rihanna NNP I +O on IN O +service Spotify NNP I + +O play VB O +O the DT O +O song NN O +song Back RB I +song in RB I +song time RB I +O by IN O +artist Pitbull NNP I + +O play VB O +O artist NN O +artist A DT I +artist great DT I +artist big DT I +artist world DT I + +O can MD O +O I PRP O +O listen VB O +O to IN O +song Gangsta's NNP I +song Paradise NNP I +O song NNP O + +O play VB O +song r&b NN I +O music NN O + +O play NN O +song Do VBP I +song you VBP I +song Mind VBP I +O by IN O +artist Changing VBG I +artist Faces VBG I + +O put VBN O +O on RP O +O some DT O +O music NN O + +O playing VBG O +artist Mozart NNP I +O song NN O + +O play VB O +artist The DT I +artist Antlers DT I + +O can MD O +O you PRP O +O play VB O +artist Adele NNP I + +O play VBP O +song Blackbird NNP I +O from IN O +O SD NN O +O card NN O + +O play VBP O +O music NN O +O on IN O +service Spotify NNP I + +O play VB O +artist One CD I +artist Direction CD I + +O I'd PRP O +O like MD O +O to VB O +O listen TO O +O to VB O +O some IN O +O music DT O + +O I PRP O +O want VBP O +O to TO O +O hear VB O +song Owner NN I +song of NN I +song a NN I +song Lonely NN I +song Heart NN I + +song No DT I +song Scrubs DT I +O song NN O +O play NN O + +O play VB O +O me PRP O +O some DT O +genre jazz NN I + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +song Bleeding NNP I +song Love NNP I + +O play VBP O +O song NN O +song She's PRP I +song Got PRP I +song the PRP I +song Look PRP I + +O play VB O +O a DT O +O song NN O + +O play VB O +genre R&B NNP I + +O play VB O +song Let VB I +song Her VB I +song Go VB I +O by IN O +artist Passenger NNP I +O song NN O +O on IN O +service Spotify NNP I + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +artist Ariana NNP I +artist Grande NNP I + +O can MD O +O you PRP O +O please UH O +O play VB O +O a DT O +O song NN O +O from IN O +O my PRP$ O +playlist favourite JJ I +O playlist NN O + +O songs NNS O +O by IN O +artist Tom NNP I +artist Waits NNP I + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +O the DT O +O song JJ O +song New NNP I +song York NNP I + +O play VB O +album Abbey NNP I +album Road NNP I +O remastered VBN O +O by IN O +artist The DT I +artist Beatles DT I + +O I'd PRP O +O like MD O +O to VB O +O listen TO O +O to VB O +genre classic IN I +genre opera IN I + +O play VB O +song Home NN I +song To NN I +song Mama NN I +O by IN O +artist Justin NNP I +artist Bieber NNP I +O song NN O +O on IN O +service Spotify NNP I + +O play VBP O +O genre NN O +genre RnB IN I + +O play VB O +O the DT O +O artist NN O +artist Rush NN I + +O play VB O +artist Theory NN I +artist of NN I +artist a NN I +artist Deadman NN I + +genre rock NN I +O compositions NNS O + +O play VB O +song I PRP I +song See PRP I +song Fire PRP I +O by IN O +artist Ed NNP I +artist Sheeran NNP I +O song NN O +O on IN O +service Spotify NNP I + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +O something NN O +O by IN O +artist Madonna NNP I + +O play VB O +O music NN O +O by IN O +artist Vanessa NNP I +artist Paradis NNP I + +O play VB O +O album NN O +album In IN I +album the IN I +album jungle IN I +album groove IN I + +O play VB O +O album NN O +album Thriller NNP I + +O play VBP O +O song NN O +O by IN O +artist Lil NNP I +artist Wayne NNP I + +O play VBP O +O album NN O +album Born VBN I +album to VBN I +album Run VBN I +O by IN O +artist Bruce NNP I +artist Springsteen NNP I +O on IN O +service Spotify NNP I + +O play VBP O +artist Imagine NNP I +artist Dragons NNP I + +O will MD O +O you PRP O +O please UH O +O play VB O +song Tik NNP I +song Tok NNP I + +O play VB O +O a DT O +genre rock NN I +O song NN O + +O play VB O +artist Maroon NNP I +artist 5 NNP I +O on IN O +service Spotify NNP I + +O play VB O +O album NN O +album Nevermind NNP I +O by IN O +artist Nirvana NNP I + +O play VBP O +artist françoise NN I +artist hardy NN I + +song Live VB I +song While VB I +song We VB I +song are VB I +song Young VB I +O song NN O + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +O some DT O +O music NN O + +O play VB O +song Budapest NNP I + +O play VB O +song Sweet NNP I +song Dreams NNP I +O by IN O +artist Eurythmics NNP I + +O play VB O +O the DT O +playlist 50 CD I +playlist Great CD I +playlist Beatles CD I +playlist Songs CD I +O playlist NN O +O in IN O +service Prime NNP I +service Music NNP I + +O continue VB O +O playing VBG O + +O start VB O +O music NN O +O again RB O + +O resume VB O + +O resume VB O +O it PRP O + +O resume VB O +O playing VBG O + +O continue VB O +O the DT O +O music NN O + +O continue VB O + +O resume VB O +O music NN O + +O restart VB O +O music NN O + +O resume VB O +O this DT O +O song NN O + +O can MD O +O you PRP O +O pause VB O +O it PRP O + +O pause VB O +O it PRP O + +O pause VB O +O playing VBG O + +O pause VB O +O song NN O + +O please UH O +O pause VB O + +O pause VB O + +O put VB O +O it PRP O +O on IN O +O pause NN O + +O pause VB O +O this DT O +O song NN O + +O skip VB O +O to IN O +O the DT O +O previous JJ O +O song NN O + +O go VB O +O back RB O + +O skip VB O +O backward RB O + +O go VB O +O back RB O +O to IN O +O the DT O +O previous JJ O +O station NN O + +O back VB O +O up RP O +O a DT O +O track NN O + +O go VB O +O to IN O +O previous JJ O + +O previous JJ O +O song NN O + +O go VB O +O back RB O +O to IN O +O previous JJ O +O song NN O + +O skip VB O +O to IN O +O the DT O +O back NN O + +O back RB O + +O go VB O +O back RB O +O to IN O +O previous JJ O + +O previous JJ O + +O previous JJ O +O station NN O + +O skip VB O +O back RB O + +O skip VB O +O to IN O +O previous JJ O + +O remember VB O +O this DT O +O song NN O + +O fave VB O +O this DT O +O song NN O + +O it's PRP O +O my VBZ O +O favourite PRP$ O + +O add VB O +O this DT O +O song NN O +O to IN O +O favorites NNS O + +O I PRP O +O love VBP O +O this DT O +O song NN O + +O put VB O +O this DT O +O track NN O +O into IN O +O my PRP$ O +O favourites NNS O + +O add VB O +O to IN O +O faves NNS O + +O add VB O +O it PRP O +O to IN O +O my PRP$ O +O favourites NNS O + +O favourite JJ O +O this DT O +O song NN O + +O could MD O +O you PRP O +O mark VB O +O it PRP O +O as IN O +O favourite JJ O + +O add VB O +O this DT O +O song NN O +O to IN O +O my PRP$ O +O favourites NNS O + +O stop VB O +O it PRP O + +O could MD O +O you PRP O +O stop VB O + +O music NN O +O off RP O + +O can MD O +O you PRP O +O stop VB O +O the DT O +O music NN O + +O stop VB O + +O stop VB O +O playing VBG O + +O stop VB O +O the DT O +O music NN O + +O turn VB O +O off RP O +O music NN O + +O enough RB O + +O enough JJ O +O music NN O + +O repeat VB O + +O repeat VB O +O one CD O +O more JJR O +O time NN O + +O put VB O +O it PRP O +O on IN O +O repeat NN O +O mode NN O + +O play VB O +O this DT O +O track NN O +O once RB O +O again RB O + +O repeat VB O +O it PRP O + +O play VB O +O this DT O +O song NN O +O from IN O +O the DT O +O beginning NN O + +O repeat VB O +O it PRP O +O once RB O +O again RB O + +O play VB O +O again RB O +O from IN O +O the DT O +O very JJ O +O beginning NN O + +O repeat VB O +O this DT O +O track NN O + +O one CD O +O more JJR O +O time NN O + +O play VB O +O it PRP O +O again RB O + +O repeat VB O +O please UH O + +O repeat VB O +O this DT O +O track NN O +O one CD O +O more JJR O +O time NN O + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +O this DT O +O song NN O +O once RB O +O again RB O + +O repeat VB O +O the DT O +O song NN O + +O turn VB O +O on RP O +O repeat NN O +O for IN O +O this DT O +O song NN O + +O can MD O +O you PRP O +O repeat VB O +O it PRP O + +O can MD O +O you PRP O +O repeat VB O +O this DT O +O track NN O + +O turn VB O +O on RP O +O repeat NN O +O mode NN O +O for IN O +O this DT O +O song NN O + +O put VB O +O this DT O +O track NN O +O on IN O +O repeat NN O + +O repeat VB O +O this DT O +O song NN O + +O repeat VB O +O mode NN O +O for IN O +O this DT O +O track NN O + +O put VB O +O this DT O +O on IN O +O repeat NN O + +O could MD O +O you PRP O +O repeat VB O +O them PRP O + +O play VB O +O this DT O +O song NN O +O again RB O + +O repeat VB O +O this DT O +O song NN O +O once RB O +O again RB O + +O play VB O +O it PRP O +O one CD O +O more JJR O +O time NN O + +O let's VB O +O repeat PRP O +O this VB O +O track DT O + +O turn VB O +O on RP O +O repeat NN O +O mode NN O +O for IN O +O it PRP O + +O play VB O +O the DT O +O next JJ O +O one CD O + +O what's WP O +O the VBZ O +O next DT O +O one JJ O + +O skip VB O +O next RB O + +O skip VB O +O to IN O +O next JJ O + +O next JJ O +O track NN O + +O go VB O +O to IN O +O the DT O +O next JJ O + +O what's WP O +O next VBZ O + +O now RB O +O the DT O +O next JJ O +O one CD O + +O play VB O +O next RB O + +O the DT O +O next JJ O +O song NN O + +O skip VB O +O forward RB O + +O play VB O +O next JJ O +O track NN O + +O the DT O +O following VBG O +O song NN O + +O what's WP O +O the VBZ O +O next DT O +O song JJ O + +O go VB O +O to IN O +O the DT O +O next JJ O +O one CD O + +O go VB O +O forward RB O + +O next JJ O +O song NN O + +O skip VB O + +O play VB O +O the DT O +O next JJ O +O song NN O + +O the DT O +O next JJ O +O please UH O + +O next RB O +O please UH O + +O skip VB O +O this DT O +O song NN O + +O play VB O +O another DT O +O one NN O + +O next RB O + +O skip VB O +O to IN O +O the DT O +O next JJ O +O one CD O + diff --git a/TrainingFiles/song_train_file.txt b/TrainingFiles/song_train_file.txt new file mode 100644 index 000000000..5629080ed --- /dev/null +++ b/TrainingFiles/song_train_file.txt @@ -0,0 +1,2226 @@ +O add VB O +O this DT O +O song NN O +O to IN O +O my PRP$ O +O playlist NN O + +O put VB O +O it PRP O +O on IN O +O my PRP$ O +playlist Late JJ I +playlist Night JJ I +O playlist NN O + +O save VB O +O this DT O +O song NN O +O to IN O +O my PRP$ O +playlist Workout NNP I +O playlist NN O + +O move VB O +O it PRP O +O to IN O +O the DT O +playlist Gym NNP I +O playlist NN O + +O add VB O +O it PRP O +O to IN O +O the DT O +O playlist NN O +playlist Yoga NN I + +O save VB O +O this DT O +O track NN O +O in IN O +O my PRP$ O +O playlist NN O + +O put VB O +O it PRP O +O into IN O +O the DT O +O playlist NN O +playlist Running VBG I + +O now RB O +O play VBP O + +O play VB O +O this DT O + +O play VB O + +O could MD O +O you PRP O +O play VB O +O this DT O +O one NN O + +O I PRP O +O want VBP O +O you PRP O +O to TO O +O play VB O +O it PRP O + +O start VB O +O playing VBG O +O it PRP O + +O play VB O +O it PRP O + +O could MD O +O you PRP O +O play VB O +O it PRP O +O for IN O +O me PRP O + +O now RB O +O start VBP O +O playing VBG O + +O play VB O +O it PRP O + +O can MD O +O you PRP O +O play VB O +O it PRP O + +O and CC O +O play VB O +O it PRP O + +O shuffle VB O +O them PRP O + +O shuffle VB O +O this DT O +O playlist NN O + +O shuffle VB O +O mode NN O +O on IN O + +O turn VB O +O on RP O +O shuffle NN O +O mode NN O + +O shuffle VB O + +O play VB O +O some DT O +genre rock NN I +O music NN O + +O just RB O +O play VBP O +O music NN O +O for IN O +O me PRP O + +O play VBP O +O genre NN O +genre romance NN I + +O play VBP O +O song NN O +song The DT I +song Nights DT I + +O play VB O +O a DT O +O song NN O +song Another DT I +song Brick DT I +song in DT I +song the DT I +song Wall DT I + +O play VB O +song Ca NNP I +song Marche NNP I +O by IN O +artist Maitre NNP I +artist Gims NNP I + +O play VB O +O any DT O +O song NN O +O of IN O +artist Babbu NNP I +artist Maan NNP I +O from IN O +O my PRP$ O +O library NN O + +artist Eminem NNP I +O song NN O + +O song JJ O +genre pop NN I + +O play VB O +O the DT O +O album NN O +album Divorcio NNP I +O by IN O +artist Julio NNP I +artist Iglesia NNP I + +O play VB O +song Miracle NN I + +O I PRP O +O wanna MD O +O listen VB O +O to IN O +genre reggae NN I + +O play VB O +O some DT O +genre smooth JJ I +genre jazz JJ I + +O play VB O +song 6 CD I +song Words CD I +O by IN O +artist Wretch JJ I +artist 32 JJ I +O on IN O +service Spotify NNP I + +O play VB O +album Led NNP I +album Zeppelin NNP I +album two NNP I + +O reproduce VB O +O a DT O +O the DT O +O track NN O +song Monster NN I +O by IN O +artist Rihanna NNP I +O ft NN O +artist Eminem NNP I + +O I PRP O +O want VBP O +O you PRP O +O to TO O +O play VB O +O music NN O + +O Play VB O +artist Five CD I +artist Seconds CD I +artist of CD I +artist Summer CD I + +O play VBP O +O song NN O +O by IN O +artist Nicki NNP I +artist Minaj NNP I + +O let's VB O +O hear PRP O +artist The VB I +artist Beatles VB I + +O play VB O +song Do VBP I +song I VBP I +song Wanna VBP I +song Know VBP I +O by IN O +artist Arctic NNP I +artist Monkeys NNP I + +O play VBP O +artist Queens NNPS I +artist of NNPS I +artist the NNPS I +artist stone NNPS I +artist age NNPS I + +O play VB O +artist Rihanna NNP I +song Unfaithful NNP I +O for IN O +O me PRP O + +O play VB O +song Ignition NN I +O by IN O +artist R NN I +artist Kelly NN I + +O I'd PRP O +O like MD O +O to VB O +O listen TO O +O to VB O +genre jazz IN I + +O I PRP O +O want VBP O +O to TO O +O hear VB O +O a DT O +O song NN O + +O please UH O +O play VB O +O song NN O +song Lost VBN I +song in VBN I +song You VBN I + +O play VB O +O album NN O +album The DT I +album marshall DT I +album mathers DT I +O by IN O +artist Eminem NNP I + +O play VB O +song Hard NNP I +song Times NNP I +O by IN O +artist David NNP I +artist Newman NNP I + +O let VB O +O me PRP O +O hear VB O +O some DT O +O music NN O +O by IN O +artist Coldplay NNP I + +genre country NN I +O song NN O + +O play VBP O +O album NN O +album Purple JJ I +album Rain JJ I +O on IN O +service Spotify NNP I + +O can MD O +O you PRP O +O turn VB O +O on RP O +O my PRP$ O +O music NN O + +O play VBP O +O music NN O +O by IN O +artist Megan NNP I +artist Trainer NNP I + +O play VB O +song End NN I +song of NN I +song the NN I +song World NN I +O by IN O +artist The DT I +artist living DT I +artist end DT I + +O play VB O +artist Metallica NNP I + +O play VBP O +O song NN O +O from IN O +artist Rihanna NNP I + +O play VB O +O a DT O +artist U2 JJ I +O song NN O + +O play VB O +O a DT O +O song NN O +O from IN O +service Spotify NNP I + +O play VB O +album Tears NNS I +album in NNS I +album Heaven NNS I +O by IN O +artist Eric NNP I +artist Clapton NNP I + +O play VBP O +O song NN O +O by IN O +artist Eminem NNP I +O and CC O +artist Rihanna NNP I + +O play VB O +song Miracles NNS I +O from IN O +O phone NN O + +O switch VB O +O to TO O +playlist workout NN I +O music NN O + +O play VBP O +O song NN O +O from IN O +O the DT O +O album NN O +album Address NN I + +O play VB O +O some DT O +O good JJ O +O music NN O + +O play VB O +song Black NNP I +song Widow NNP I +O by IN O +artist Iggy NNP I +artist Azalea NNP I +O song NN O +O on IN O +service Spotify NNP I + +O play VB O +O the DT O +O song NN O +song Love VB I +song Me VB I +song Like VB I +song You VB I +song Do VB I + +O play VB O +O some DT O +genre rock NN I +genre n NN I +genre roll NN I +O music NN O + +O play VB O +artist Drake NNP I + +O start VB O +O playing VBG O +song The DT I +song Lost DT I +O song NN O + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +O a DT O +O song NN O + +O play VBP O +O album NN O +album Songs NNP I +album for NNP I +album the NNP I +album Deaf NNP I +O by IN O +artist Queens NNPS I +artist of NNPS I +artist the NNPS I +artist stone NNPS I +artist age NNPS I + +artist Tom NNP I +artist Waits NNP I +O songs NNS O + +O play VB O +O a DT O +genre country NN I +O song NN O + +O play VB O +O the DT O +O album NN O +album Un NNP I +album monde NNP I +album meilleur NNP I +O by IN O +artist Kids NNPS I +artist United NNPS I + +O play VB O +artist Red NNP I +artist Hot NNP I +artist Chili NNP I +artist Peppers NNP I + +O play VBP O +O song NN O +O by IN O +artist Willie NNP I +artist Nelson NNP I + +O play VB O +O something NN O +O by IN O +artist Rihanna NNP I + +O play VB O +O some DT O +genre rock NN I +genre and NN I +genre roll NN I + +O play VBP O +O song NN O +song Roxanne NNP I + +O play VB O +O Madonna's NNP O +song Like POS I +song a POS I +song Virgin POS I + +O play VBP O +O song NN O +song How WRB I +song do WRB I +song I WRB I +song Live WRB I + +O play VB O +O album NN O +album Madonna NNP I + +O play VB O +genre country NN I +genre blues NN I + +O music NN O +O play NN O +song Addicted VBN I +song to VBN I +song Love VBN I + +O play VB O +genre hip NN I +genre hop NN I + +O put VB O +O on RP O +O my PRP$ O +playlist late JJ I +playlist night JJ I +O playlist NN O + +O play VBP O +O genre NN O +genre party NN I + +O play VBP O +O genre NN O +genre blues NNS I + +O can MD O +O you PRP O +O play VB O +O the DT O +O song NN O +song Still RB I +song into RB I +song You RB I + +O play VBP O +genre jazz NN I +O on IN O +service Spotify NNP I + +O play VB O +artist Pearl NNP I +artist Jam NNP I + +O play VB O +artist Britney NNP I +artist Spears NNP I +song Me PRP I +song Against PRP I +song the PRP I +song Music PRP I +O feat NN O +artist Madonna NNP I + +O play VB O +O me PRP O +O some DT O +sort good JJ I +O music NN O + +O I PRP O +O would MD O +O like VB O +O to TO O +O hear VB O +O some DT O +O music NN O + +O play VB O +sort best JJS I +artist Metallica NNP I + +O play VBP O +O song NN O +song Alive NNP I + +O play VB O +song It’s PRP I +song Now PRP I +song or PRP I +song Never PRP I + +O play VB O +song Faded VBN I +O by IN O +artist ZHU NNP I +O song NN O +O on IN O +service Spotify NNP I + +O play VB O +O the DT O +O song NN O +song Chasing VBG I +song the VBG I +song Dragon VBG I + +O play VB O +O album NN O +album Graceland NNP I +O by IN O +artist Paul NNP I +artist Simon NNP I + +O let VB O +O me PRP O +O hear VB O +O something NN O +O from IN O +artist George NNP I +artist Strait NNP I + +artist Bob NNP I +artist Marley NNP I +O play VB O +O the DT O +O song NN O +O please NN O + +O play VB O +O album NN O +album Power NNP I +album Corruption NNP I +album Lies NNP I + +O play VBP O +O music NN O +O by IN O +artist Marco NNP I +artist Mengoni NNP I + +O play VB O +song Hello UH I + +O start VB O +O up RP O +O the DT O +O track NN O +song Come VB I +song Together VB I + +O play VB O +genre jazz NN I + +O play VB O +O a DT O +genre pop NN I +O song NN O + +O play VB O +song Bad JJ I +O from IN O +artist Michael NNP I +artist Jackson NNP I + +O play VB O +O a DT O +genre romantic JJ I +O song NN O + +O play VB O +O the DT O +O song NN O +song Gorilla NNP I + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +song Temperature NN I +O by IN O +artist Sean NNP I +artist Paul NNP I + +O play VB O +song Animals NNS I +O by IN O +artist Maroon NN I +artist 5 NN I + +O play VBP O +O songs NNS O +O by IN O +artist Ellie NNP I +artist Goulding NNP I + +O play VBP O +song Never RB I +song listen RB I +artist Julia NNP I +artist Othmer NNP I + +O play VB O +O album NN O +album After IN I +album the IN I +album Gold IN I +album Rush IN I + +O play VB O +song Do VBP I +song I VBP I +song Wanna VBP I +song Know VBP I +O by IN O +artist Arctic NNP I +artist Monkeys NNP I +O song NN O +O on IN O +service Spotify NNP I + +O play VB O +O album NN O +album Madonna NNP I +O by IN O +album Madonna NNP I + +O play VB O +O Adele's NNP O +song Hello POS I + +O play VBP O +O song NN O +song In IN I +song Da IN I +song Club IN I + +O play VB O +O me PRP O +O a DT O +O song NN O +O by IN O +artist Aventura NNP I + +O play VB O +artist Justin NNP I +artist Bieber NNP I + +O change VB O +O to IN O +O my PRP$ O +playlist workout NN I +O music NN O + +O play VBP O +O song NN O +O from IN O +service iTunes NNS I + +O play VB O +song Miracles NNPS I +O from IN O +service Apple NNP I +service Music NNP I + +O can MD O +O you PRP O +O play VB O +O song NN O +song Dark JJ I +song Horse JJ I + +O play VB O +album Empty JJ I +album Sky JJ I +O by IN O +artist Elton NNP I +artist John NNP I + +O play VBP O +O song NN O +song Killer NNP I +song Queen NNP I +O by IN O +artist Queen NNP I + +O play VB O +song She's PRP I +song Got PRP I +song the PRP I +song Look PRP I +O by NNP O +artist Roxette IN I + +O play VB O +genre Gospel NN I +O songs NNS O +O on IN O +service Spotify NNP I + +O play VB O +artist Amy NNP I +artist Winehouse NNP I + +O play VB O +song Dangerous JJ I +O feat NN O +artist Sam NNP I +artist Martin NNP I +O by IN O +artist David NNP I +artist Guetta NNP I +O song NN O +O on IN O +service Spotify NNP I + +O play VBP O +O album NN O +album Ramones NNP I +O on IN O +service Spotify NNP I + +O play VB O +O something NN O +O by IN O +artist The DT I +artist Rolling DT I +artist Stones DT I + +O play VB O +O a DT O +O song NN O +O on IN O +service Spotify NNP I + +O can MD O +O you PRP O +O play VB O +O some DT O +O music NN O + +O turn VB O +O on RP O +playlist meditative JJ I +O tracks NNS O + +O play VB O +O the DT O +O song NN O +song Encantadora NNP I + +O play VB O +O my PRP$ O +playlist workout NN I +O playlist NN O + +O turn VB O +O on RP O +O a DT O +O song NN O + +O play VB O +sort greatest JJS I +O hits NNS O +O by IN O +artist Metallica NNP I + +O play VB O +O album NN O +album London NNP I +album calling NNP I +O by IN O +artist The DT I +artist Clash DT I + +O play VB O +O the DT O +O song NN O +song Bird NNP I + +O play VB O +artist Maroon NN I +artist 5 NN I + +O play VBP O +O songs NNS O +O from IN O +O playlist NN O +playlist Hot NNP I +playlist Hits NNP I +playlist UK NNP I + +O play VB O +O some DT O +genre relaxing VBG I +O music NN O + +O show VBP O +sort best JJS I +O songs NNS O +O by IN O +artist Rihanna NNP I + +O can MD O +O you PRP O +O play VB O +song Irreplaceable JJ I +O by IN O +artist Beyonce NNP I + +O play VB O +playlist my PRP$ I +playlist faves PRP$ I +O playlist NN O + +O put VBN O +O on RP O +O some DT O +artist Rolling NNP I +artist Stones NNP I + +O music NN O +song Grenade NNP I +O in IN O +O my PRP$ O +O library NN O + +O play VB O +artist Guns NNPS I +artist N NNPS I +artist Roses NNPS I + +O Play VB O +playlist chill NN I +O playlist NN O + +O let's VB O +O hear PRP O +artist Wilco VB I + +O play VB O +song What WP I +song Does WP I +song the WP I +song Fox WP I +song Say WP I + +O play VB O +O the DT O +song Mean NNP I +song Kitty NNP I +O song NN O + +O play VBP O +O song NN O +song Thriller NNP I + +O play VBP O +O song NN O +song The DT I +song Cantos DT I +song de DT I +song Mallorca DT I + +O play VB O +genre Experimental JJ I +O songs NNS O +O on IN O +service Spotify NNP I + +O play VBP O +O song NN O +song Poker NNP I +song Face NNP I +O by IN O +artist Lady NNP I +artist Gaga NNP I + +O I'd PRP O +O like MD O +O to VB O +O listen TO O +O to VB O +O music IN O + +O turn VB O +O on RP O +O the DT O +O music NN O + +O play VB O +song Anaconda NNP I +O by IN O +artist Nicki NNP I +artist Minaj NNP I + +O play VB O +song Apparently RB I +O by IN O +artist J NNP I +artist Cole NNP I + +O play VB O +song Thriller NNP I +artist Michael NNP I +artist Jackson NNP I + +O play VB O +song Keep VB I +song On VB I +song Walking VB I +O by IN O +artist CeCe NNP I + +O play VB O +O the DT O +O song JJ O +song Nothing NN I +song Gonna NN I +song Stop NN I +song Us NN I +song Now NN I + +O play VB O +artist Beyonce NNP I + +O can MD O +O you PRP O +O play VB O +song How WRB I +song You WRB I +song Remind WRB I +song Me WRB I + +song Hollaback NNP I +song Girl NNP I +O music NN O + +O play VB O +genre RnB NN I + +O play VB O +artist Meghan NNP I +artist Trainor NNP I + +O play VB O +O album NN O +album Master NNP I +album of NNP I +album Puppets NNP I + +O play VB O +O the DT O +O song JJ O +song Pots NNS I +song of NNS I +song gold NNS I +O by IN O +O the DT O +O artist NN O +artist Mamas NNP I +artist Gun NNP I + +O play VB O +O the DT O +O album NN O +album The DT I +album Wall DT I +O on IN O +service Spotify NNP I + +O play VB O +O some DT O +genre romantic JJ I +O songs NNS O + +O play VB O +song Best JJS I +song of JJS I +song You JJS I +O by IN O +artist Foo NNP I +artist Fighters NNP I + +O play VB O +O me PRP O +O some DT O +genre relaxing VBG I +O music NN O + +O play VB O +O artist NN O +artist ACDC NNP I + +O can MD O +O you PRP O +O open VB O +song Shape NN I +song of NN I +song My NN I +song Heart NN I +O in IN O +service Google NNP I +service music NNP I + +O play VB O +O artist NN O +artist Meghan NNP I +artist Trainor NNP I + +O can MD O +O you PRP O +O open VB O +song Careless NNP I +song Whisper NNP I +O song NN O + +O play VBP O +O song NN O +artist Krystof NNP I +song Tak NNP I +song Pojd NNP I +song Hlwdat NNP I +song Breh NNP I + +O play VB O +song Foolin NNP I +O by IN O +artist Changing VBG I +artist Faces VBG I + +O play VBP O +O music NN O +O for IN O +O me PRP O + +O play VBP O +O album NN O +album Sounds VBZ I +album Good VBZ I +album Field VBZ I +O by IN O +artist Five CD I +artist Seconds CD I +artist of CD I +artist Summer CD I + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +song Crazy NNP I +O performed VBN O +O by IN O +artist Aerosmith NNP I + +artist Cher NNP I +song Believe VB I + +O play VB O +song Now RB I +song Call RB I +song Mom RB I + +O play VB O +song Yesterday NN I +O by IN O +artist Beatles NNP I + +artist Bart NNP I +artist Baker NNP I +O song NN O + +O play VB O +O the DT O +sort newest JJS I +O song NN O +O by IN O +artist Eminem NNP I + +O play VB O +artist Laura NNP I +artist Pausini NNP I + +O play VB O +artist The DT I +artist Police DT I + +O play VB O +O album NN O +album Fly NN I +album by NN I +album Night NN I +O by IN O +artist Rush NNP I + +O play VB O +song Focus NN I +O by IN O +artist Ariana NNP I +artist Grande NNP I + +song Blank NNP I +song Space NNP I +O song NN O + +song Can't MD I +song Feel MD I +song My MD I +song Face MD I +O on NNP O +service Google IN I +service Music IN I + +O play VBP O +O song NN O +O by IN O +artist Shaggy NNP I + +O play VB O +song Thinking VBG I +song Out VBG I +song Loud VBG I +O by IN O +artist Ed NNP I +artist Sheeran NNP I + +O play VB O +O a DT O +O song NN O +O from IN O +O my PRP$ O +O music NN O +O library NN O + +O the DT O +O song NN O +song Grew VBN I +O by IN O +artist Bruno NNP I +artist Mars NNP I + +O play VB O +O album NN O +album Appetite NN I +album for NN I +album destruction NN I +O by IN O +artist Guns NNPS I +artist n NNPS I +artist Roses NNPS I + +O play VBP O +O album NN O +album Horses NNS I + +O play VB O +O me PRP O +O some DT O +artist Michael NNP I +artist Jackson NNP I + +O play VB O +song Elastic NNP I +song Heart NNP I +O by IN O +artist Sia NNP I +O song NN O +O on IN O +service Spotify NNP I + +O play VB O +O me PRP O +O some DT O +genre country NN I +O music NN O + +O play VB O +O a DT O +O song NN O +song Tera NNP I +song Mera NNP I +song Rishta NNP I + +O a DT O +O song NN O +song Still RB I +song Loving RB I +song You RB I + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +song Disturbia NNP I +O song NN O + +O play VB O +song Harder RBR I +song Better RBR I +song Faster RBR I + +O can MD O +O I PRP O +O listen VB O +O to IN O +song Macarena NNP I + +O play VB O +song Song NNP I +song of NNP I +song Joy NNP I + +O play VB O +song Miracle NN I +O from IN O +service Apple NNP I +service Music NNP I + +O play VB O +song Bohemian NNP I +song Rhapsody NNP I +O by IN O +artist Queen NNP I + +O play VB O +O music NN O + +O can MD O +O you PRP O +O play VB O +song It PRP I +song Must PRP I +song Have PRP I +song Been PRP I +song Love PRP I + +O can MD O +O you PRP O +O play VB O +genre country NN I +O music NN O + +O let's VB O +O listen PRP O +O to VB O +song Come TO I +song together TO I +O by RB O +artist Beatles IN I + +O play VBP O +O songs NNS O +O by IN O +artist Enrique NNP I +artist Iglesias NNP I + +O play VB O +O an DT O +O album NN O +O by IN O +artist Madonna NNP I + +O play VB O +artist Nirvana NNP I + +O please UH O +O play VB O +O song NN O +genre Secret NNP I +genre Love NNP I +genre Song NNP I + +O can MD O +O you PRP O +O play VB O +O the DT O +O song JJ O +song Beauty NNP I +song and NNP I +song a NNP I +song Beat NNP I + +O play VB O +song I PRP I +song Will PRP I +song Always PRP I +song Love PRP I +song You PRP I +O from IN O +artist Whitney NNP I +artist Houston NNP I + +O can MD O +O you PRP O +O start VB O +O playing VBG O +O music NN O + +O play VB O +song 21 CD I +O by IN O +artist Adele NNP I +O on IN O +service Spotify NNP I + +O play VB O +artist Rihanna NNP I +O on IN O +service Spotify NNP I + +O play VB O +O the DT O +O song NN O +song Back RB I +song in RB I +song time RB I +O by IN O +artist Pitbull NNP I + +O play VB O +O artist NN O +artist A DT I +artist great DT I +artist big DT I +artist world DT I + +O can MD O +O I PRP O +O listen VB O +O to IN O +song Gangsta's NNP I +song Paradise NNP I +O song NNP O + +O play VB O +song r&b NN I +O music NN O + +O play NN O +song Do VBP I +song you VBP I +song Mind VBP I +O by IN O +artist Changing VBG I +artist Faces VBG I + +O put VBN O +O on RP O +O some DT O +O music NN O + +O playing VBG O +artist Mozart NNP I +O song NN O + +O play VB O +artist The DT I +artist Antlers DT I + +O can MD O +O you PRP O +O play VB O +artist Adele NNP I + +O play VBP O +song Blackbird NNP I +O from IN O +O SD NN O +O card NN O + +O play VBP O +O music NN O +O on IN O +service Spotify NNP I + +O play VB O +artist One CD I +artist Direction CD I + +O I'd PRP O +O like MD O +O to VB O +O listen TO O +O to VB O +O some IN O +O music DT O + +O I PRP O +O want VBP O +O to TO O +O hear VB O +song Owner NN I +song of NN I +song a NN I +song Lonely NN I +song Heart NN I + +song No DT I +song Scrubs DT I +O song NN O +O play NN O + +O play VB O +O me PRP O +O some DT O +genre jazz NN I + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +song Bleeding NNP I +song Love NNP I + +O play VBP O +O song NN O +song She's PRP I +song Got PRP I +song the PRP I +song Look PRP I + +O play VB O +O a DT O +O song NN O + +O play VB O +genre R&B NNP I + +O play VB O +song Let VB I +song Her VB I +song Go VB I +O by IN O +artist Passenger NNP I +O song NN O +O on IN O +service Spotify NNP I + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +artist Ariana NNP I +artist Grande NNP I + +O can MD O +O you PRP O +O please UH O +O play VB O +O a DT O +O song NN O +O from IN O +O my PRP$ O +playlist favourite JJ I +O playlist NN O + +O songs NNS O +O by IN O +artist Tom NNP I +artist Waits NNP I + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +O the DT O +O song JJ O +song New NNP I +song York NNP I + +O play VB O +album Abbey NNP I +album Road NNP I +O remastered VBN O +O by IN O +artist The DT I +artist Beatles DT I + +O I'd PRP O +O like MD O +O to VB O +O listen TO O +O to VB O +genre classic IN I +genre opera IN I + +O play VB O +song Home NN I +song To NN I +song Mama NN I +O by IN O +artist Justin NNP I +artist Bieber NNP I +O song NN O +O on IN O +service Spotify NNP I + +O play VBP O +O genre NN O +genre RnB IN I + +O play VB O +O the DT O +O artist NN O +artist Rush NN I + +O play VB O +artist Theory NN I +artist of NN I +artist a NN I +artist Deadman NN I + +genre rock NN I +O compositions NNS O + +O play VB O +song I PRP I +song See PRP I +song Fire PRP I +O by IN O +artist Ed NNP I +artist Sheeran NNP I +O song NN O +O on IN O +service Spotify NNP I + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +O something NN O +O by IN O +artist Madonna NNP I + +O play VB O +O music NN O +O by IN O +artist Vanessa NNP I +artist Paradis NNP I + +O play VB O +O album NN O +album In IN I +album the IN I +album jungle IN I +album groove IN I + +O play VB O +O album NN O +album Thriller NNP I + +O play VBP O +O song NN O +O by IN O +artist Lil NNP I +artist Wayne NNP I + +O play VBP O +O album NN O +album Born VBN I +album to VBN I +album Run VBN I +O by IN O +artist Bruce NNP I +artist Springsteen NNP I +O on IN O +service Spotify NNP I + +O play VBP O +artist Imagine NNP I +artist Dragons NNP I + +O will MD O +O you PRP O +O please UH O +O play VB O +song Tik NNP I +song Tok NNP I + +O play VB O +O a DT O +genre rock NN I +O song NN O + +O play VB O +artist Maroon NNP I +artist 5 NNP I +O on IN O +service Spotify NNP I + +O play VB O +O album NN O +album Nevermind NNP I +O by IN O +artist Nirvana NNP I + +O play VBP O +artist françoise NN I +artist hardy NN I + +song Live VB I +song While VB I +song We VB I +song are VB I +song Young VB I +O song NN O + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +O some DT O +O music NN O + +O play VB O +song Budapest NNP I + +O play VB O +song Sweet NNP I +song Dreams NNP I +O by IN O +artist Eurythmics NNP I + +O play VB O +O the DT O +playlist 50 CD I +playlist Great CD I +playlist Beatles CD I +playlist Songs CD I +O playlist NN O +O in IN O +service Prime NNP I +service Music NNP I + +O continue VB O +O playing VBG O + +O start VB O +O music NN O +O again RB O + +O resume VB O + +O resume VB O +O it PRP O + +O resume VB O +O playing VBG O + +O continue VB O +O the DT O +O music NN O + +O continue VB O + +O resume VB O +O music NN O + +O restart VB O +O music NN O + +O resume VB O +O this DT O +O song NN O + +O can MD O +O you PRP O +O pause VB O +O it PRP O + +O pause VB O +O it PRP O + +O pause VB O +O playing VBG O + +O pause VB O +O song NN O + +O please UH O +O pause VB O + +O pause VB O + +O put VB O +O it PRP O +O on IN O +O pause NN O + +O pause VB O +O this DT O +O song NN O + +O skip VB O +O to IN O +O the DT O +O previous JJ O +O song NN O + +O go VB O +O back RB O + +O skip VB O +O backward RB O + +O go VB O +O back RB O +O to IN O +O the DT O +O previous JJ O +O station NN O + +O back VB O +O up RP O +O a DT O +O track NN O + +O go VB O +O to IN O +O previous JJ O + +O previous JJ O +O song NN O + +O go VB O +O back RB O +O to IN O +O previous JJ O +O song NN O + +O skip VB O +O to IN O +O the DT O +O back NN O + +O back RB O + +O go VB O +O back RB O +O to IN O +O previous JJ O + +O previous JJ O + +O previous JJ O +O station NN O + +O skip VB O +O back RB O + +O skip VB O +O to IN O +O previous JJ O + +O remember VB O +O this DT O +O song NN O + +O fave VB O +O this DT O +O song NN O + +O it's PRP O +O my VBZ O +O favourite PRP$ O + +O add VB O +O this DT O +O song NN O +O to IN O +O favorites NNS O + +O I PRP O +O love VBP O +O this DT O +O song NN O + +O put VB O +O this DT O +O track NN O +O into IN O +O my PRP$ O +O favourites NNS O + +O add VB O +O to IN O +O faves NNS O + +O add VB O +O it PRP O +O to IN O +O my PRP$ O +O favourites NNS O + +O favourite JJ O +O this DT O +O song NN O + +O could MD O +O you PRP O +O mark VB O +O it PRP O +O as IN O +O favourite JJ O + +O add VB O +O this DT O +O song NN O +O to IN O +O my PRP$ O +O favourites NNS O + +O stop VB O +O it PRP O + +O could MD O +O you PRP O +O stop VB O + +O music NN O +O off RP O + +O can MD O +O you PRP O +O stop VB O +O the DT O +O music NN O + +O stop VB O + +O stop VB O +O playing VBG O + +O stop VB O +O the DT O +O music NN O + +O turn VB O +O off RP O +O music NN O + +O enough RB O + +O enough JJ O +O music NN O + +O repeat VB O + +O repeat VB O +O one CD O +O more JJR O +O time NN O + +O put VB O +O it PRP O +O on IN O +O repeat NN O +O mode NN O + +O play VB O +O this DT O +O track NN O +O once RB O +O again RB O + +O repeat VB O +O it PRP O + +O play VB O +O this DT O +O song NN O +O from IN O +O the DT O +O beginning NN O + +O repeat VB O +O it PRP O +O once RB O +O again RB O + +O play VB O +O again RB O +O from IN O +O the DT O +O very JJ O +O beginning NN O + +O repeat VB O +O this DT O +O track NN O + +O one CD O +O more JJR O +O time NN O + +O play VB O +O it PRP O +O again RB O + +O repeat VB O +O please UH O + +O repeat VB O +O this DT O +O track NN O +O one CD O +O more JJR O +O time NN O + +O I PRP O +O want VBP O +O to TO O +O listen VB O +O to IN O +O this DT O +O song NN O +O once RB O +O again RB O + +O repeat VB O +O the DT O +O song NN O + +O turn VB O +O on RP O +O repeat NN O +O for IN O +O this DT O +O song NN O + +O can MD O +O you PRP O +O repeat VB O +O it PRP O + +O can MD O +O you PRP O +O repeat VB O +O this DT O +O track NN O + +O turn VB O +O on RP O +O repeat NN O +O mode NN O +O for IN O +O this DT O +O song NN O + +O put VB O +O this DT O +O track NN O +O on IN O +O repeat NN O + +O repeat VB O +O this DT O +O song NN O + +O repeat VB O +O mode NN O +O for IN O +O this DT O +O track NN O + +O put VB O +O this DT O +O on IN O +O repeat NN O + +O could MD O +O you PRP O +O repeat VB O +O them PRP O + +O play VB O +O this DT O +O song NN O +O again RB O + +O repeat VB O +O this DT O +O song NN O +O once RB O +O again RB O + +O play VB O +O it PRP O +O one CD O +O more JJR O +O time NN O + +O let's VB O +O repeat PRP O +O this VB O +O track DT O + +O turn VB O +O on RP O +O repeat NN O +O mode NN O +O for IN O +O it PRP O + +O play VB O +O the DT O +O next JJ O +O one CD O + +O what's WP O +O the VBZ O +O next DT O +O one JJ O + +O skip VB O +O next RB O + +O skip VB O +O to IN O +O next JJ O + +O next JJ O +O track NN O + +O go VB O +O to IN O +O the DT O +O next JJ O + +O what's WP O +O next VBZ O + +O now RB O +O the DT O +O next JJ O +O one CD O + +O play VB O +O next RB O + +O the DT O +O next JJ O +O song NN O + +O skip VB O +O forward RB O + +O play VB O +O next JJ O +O track NN O + +O the DT O +O following VBG O +O song NN O + +O what's WP O +O the VBZ O +O next DT O +O song JJ O + +O go VB O +O to IN O +O the DT O +O next JJ O +O one CD O + +O go VB O +O forward RB O + +O next JJ O +O song NN O + +O skip VB O + +O play VB O +O the DT O +O next JJ O +O song NN O + +O the DT O +O next JJ O +O please UH O + +O next RB O +O please UH O + +O skip VB O +O this DT O +O song NN O + +O play VB O +O another DT O +O one NN O + +O next RB O + +O skip VB O +O to IN O +O the DT O +O next JJ O +O one CD O + diff --git a/TrainingFiles/train.crfsuite.txt b/TrainingFiles/train.crfsuite.txt new file mode 100644 index 000000000..a1f17a174 --- /dev/null +++ b/TrainingFiles/train.crfsuite.txt @@ -0,0 +1,2226 @@ +O w[0]=add w[1]=this w[2]=song wl[0]=add wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=a p1[1]=t p1[2]=s p2[0]=ad p2[1]=th p2[2]=so p3[0]=add p3[1]=thi p3[2]=son p4[0]= p4[1]=this p4[2]=song s1[0]=d s1[1]=s s1[2]=g s2[0]=dd s2[1]=is s2[2]=ng s3[0]=add s3[1]=his s3[2]=ong s4[0]= s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=add|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song w[1..4]=to w[1..4]=my __BOS__ +O w[-1]=add w[0]=this w[1]=song w[2]=to wl[-1]=add wl[0]=this wl[1]=song wl[2]=to pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=a p1[0]=t p1[1]=s p1[2]=t p2[-1]=ad p2[0]=th p2[1]=so p2[2]=to p3[-1]=add p3[0]=thi p3[1]=son p3[2]= p4[-1]= p4[0]=this p4[1]=song p4[2]= s1[-1]=d s1[0]=s s1[1]=g s1[2]=o s2[-1]=dd s2[0]=is s2[1]=ng s2[2]=to s3[-1]=add s3[0]=his s3[1]=ong s3[2]= s4[-1]= s4[0]=this s4[1]=song s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=add|this w[0]|w[1]=this|song w[1]|w[2]=song|to pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[1..4]=song w[1..4]=to w[1..4]=my w[1..4]=playlist +O w[-2]=add w[-1]=this w[0]=song w[1]=to w[2]=my wl[-2]=add wl[-1]=this wl[0]=song wl[1]=to wl[2]=my pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=t p1[0]=s p1[1]=t p1[2]=m p2[-2]=ad p2[-1]=th p2[0]=so p2[1]=to p2[2]=my p3[-2]=add p3[-1]=thi p3[0]=son p3[1]= p3[2]= p4[-2]= p4[-1]=this p4[0]=song p4[1]= p4[2]= s1[-2]=d s1[-1]=s s1[0]=g s1[1]=o s1[2]=y s2[-2]=dd s2[-1]=is s2[0]=ng s2[1]=to s2[2]=my s3[-2]=add s3[-1]=his s3[0]=ong s3[1]= s3[2]= s4[-2]= s4[-1]=this s4[0]=song s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=add|this w[-1]|w[0]=this|song w[0]|w[1]=song|to w[1]|w[2]=to|my pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[1..4]=to w[1..4]=my w[1..4]=playlist +O w[-2]=this w[-1]=song w[0]=to w[1]=my w[2]=playlist wl[-2]=this wl[-1]=song wl[0]=to wl[1]=my wl[2]=playlist pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=PRP$ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=LL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=s p1[0]=t p1[1]=m p1[2]=p p2[-2]=th p2[-1]=so p2[0]=to p2[1]=my p2[2]=pl p3[-2]=thi p3[-1]=son p3[0]= p3[1]= p3[2]=pla p4[-2]=this p4[-1]=song p4[0]= p4[1]= p4[2]=play s1[-2]=s s1[-1]=g s1[0]=o s1[1]=y s1[2]=t s2[-2]=is s2[-1]=ng s2[0]=to s2[1]=my s2[2]=st s3[-2]=his s3[-1]=ong s3[0]= s3[1]= s3[2]=ist s4[-2]=this s4[-1]=song s4[0]= s4[1]= s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=this|song w[-1]|w[0]=song|to w[0]|w[1]=to|my w[1]|w[2]=my|playlist pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[-4..-1]=song w[1..4]=my w[1..4]=playlist +O w[-2]=song w[-1]=to w[0]=my w[1]=playlist wl[-2]=song wl[-1]=to wl[0]=my wl[1]=playlist pos[-2]=NN pos[-1]=IN pos[0]=PRP$ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=s p1[-1]=t p1[0]=m p1[1]=p p2[-2]=so p2[-1]=to p2[0]=my p2[1]=pl p3[-2]=son p3[-1]= p3[0]= p3[1]=pla p4[-2]=song p4[-1]= p4[0]= p4[1]=play s1[-2]=g s1[-1]=o s1[0]=y s1[1]=t s2[-2]=ng s2[-1]=to s2[0]=my s2[1]=st s3[-2]=ong s3[-1]= s3[0]= s3[1]=ist s4[-2]=song s4[-1]= s4[0]= s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|to w[-1]|w[0]=to|my w[0]|w[1]=my|playlist pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[-4..-1]=song w[-4..-1]=to w[1..4]=playlist +O w[-2]=to w[-1]=my w[0]=playlist wl[-2]=to wl[-1]=my wl[0]=playlist pos[-2]=IN pos[-1]=PRP$ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=m p1[0]=p p2[-2]=to p2[-1]=my p2[0]=pl p3[-2]= p3[-1]= p3[0]=pla p4[-2]= p4[-1]= p4[0]=play s1[-2]=o s1[-1]=y s1[0]=t s2[-2]=to s2[-1]=my s2[0]=st s3[-2]= s3[-1]= s3[0]=ist s4[-2]= s4[-1]= s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|my w[-1]|w[0]=my|playlist pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=this w[-4..-1]=song w[-4..-1]=to w[-4..-1]=my __EOS__ + +O w[0]=put w[1]=it w[2]=on wl[0]=put wl[1]=it wl[2]=on pos[0]=VB pos[1]=PRP pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=i p1[2]=o p2[0]=pu p2[1]=it p2[2]=on p3[0]=put p3[1]= p3[2]= p4[0]= p4[1]= p4[2]= s1[0]=t s1[1]=t s1[2]=n s2[0]=ut s2[1]=it s2[2]=on s3[0]=put s3[1]= s3[2]= s4[0]= s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|it w[1]|w[2]=it|on pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=on w[1..4]=my w[1..4]=Late __BOS__ +O w[-1]=put w[0]=it w[1]=on w[2]=my wl[-1]=put wl[0]=it wl[1]=on wl[2]=my pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=PRP$ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=i p1[1]=o p1[2]=m p2[-1]=pu p2[0]=it p2[1]=on p2[2]=my p3[-1]=put p3[0]= p3[1]= p3[2]= p4[-1]= p4[0]= p4[1]= p4[2]= s1[-1]=t s1[0]=t s1[1]=n s1[2]=y s2[-1]=ut s2[0]=it s2[1]=on s2[2]=my s3[-1]=put s3[0]= s3[1]= s3[2]= s4[-1]= s4[0]= s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|it w[0]|w[1]=it|on w[1]|w[2]=on|my pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|PRP$ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=on w[1..4]=my w[1..4]=Late w[1..4]=Night +O w[-2]=put w[-1]=it w[0]=on w[1]=my w[2]=Late wl[-2]=put wl[-1]=it wl[0]=on wl[1]=my wl[2]=late pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=PRP$ pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LL shape[0]=LL shape[1]=LL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=i p1[0]=o p1[1]=m p1[2]=L p2[-2]=pu p2[-1]=it p2[0]=on p2[1]=my p2[2]=La p3[-2]=put p3[-1]= p3[0]= p3[1]= p3[2]=Lat p4[-2]= p4[-1]= p4[0]= p4[1]= p4[2]=Late s1[-2]=t s1[-1]=t s1[0]=n s1[1]=y s1[2]=e s2[-2]=ut s2[-1]=it s2[0]=on s2[1]=my s2[2]=te s3[-2]=put s3[-1]= s3[0]= s3[1]= s3[2]=ate s4[-2]= s4[-1]= s4[0]= s4[1]= s4[2]=Late 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=put|it w[-1]|w[0]=it|on w[0]|w[1]=on|my w[1]|w[2]=my|Late pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=put w[-4..-1]=it w[1..4]=my w[1..4]=Late w[1..4]=Night w[1..4]=playlist +O w[-2]=it w[-1]=on w[0]=my w[1]=Late w[2]=Night wl[-2]=it wl[-1]=on wl[0]=my wl[1]=late wl[2]=night pos[-2]=PRP pos[-1]=IN pos[0]=PRP$ pos[1]=JJ pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=LL shape[0]=LL shape[1]=ULLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=i p1[-1]=o p1[0]=m p1[1]=L p1[2]=N p2[-2]=it p2[-1]=on p2[0]=my p2[1]=La p2[2]=Ni p3[-2]= p3[-1]= p3[0]= p3[1]=Lat p3[2]=Nig p4[-2]= p4[-1]= p4[0]= p4[1]=Late p4[2]=Nigh s1[-2]=t s1[-1]=n s1[0]=y s1[1]=e s1[2]=t s2[-2]=it s2[-1]=on s2[0]=my s2[1]=te s2[2]=ht s3[-2]= s3[-1]= s3[0]= s3[1]=ate s3[2]=ght s4[-2]= s4[-1]= s4[0]= s4[1]=Late s4[2]=ight 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=it|on w[-1]|w[0]=on|my w[0]|w[1]=my|Late w[1]|w[2]=Late|Night pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|JJ pos[1]|pos[2]=JJ|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=put w[-4..-1]=it w[-4..-1]=on w[1..4]=Late w[1..4]=Night w[1..4]=playlist +playlist w[-2]=on w[-1]=my w[0]=Late w[1]=Night w[2]=playlist wl[-2]=on wl[-1]=my wl[0]=late wl[1]=night wl[2]=playlist pos[-2]=IN pos[-1]=PRP$ pos[0]=JJ pos[1]=JJ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LL shape[-1]=LL shape[0]=ULLL shape[1]=ULLLL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=o p1[-1]=m p1[0]=L p1[1]=N p1[2]=p p2[-2]=on p2[-1]=my p2[0]=La p2[1]=Ni p2[2]=pl p3[-2]= p3[-1]= p3[0]=Lat p3[1]=Nig p3[2]=pla p4[-2]= p4[-1]= p4[0]=Late p4[1]=Nigh p4[2]=play s1[-2]=n s1[-1]=y s1[0]=e s1[1]=t s1[2]=t s2[-2]=on s2[-1]=my s2[0]=te s2[1]=ht s2[2]=st s3[-2]= s3[-1]= s3[0]=ate s3[1]=ght s3[2]=ist s4[-2]= s4[-1]= s4[0]=Late s4[1]=ight s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=on|my w[-1]|w[0]=my|Late w[0]|w[1]=Late|Night w[1]|w[2]=Night|playlist pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|JJ pos[0]|pos[1]=JJ|JJ pos[1]|pos[2]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=put w[-4..-1]=it w[-4..-1]=on w[-4..-1]=my w[1..4]=Night w[1..4]=playlist +playlist w[-2]=my w[-1]=Late w[0]=Night w[1]=playlist wl[-2]=my wl[-1]=late wl[0]=night wl[1]=playlist pos[-2]=PRP$ pos[-1]=JJ pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=ULLL shape[0]=ULLLL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-2]=m p1[-1]=L p1[0]=N p1[1]=p p2[-2]=my p2[-1]=La p2[0]=Ni p2[1]=pl p3[-2]= p3[-1]=Lat p3[0]=Nig p3[1]=pla p4[-2]= p4[-1]=Late p4[0]=Nigh p4[1]=play s1[-2]=y s1[-1]=e s1[0]=t s1[1]=t s2[-2]=my s2[-1]=te s2[0]=ht s2[1]=st s3[-2]= s3[-1]=ate s3[0]=ght s3[1]=ist s4[-2]= s4[-1]=Late s4[0]=ight s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=my|Late w[-1]|w[0]=Late|Night w[0]|w[1]=Night|playlist pos[-2]|pos[-1]=PRP$|JJ pos[-1]|pos[0]=JJ|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=it w[-4..-1]=on w[-4..-1]=my w[-4..-1]=Late w[1..4]=playlist +O w[-2]=Late w[-1]=Night w[0]=playlist wl[-2]=late wl[-1]=night wl[0]=playlist pos[-2]=JJ pos[-1]=JJ pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULLL shape[-1]=ULLLL shape[0]=LLLLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=L p1[-1]=N p1[0]=p p2[-2]=La p2[-1]=Ni p2[0]=pl p3[-2]=Lat p3[-1]=Nig p3[0]=pla p4[-2]=Late p4[-1]=Nigh p4[0]=play s1[-2]=e s1[-1]=t s1[0]=t s2[-2]=te s2[-1]=ht s2[0]=st s3[-2]=ate s3[-1]=ght s3[0]=ist s4[-2]=Late s4[-1]=ight s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Late|Night w[-1]|w[0]=Night|playlist pos[-2]|pos[-1]=JJ|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=on w[-4..-1]=my w[-4..-1]=Late w[-4..-1]=Night __EOS__ + +O w[0]=save w[1]=this w[2]=song wl[0]=save wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=s p2[0]=sa p2[1]=th p2[2]=so p3[0]=sav p3[1]=thi p3[2]=son p4[0]=save p4[1]=this p4[2]=song s1[0]=e s1[1]=s s1[2]=g s2[0]=ve s2[1]=is s2[2]=ng s3[0]=ave s3[1]=his s3[2]=ong s4[0]=save s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=save|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song w[1..4]=to w[1..4]=my __BOS__ +O w[-1]=save w[0]=this w[1]=song w[2]=to wl[-1]=save wl[0]=this wl[1]=song wl[2]=to pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=s p1[0]=t p1[1]=s p1[2]=t p2[-1]=sa p2[0]=th p2[1]=so p2[2]=to p3[-1]=sav p3[0]=thi p3[1]=son p3[2]= p4[-1]=save p4[0]=this p4[1]=song p4[2]= s1[-1]=e s1[0]=s s1[1]=g s1[2]=o s2[-1]=ve s2[0]=is s2[1]=ng s2[2]=to s3[-1]=ave s3[0]=his s3[1]=ong s3[2]= s4[-1]=save s4[0]=this s4[1]=song s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=save|this w[0]|w[1]=this|song w[1]|w[2]=song|to pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=save w[1..4]=song w[1..4]=to w[1..4]=my w[1..4]=Workout +O w[-2]=save w[-1]=this w[0]=song w[1]=to w[2]=my wl[-2]=save wl[-1]=this wl[0]=song wl[1]=to wl[2]=my pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=t p1[0]=s p1[1]=t p1[2]=m p2[-2]=sa p2[-1]=th p2[0]=so p2[1]=to p2[2]=my p3[-2]=sav p3[-1]=thi p3[0]=son p3[1]= p3[2]= p4[-2]=save p4[-1]=this p4[0]=song p4[1]= p4[2]= s1[-2]=e s1[-1]=s s1[0]=g s1[1]=o s1[2]=y s2[-2]=ve s2[-1]=is s2[0]=ng s2[1]=to s2[2]=my s3[-2]=ave s3[-1]=his s3[0]=ong s3[1]= s3[2]= s4[-2]=save s4[-1]=this s4[0]=song s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=save|this w[-1]|w[0]=this|song w[0]|w[1]=song|to w[1]|w[2]=to|my pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=save w[-4..-1]=this w[1..4]=to w[1..4]=my w[1..4]=Workout w[1..4]=playlist +O w[-2]=this w[-1]=song w[0]=to w[1]=my w[2]=Workout wl[-2]=this wl[-1]=song wl[0]=to wl[1]=my wl[2]=workout pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=PRP$ pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=s p1[0]=t p1[1]=m p1[2]=W p2[-2]=th p2[-1]=so p2[0]=to p2[1]=my p2[2]=Wo p3[-2]=thi p3[-1]=son p3[0]= p3[1]= p3[2]=Wor p4[-2]=this p4[-1]=song p4[0]= p4[1]= p4[2]=Work s1[-2]=s s1[-1]=g s1[0]=o s1[1]=y s1[2]=t s2[-2]=is s2[-1]=ng s2[0]=to s2[1]=my s2[2]=ut s3[-2]=his s3[-1]=ong s3[0]= s3[1]= s3[2]=out s4[-2]=this s4[-1]=song s4[0]= s4[1]= s4[2]=kout 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=this|song w[-1]|w[0]=song|to w[0]|w[1]=to|my w[1]|w[2]=my|Workout pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=save w[-4..-1]=this w[-4..-1]=song w[1..4]=my w[1..4]=Workout w[1..4]=playlist +O w[-2]=song w[-1]=to w[0]=my w[1]=Workout w[2]=playlist wl[-2]=song wl[-1]=to wl[0]=my wl[1]=workout wl[2]=playlist pos[-2]=NN pos[-1]=IN pos[0]=PRP$ pos[1]=NNP pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LL shape[1]=ULLLLLL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=s p1[-1]=t p1[0]=m p1[1]=W p1[2]=p p2[-2]=so p2[-1]=to p2[0]=my p2[1]=Wo p2[2]=pl p3[-2]=son p3[-1]= p3[0]= p3[1]=Wor p3[2]=pla p4[-2]=song p4[-1]= p4[0]= p4[1]=Work p4[2]=play s1[-2]=g s1[-1]=o s1[0]=y s1[1]=t s1[2]=t s2[-2]=ng s2[-1]=to s2[0]=my s2[1]=ut s2[2]=st s3[-2]=ong s3[-1]= s3[0]= s3[1]=out s3[2]=ist s4[-2]=song s4[-1]= s4[0]= s4[1]=kout s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|to w[-1]|w[0]=to|my w[0]|w[1]=my|Workout w[1]|w[2]=Workout|playlist pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=save w[-4..-1]=this w[-4..-1]=song w[-4..-1]=to w[1..4]=Workout w[1..4]=playlist +playlist w[-2]=to w[-1]=my w[0]=Workout w[1]=playlist wl[-2]=to wl[-1]=my wl[0]=workout wl[1]=playlist pos[-2]=IN pos[-1]=PRP$ pos[0]=NNP pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=LL shape[0]=ULLLLLL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter p1[-2]=t p1[-1]=m p1[0]=W p1[1]=p p2[-2]=to p2[-1]=my p2[0]=Wo p2[1]=pl p3[-2]= p3[-1]= p3[0]=Wor p3[1]=pla p4[-2]= p4[-1]= p4[0]=Work p4[1]=play s1[-2]=o s1[-1]=y s1[0]=t s1[1]=t s2[-2]=to s2[-1]=my s2[0]=ut s2[1]=st s3[-2]= s3[-1]= s3[0]=out s3[1]=ist s4[-2]= s4[-1]= s4[0]=kout s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|my w[-1]|w[0]=my|Workout w[0]|w[1]=Workout|playlist pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NNP pos[0]|pos[1]=NNP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=this w[-4..-1]=song w[-4..-1]=to w[-4..-1]=my w[1..4]=playlist +O w[-2]=my w[-1]=Workout w[0]=playlist wl[-2]=my wl[-1]=workout wl[0]=playlist pos[-2]=PRP$ pos[-1]=NNP pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LL shape[-1]=ULLLLLL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter p1[-2]=m p1[-1]=W p1[0]=p p2[-2]=my p2[-1]=Wo p2[0]=pl p3[-2]= p3[-1]=Wor p3[0]=pla p4[-2]= p4[-1]=Work p4[0]=play s1[-2]=y s1[-1]=t s1[0]=t s2[-2]=my s2[-1]=ut s2[0]=st s3[-2]= s3[-1]=out s3[0]=ist s4[-2]= s4[-1]=kout s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=my|Workout w[-1]|w[0]=Workout|playlist pos[-2]|pos[-1]=PRP$|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=song w[-4..-1]=to w[-4..-1]=my w[-4..-1]=Workout __EOS__ + +O w[0]=move w[1]=it w[2]=to wl[0]=move wl[1]=it wl[2]=to pos[0]=VB pos[1]=PRP pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=m p1[1]=i p1[2]=t p2[0]=mo p2[1]=it p2[2]=to p3[0]=mov p3[1]= p3[2]= p4[0]=move p4[1]= p4[2]= s1[0]=e s1[1]=t s1[2]=o s2[0]=ve s2[1]=it s2[2]=to s3[0]=ove s3[1]= s3[2]= s4[0]=move s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=move|it w[1]|w[2]=it|to pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=to w[1..4]=the w[1..4]=Gym __BOS__ +O w[-1]=move w[0]=it w[1]=to w[2]=the wl[-1]=move wl[0]=it wl[1]=to wl[2]=the pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=m p1[0]=i p1[1]=t p1[2]=t p2[-1]=mo p2[0]=it p2[1]=to p2[2]=th p3[-1]=mov p3[0]= p3[1]= p3[2]=the p4[-1]=move p4[0]= p4[1]= p4[2]= s1[-1]=e s1[0]=t s1[1]=o s1[2]=e s2[-1]=ve s2[0]=it s2[1]=to s2[2]=he s3[-1]=ove s3[0]= s3[1]= s3[2]=the s4[-1]=move s4[0]= s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=move|it w[0]|w[1]=it|to w[1]|w[2]=to|the pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=move w[1..4]=to w[1..4]=the w[1..4]=Gym w[1..4]=playlist +O w[-2]=move w[-1]=it w[0]=to w[1]=the w[2]=Gym wl[-2]=move wl[-1]=it wl[0]=to wl[1]=the wl[2]=gym pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=DT pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LL shape[1]=LLL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=m p1[-1]=i p1[0]=t p1[1]=t p1[2]=G p2[-2]=mo p2[-1]=it p2[0]=to p2[1]=th p2[2]=Gy p3[-2]=mov p3[-1]= p3[0]= p3[1]=the p3[2]=Gym p4[-2]=move p4[-1]= p4[0]= p4[1]= p4[2]= s1[-2]=e s1[-1]=t s1[0]=o s1[1]=e s1[2]=m s2[-2]=ve s2[-1]=it s2[0]=to s2[1]=he s2[2]=ym s3[-2]=ove s3[-1]= s3[0]= s3[1]=the s3[2]=Gym s4[-2]=move s4[-1]= s4[0]= s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=move|it w[-1]|w[0]=it|to w[0]|w[1]=to|the w[1]|w[2]=the|Gym pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=move w[-4..-1]=it w[1..4]=the w[1..4]=Gym w[1..4]=playlist +O w[-2]=it w[-1]=to w[0]=the w[1]=Gym w[2]=playlist wl[-2]=it wl[-1]=to wl[0]=the wl[1]=gym wl[2]=playlist pos[-2]=PRP pos[-1]=IN pos[0]=DT pos[1]=NNP pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LL shape[-1]=LL shape[0]=LLL shape[1]=ULL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=i p1[-1]=t p1[0]=t p1[1]=G p1[2]=p p2[-2]=it p2[-1]=to p2[0]=th p2[1]=Gy p2[2]=pl p3[-2]= p3[-1]= p3[0]=the p3[1]=Gym p3[2]=pla p4[-2]= p4[-1]= p4[0]= p4[1]= p4[2]=play s1[-2]=t s1[-1]=o s1[0]=e s1[1]=m s1[2]=t s2[-2]=it s2[-1]=to s2[0]=he s2[1]=ym s2[2]=st s3[-2]= s3[-1]= s3[0]=the s3[1]=Gym s3[2]=ist s4[-2]= s4[-1]= s4[0]= s4[1]= s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=it|to w[-1]|w[0]=to|the w[0]|w[1]=the|Gym w[1]|w[2]=Gym|playlist pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=move w[-4..-1]=it w[-4..-1]=to w[1..4]=Gym w[1..4]=playlist +playlist w[-2]=to w[-1]=the w[0]=Gym w[1]=playlist wl[-2]=to wl[-1]=the wl[0]=gym wl[1]=playlist pos[-2]=IN pos[-1]=DT pos[0]=NNP pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=LLL shape[0]=ULL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter p1[-2]=t p1[-1]=t p1[0]=G p1[1]=p p2[-2]=to p2[-1]=th p2[0]=Gy p2[1]=pl p3[-2]= p3[-1]=the p3[0]=Gym p3[1]=pla p4[-2]= p4[-1]= p4[0]= p4[1]=play s1[-2]=o s1[-1]=e s1[0]=m s1[1]=t s2[-2]=to s2[-1]=he s2[0]=ym s2[1]=st s3[-2]= s3[-1]=the s3[0]=Gym s3[1]=ist s4[-2]= s4[-1]= s4[0]= s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|Gym w[0]|w[1]=Gym|playlist pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NNP pos[0]|pos[1]=NNP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=move w[-4..-1]=it w[-4..-1]=to w[-4..-1]=the w[1..4]=playlist +O w[-2]=the w[-1]=Gym w[0]=playlist wl[-2]=the wl[-1]=gym wl[0]=playlist pos[-2]=DT pos[-1]=NNP pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLL shape[-1]=ULL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter p1[-2]=t p1[-1]=G p1[0]=p p2[-2]=th p2[-1]=Gy p2[0]=pl p3[-2]=the p3[-1]=Gym p3[0]=pla p4[-2]= p4[-1]= p4[0]=play s1[-2]=e s1[-1]=m s1[0]=t s2[-2]=he s2[-1]=ym s2[0]=st s3[-2]=the s3[-1]=Gym s3[0]=ist s4[-2]= s4[-1]= s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|Gym w[-1]|w[0]=Gym|playlist pos[-2]|pos[-1]=DT|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=it w[-4..-1]=to w[-4..-1]=the w[-4..-1]=Gym __EOS__ + +O w[0]=add w[1]=it w[2]=to wl[0]=add wl[1]=it wl[2]=to pos[0]=VB pos[1]=PRP pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=a p1[1]=i p1[2]=t p2[0]=ad p2[1]=it p2[2]=to p3[0]=add p3[1]= p3[2]= p4[0]= p4[1]= p4[2]= s1[0]=d s1[1]=t s1[2]=o s2[0]=dd s2[1]=it s2[2]=to s3[0]=add s3[1]= s3[2]= s4[0]= s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=add|it w[1]|w[2]=it|to pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=to w[1..4]=the w[1..4]=playlist __BOS__ +O w[-1]=add w[0]=it w[1]=to w[2]=the wl[-1]=add wl[0]=it wl[1]=to wl[2]=the pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=a p1[0]=i p1[1]=t p1[2]=t p2[-1]=ad p2[0]=it p2[1]=to p2[2]=th p3[-1]=add p3[0]= p3[1]= p3[2]=the p4[-1]= p4[0]= p4[1]= p4[2]= s1[-1]=d s1[0]=t s1[1]=o s1[2]=e s2[-1]=dd s2[0]=it s2[1]=to s2[2]=he s3[-1]=add s3[0]= s3[1]= s3[2]=the s4[-1]= s4[0]= s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=add|it w[0]|w[1]=it|to w[1]|w[2]=to|the pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[1..4]=to w[1..4]=the w[1..4]=playlist w[1..4]=Yoga +O w[-2]=add w[-1]=it w[0]=to w[1]=the w[2]=playlist wl[-2]=add wl[-1]=it wl[0]=to wl[1]=the wl[2]=playlist pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LL shape[0]=LL shape[1]=LLL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=i p1[0]=t p1[1]=t p1[2]=p p2[-2]=ad p2[-1]=it p2[0]=to p2[1]=th p2[2]=pl p3[-2]=add p3[-1]= p3[0]= p3[1]=the p3[2]=pla p4[-2]= p4[-1]= p4[0]= p4[1]= p4[2]=play s1[-2]=d s1[-1]=t s1[0]=o s1[1]=e s1[2]=t s2[-2]=dd s2[-1]=it s2[0]=to s2[1]=he s2[2]=st s3[-2]=add s3[-1]= s3[0]= s3[1]=the s3[2]=ist s4[-2]= s4[-1]= s4[0]= s4[1]= s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=add|it w[-1]|w[0]=it|to w[0]|w[1]=to|the w[1]|w[2]=the|playlist pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=it w[1..4]=the w[1..4]=playlist w[1..4]=Yoga +O w[-2]=it w[-1]=to w[0]=the w[1]=playlist w[2]=Yoga wl[-2]=it wl[-1]=to wl[0]=the wl[1]=playlist wl[2]=yoga pos[-2]=PRP pos[-1]=IN pos[0]=DT pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=LL shape[0]=LLL shape[1]=LLLLLLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=i p1[-1]=t p1[0]=t p1[1]=p p1[2]=Y p2[-2]=it p2[-1]=to p2[0]=th p2[1]=pl p2[2]=Yo p3[-2]= p3[-1]= p3[0]=the p3[1]=pla p3[2]=Yog p4[-2]= p4[-1]= p4[0]= p4[1]=play p4[2]=Yoga s1[-2]=t s1[-1]=o s1[0]=e s1[1]=t s1[2]=a s2[-2]=it s2[-1]=to s2[0]=he s2[1]=st s2[2]=ga s3[-2]= s3[-1]= s3[0]=the s3[1]=ist s3[2]=oga s4[-2]= s4[-1]= s4[0]= s4[1]=list s4[2]=Yoga 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=it|to w[-1]|w[0]=to|the w[0]|w[1]=the|playlist w[1]|w[2]=playlist|Yoga pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=add w[-4..-1]=it w[-4..-1]=to w[1..4]=playlist w[1..4]=Yoga +O w[-2]=to w[-1]=the w[0]=playlist w[1]=Yoga wl[-2]=to wl[-1]=the wl[0]=playlist wl[1]=yoga pos[-2]=IN pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=LLL shape[0]=LLLLLLLL shape[1]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=t p1[-1]=t p1[0]=p p1[1]=Y p2[-2]=to p2[-1]=th p2[0]=pl p2[1]=Yo p3[-2]= p3[-1]=the p3[0]=pla p3[1]=Yog p4[-2]= p4[-1]= p4[0]=play p4[1]=Yoga s1[-2]=o s1[-1]=e s1[0]=t s1[1]=a s2[-2]=to s2[-1]=he s2[0]=st s2[1]=ga s3[-2]= s3[-1]=the s3[0]=ist s3[1]=oga s4[-2]= s4[-1]= s4[0]=list s4[1]=Yoga 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|playlist w[0]|w[1]=playlist|Yoga pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=add w[-4..-1]=it w[-4..-1]=to w[-4..-1]=the w[1..4]=Yoga +playlist w[-2]=the w[-1]=playlist w[0]=Yoga wl[-2]=the wl[-1]=playlist wl[0]=yoga pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL shape[-1]=LLLLLLLL shape[0]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=p p1[0]=Y p2[-2]=th p2[-1]=pl p2[0]=Yo p3[-2]=the p3[-1]=pla p3[0]=Yog p4[-2]= p4[-1]=play p4[0]=Yoga s1[-2]=e s1[-1]=t s1[0]=a s2[-2]=he s2[-1]=st s2[0]=ga s3[-2]=the s3[-1]=ist s3[0]=oga s4[-2]= s4[-1]=list s4[0]=Yoga 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|playlist w[-1]|w[0]=playlist|Yoga pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=it w[-4..-1]=to w[-4..-1]=the w[-4..-1]=playlist __EOS__ + +O w[0]=save w[1]=this w[2]=track wl[0]=save wl[1]=this wl[2]=track pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=t p2[0]=sa p2[1]=th p2[2]=tr p3[0]=sav p3[1]=thi p3[2]=tra p4[0]=save p4[1]=this p4[2]=trac s1[0]=e s1[1]=s s1[2]=k s2[0]=ve s2[1]=is s2[2]=ck s3[0]=ave s3[1]=his s3[2]=ack s4[0]=save s4[1]=this s4[2]=rack 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=save|this w[1]|w[2]=this|track pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=track w[1..4]=in w[1..4]=my __BOS__ +O w[-1]=save w[0]=this w[1]=track w[2]=in wl[-1]=save wl[0]=this wl[1]=track wl[2]=in pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=s p1[0]=t p1[1]=t p1[2]=i p2[-1]=sa p2[0]=th p2[1]=tr p2[2]=in p3[-1]=sav p3[0]=thi p3[1]=tra p3[2]= p4[-1]=save p4[0]=this p4[1]=trac p4[2]= s1[-1]=e s1[0]=s s1[1]=k s1[2]=n s2[-1]=ve s2[0]=is s2[1]=ck s2[2]=in s3[-1]=ave s3[0]=his s3[1]=ack s3[2]= s4[-1]=save s4[0]=this s4[1]=rack s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=save|this w[0]|w[1]=this|track w[1]|w[2]=track|in pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=save w[1..4]=track w[1..4]=in w[1..4]=my w[1..4]=playlist +O w[-2]=save w[-1]=this w[0]=track w[1]=in w[2]=my wl[-2]=save wl[-1]=this wl[0]=track wl[1]=in wl[2]=my pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=t p1[0]=t p1[1]=i p1[2]=m p2[-2]=sa p2[-1]=th p2[0]=tr p2[1]=in p2[2]=my p3[-2]=sav p3[-1]=thi p3[0]=tra p3[1]= p3[2]= p4[-2]=save p4[-1]=this p4[0]=trac p4[1]= p4[2]= s1[-2]=e s1[-1]=s s1[0]=k s1[1]=n s1[2]=y s2[-2]=ve s2[-1]=is s2[0]=ck s2[1]=in s2[2]=my s3[-2]=ave s3[-1]=his s3[0]=ack s3[1]= s3[2]= s4[-2]=save s4[-1]=this s4[0]=rack s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=save|this w[-1]|w[0]=this|track w[0]|w[1]=track|in w[1]|w[2]=in|my pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=save w[-4..-1]=this w[1..4]=in w[1..4]=my w[1..4]=playlist +O w[-2]=this w[-1]=track w[0]=in w[1]=my w[2]=playlist wl[-2]=this wl[-1]=track wl[0]=in wl[1]=my wl[2]=playlist pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=PRP$ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=LL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=t p1[0]=i p1[1]=m p1[2]=p p2[-2]=th p2[-1]=tr p2[0]=in p2[1]=my p2[2]=pl p3[-2]=thi p3[-1]=tra p3[0]= p3[1]= p3[2]=pla p4[-2]=this p4[-1]=trac p4[0]= p4[1]= p4[2]=play s1[-2]=s s1[-1]=k s1[0]=n s1[1]=y s1[2]=t s2[-2]=is s2[-1]=ck s2[0]=in s2[1]=my s2[2]=st s3[-2]=his s3[-1]=ack s3[0]= s3[1]= s3[2]=ist s4[-2]=this s4[-1]=rack s4[0]= s4[1]= s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=this|track w[-1]|w[0]=track|in w[0]|w[1]=in|my w[1]|w[2]=my|playlist pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=save w[-4..-1]=this w[-4..-1]=track w[1..4]=my w[1..4]=playlist +O w[-2]=track w[-1]=in w[0]=my w[1]=playlist wl[-2]=track wl[-1]=in wl[0]=my wl[1]=playlist pos[-2]=NN pos[-1]=IN pos[0]=PRP$ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLL shape[-1]=LL shape[0]=LL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=i p1[0]=m p1[1]=p p2[-2]=tr p2[-1]=in p2[0]=my p2[1]=pl p3[-2]=tra p3[-1]= p3[0]= p3[1]=pla p4[-2]=trac p4[-1]= p4[0]= p4[1]=play s1[-2]=k s1[-1]=n s1[0]=y s1[1]=t s2[-2]=ck s2[-1]=in s2[0]=my s2[1]=st s3[-2]=ack s3[-1]= s3[0]= s3[1]=ist s4[-2]=rack s4[-1]= s4[0]= s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=track|in w[-1]|w[0]=in|my w[0]|w[1]=my|playlist pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=save w[-4..-1]=this w[-4..-1]=track w[-4..-1]=in w[1..4]=playlist +O w[-2]=in w[-1]=my w[0]=playlist wl[-2]=in wl[-1]=my wl[0]=playlist pos[-2]=IN pos[-1]=PRP$ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=i p1[-1]=m p1[0]=p p2[-2]=in p2[-1]=my p2[0]=pl p3[-2]= p3[-1]= p3[0]=pla p4[-2]= p4[-1]= p4[0]=play s1[-2]=n s1[-1]=y s1[0]=t s2[-2]=in s2[-1]=my s2[0]=st s3[-2]= s3[-1]= s3[0]=ist s4[-2]= s4[-1]= s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=in|my w[-1]|w[0]=my|playlist pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=this w[-4..-1]=track w[-4..-1]=in w[-4..-1]=my __EOS__ + +O w[0]=put w[1]=it w[2]=into wl[0]=put wl[1]=it wl[2]=into pos[0]=VB pos[1]=PRP pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=i p1[2]=i p2[0]=pu p2[1]=it p2[2]=in p3[0]=put p3[1]= p3[2]=int p4[0]= p4[1]= p4[2]=into s1[0]=t s1[1]=t s1[2]=o s2[0]=ut s2[1]=it s2[2]=to s3[0]=put s3[1]= s3[2]=nto s4[0]= s4[1]= s4[2]=into 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|it w[1]|w[2]=it|into pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=into w[1..4]=the w[1..4]=playlist __BOS__ +O w[-1]=put w[0]=it w[1]=into w[2]=the wl[-1]=put wl[0]=it wl[1]=into wl[2]=the pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=i p1[1]=i p1[2]=t p2[-1]=pu p2[0]=it p2[1]=in p2[2]=th p3[-1]=put p3[0]= p3[1]=int p3[2]=the p4[-1]= p4[0]= p4[1]=into p4[2]= s1[-1]=t s1[0]=t s1[1]=o s1[2]=e s2[-1]=ut s2[0]=it s2[1]=to s2[2]=he s3[-1]=put s3[0]= s3[1]=nto s3[2]=the s4[-1]= s4[0]= s4[1]=into s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|it w[0]|w[1]=it|into w[1]|w[2]=into|the pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=into w[1..4]=the w[1..4]=playlist w[1..4]=Running +O w[-2]=put w[-1]=it w[0]=into w[1]=the w[2]=playlist wl[-2]=put wl[-1]=it wl[0]=into wl[1]=the wl[2]=playlist pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LL shape[0]=LLLL shape[1]=LLL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=i p1[0]=i p1[1]=t p1[2]=p p2[-2]=pu p2[-1]=it p2[0]=in p2[1]=th p2[2]=pl p3[-2]=put p3[-1]= p3[0]=int p3[1]=the p3[2]=pla p4[-2]= p4[-1]= p4[0]=into p4[1]= p4[2]=play s1[-2]=t s1[-1]=t s1[0]=o s1[1]=e s1[2]=t s2[-2]=ut s2[-1]=it s2[0]=to s2[1]=he s2[2]=st s3[-2]=put s3[-1]= s3[0]=nto s3[1]=the s3[2]=ist s4[-2]= s4[-1]= s4[0]=into s4[1]= s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=put|it w[-1]|w[0]=it|into w[0]|w[1]=into|the w[1]|w[2]=the|playlist pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=it w[1..4]=the w[1..4]=playlist w[1..4]=Running +O w[-2]=it w[-1]=into w[0]=the w[1]=playlist w[2]=Running wl[-2]=it wl[-1]=into wl[0]=the wl[1]=playlist wl[2]=running pos[-2]=PRP pos[-1]=IN pos[0]=DT pos[1]=NN pos[2]=VBG chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLLLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=i p1[-1]=i p1[0]=t p1[1]=p p1[2]=R p2[-2]=it p2[-1]=in p2[0]=th p2[1]=pl p2[2]=Ru p3[-2]= p3[-1]=int p3[0]=the p3[1]=pla p3[2]=Run p4[-2]= p4[-1]=into p4[0]= p4[1]=play p4[2]=Runn s1[-2]=t s1[-1]=o s1[0]=e s1[1]=t s1[2]=g s2[-2]=it s2[-1]=to s2[0]=he s2[1]=st s2[2]=ng s3[-2]= s3[-1]=nto s3[0]=the s3[1]=ist s3[2]=ing s4[-2]= s4[-1]=into s4[0]= s4[1]=list s4[2]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=it|into w[-1]|w[0]=into|the w[0]|w[1]=the|playlist w[1]|w[2]=playlist|Running pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|VBG chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=put w[-4..-1]=it w[-4..-1]=into w[1..4]=playlist w[1..4]=Running +O w[-2]=into w[-1]=the w[0]=playlist w[1]=Running wl[-2]=into wl[-1]=the wl[0]=playlist wl[1]=running pos[-2]=IN pos[-1]=DT pos[0]=NN pos[1]=VBG chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLLLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=i p1[-1]=t p1[0]=p p1[1]=R p2[-2]=in p2[-1]=th p2[0]=pl p2[1]=Ru p3[-2]=int p3[-1]=the p3[0]=pla p3[1]=Run p4[-2]=into p4[-1]= p4[0]=play p4[1]=Runn s1[-2]=o s1[-1]=e s1[0]=t s1[1]=g s2[-2]=to s2[-1]=he s2[0]=st s2[1]=ng s3[-2]=nto s3[-1]=the s3[0]=ist s3[1]=ing s4[-2]=into s4[-1]= s4[0]=list s4[1]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=into|the w[-1]|w[0]=the|playlist w[0]|w[1]=playlist|Running pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|VBG chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=put w[-4..-1]=it w[-4..-1]=into w[-4..-1]=the w[1..4]=Running +playlist w[-2]=the w[-1]=playlist w[0]=Running wl[-2]=the wl[-1]=playlist wl[0]=running pos[-2]=DT pos[-1]=NN pos[0]=VBG chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL shape[-1]=LLLLLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=p p1[0]=R p2[-2]=th p2[-1]=pl p2[0]=Ru p3[-2]=the p3[-1]=pla p3[0]=Run p4[-2]= p4[-1]=play p4[0]=Runn s1[-2]=e s1[-1]=t s1[0]=g s2[-2]=he s2[-1]=st s2[0]=ng s3[-2]=the s3[-1]=ist s3[0]=ing s4[-2]= s4[-1]=list s4[0]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|playlist w[-1]|w[0]=playlist|Running pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|VBG chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=it w[-4..-1]=into w[-4..-1]=the w[-4..-1]=playlist __EOS__ + +O w[0]=now w[1]=play wl[0]=now wl[1]=play pos[0]=RB pos[1]=VBP chk[0]=O chk[1]=O shape[0]=LLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=n p1[1]=p p2[0]=no p2[1]=pl p3[0]=now p3[1]=pla p4[0]= p4[1]=play s1[0]=w s1[1]=y s2[0]=ow s2[1]=ay s3[0]=now s3[1]=lay s4[0]= s4[1]=play 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=now|play pos[0]|pos[1]=RB|VBP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=play __BOS__ +O w[-1]=now w[0]=play wl[-1]=now wl[0]=play pos[-1]=RB pos[0]=VBP chk[-1]=O chk[0]=O shape[-1]=LLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=n p1[0]=p p2[-1]=no p2[0]=pl p3[-1]=now p3[0]=pla p4[-1]= p4[0]=play s1[-1]=w s1[0]=y s2[-1]=ow s2[0]=ay s3[-1]=now s3[0]=lay s4[-1]= s4[0]=play 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=now|play pos[-1]|pos[0]=RB|VBP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=now __EOS__ + +O w[0]=play w[1]=this wl[0]=play wl[1]=this pos[0]=VB pos[1]=DT chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=t p2[0]=pl p2[1]=th p3[0]=pla p3[1]=thi p4[0]=play p4[1]=this s1[0]=y s1[1]=s s2[0]=ay s2[1]=is s3[0]=lay s3[1]=his s4[0]=play s4[1]=this 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|this pos[0]|pos[1]=VB|DT chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=this __BOS__ +O w[-1]=play w[0]=this wl[-1]=play wl[0]=this pos[-1]=VB pos[0]=DT chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=t p2[-1]=pl p2[0]=th p3[-1]=pla p3[0]=thi p4[-1]=play p4[0]=this s1[-1]=y s1[0]=s s2[-1]=ay s2[0]=is s3[-1]=lay s3[0]=his s4[-1]=play s4[0]=this 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|this pos[-1]|pos[0]=VB|DT chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play __EOS__ + +O w[0]=play wl[0]=play pos[0]=VB chk[0]=O shape[0]=LLLL shaped[0]=L type[0]=AllLetter p1[0]=p p2[0]=pl p3[0]=pla p4[0]=play s1[0]=y s2[0]=ay s3[0]=lay s4[0]=play 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=could w[1]=you w[2]=play wl[0]=could wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=co p2[1]=yo p2[2]=pl p3[0]=cou p3[1]=you p3[2]=pla p4[0]=coul p4[1]= p4[2]=play s1[0]=d s1[1]=u s1[2]=y s2[0]=ld s2[1]=ou s2[2]=ay s3[0]=uld s3[1]=you s3[2]=lay s4[0]=ould s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=could|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=this w[1..4]=one __BOS__ +O w[-1]=could w[0]=you w[1]=play w[2]=this wl[-1]=could wl[0]=you wl[1]=play wl[2]=this pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=t p2[-1]=co p2[0]=yo p2[1]=pl p2[2]=th p3[-1]=cou p3[0]=you p3[1]=pla p3[2]=thi p4[-1]=coul p4[0]= p4[1]=play p4[2]=this s1[-1]=d s1[0]=u s1[1]=y s1[2]=s s2[-1]=ld s2[0]=ou s2[1]=ay s2[2]=is s3[-1]=uld s3[0]=you s3[1]=lay s3[2]=his s4[-1]=ould s4[0]= s4[1]=play s4[2]=this 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=could|you w[0]|w[1]=you|play w[1]|w[2]=play|this pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[1..4]=play w[1..4]=this w[1..4]=one +O w[-2]=could w[-1]=you w[0]=play w[1]=this w[2]=one wl[-2]=could wl[-1]=you wl[0]=play wl[1]=this wl[2]=one pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=t p1[2]=o p2[-2]=co p2[-1]=yo p2[0]=pl p2[1]=th p2[2]=on p3[-2]=cou p3[-1]=you p3[0]=pla p3[1]=thi p3[2]=one p4[-2]=coul p4[-1]= p4[0]=play p4[1]=this p4[2]= s1[-2]=d s1[-1]=u s1[0]=y s1[1]=s s1[2]=e s2[-2]=ld s2[-1]=ou s2[0]=ay s2[1]=is s2[2]=ne s3[-2]=uld s3[-1]=you s3[0]=lay s3[1]=his s3[2]=one s4[-2]=ould s4[-1]= s4[0]=play s4[1]=this s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=could|you w[-1]|w[0]=you|play w[0]|w[1]=play|this w[1]|w[2]=this|one pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[1..4]=this w[1..4]=one +O w[-2]=you w[-1]=play w[0]=this w[1]=one wl[-2]=you wl[-1]=play wl[0]=this wl[1]=one pos[-2]=PRP pos[-1]=VB pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=y p1[-1]=p p1[0]=t p1[1]=o p2[-2]=yo p2[-1]=pl p2[0]=th p2[1]=on p3[-2]=you p3[-1]=pla p3[0]=thi p3[1]=one p4[-2]= p4[-1]=play p4[0]=this p4[1]= s1[-2]=u s1[-1]=y s1[0]=s s1[1]=e s2[-2]=ou s2[-1]=ay s2[0]=is s2[1]=ne s3[-2]=you s3[-1]=lay s3[0]=his s3[1]=one s4[-2]= s4[-1]=play s4[0]=this s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|this w[0]|w[1]=this|one pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[-4..-1]=play w[1..4]=one +O w[-2]=play w[-1]=this w[0]=one wl[-2]=play wl[-1]=this wl[0]=one pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=t p1[0]=o p2[-2]=pl p2[-1]=th p2[0]=on p3[-2]=pla p3[-1]=thi p3[0]=one p4[-2]=play p4[-1]=this p4[0]= s1[-2]=y s1[-1]=s s1[0]=e s2[-2]=ay s2[-1]=is s2[0]=ne s3[-2]=lay s3[-1]=his s3[0]=one s4[-2]=play s4[-1]=this s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|this w[-1]|w[0]=this|one pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[-4..-1]=play w[-4..-1]=this __EOS__ + +O w[0]=I w[1]=want w[2]=you wl[0]=i wl[1]=want wl[2]=you pos[0]=PRP pos[1]=VBP pos[2]=PRP chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LLL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=y p2[0]= p2[1]=wa p2[2]=yo p3[0]= p3[1]=wan p3[2]=you p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=u s2[0]= s2[1]=nt s2[2]=ou s3[0]= s3[1]=ant s3[2]=you s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|you pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|PRP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=you w[1..4]=to w[1..4]=play __BOS__ +O w[-1]=I w[0]=want w[1]=you w[2]=to wl[-1]=i wl[0]=want wl[1]=you wl[2]=to pos[-1]=PRP pos[0]=VBP pos[1]=PRP pos[2]=TO chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LLL shape[2]=LL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=y p1[2]=t p2[-1]= p2[0]=wa p2[1]=yo p2[2]=to p3[-1]= p3[0]=wan p3[1]=you p3[2]= p4[-1]= p4[0]=want p4[1]= p4[2]= s1[-1]=I s1[0]=t s1[1]=u s1[2]=o s2[-1]= s2[0]=nt s2[1]=ou s2[2]=to s3[-1]= s3[0]=ant s3[1]=you s3[2]= s4[-1]= s4[0]=want s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|you w[1]|w[2]=you|to pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|PRP pos[1]|pos[2]=PRP|TO chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=you w[1..4]=to w[1..4]=play w[1..4]=it +O w[-2]=I w[-1]=want w[0]=you w[1]=to w[2]=play wl[-2]=i wl[-1]=want wl[0]=you wl[1]=to wl[2]=play pos[-2]=PRP pos[-1]=VBP pos[0]=PRP pos[1]=TO pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LLL shape[1]=LL shape[2]=LLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=y p1[1]=t p1[2]=p p2[-2]= p2[-1]=wa p2[0]=yo p2[1]=to p2[2]=pl p3[-2]= p3[-1]=wan p3[0]=you p3[1]= p3[2]=pla p4[-2]= p4[-1]=want p4[0]= p4[1]= p4[2]=play s1[-2]=I s1[-1]=t s1[0]=u s1[1]=o s1[2]=y s2[-2]= s2[-1]=nt s2[0]=ou s2[1]=to s2[2]=ay s3[-2]= s3[-1]=ant s3[0]=you s3[1]= s3[2]=lay s4[-2]= s4[-1]=want s4[0]= s4[1]= s4[2]=play 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|you w[0]|w[1]=you|to w[1]|w[2]=to|play pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|PRP pos[0]|pos[1]=PRP|TO pos[1]|pos[2]=TO|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=to w[1..4]=play w[1..4]=it +O w[-2]=want w[-1]=you w[0]=to w[1]=play w[2]=it wl[-2]=want wl[-1]=you wl[0]=to wl[1]=play wl[2]=it pos[-2]=VBP pos[-1]=PRP pos[0]=TO pos[1]=VB pos[2]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=y p1[0]=t p1[1]=p p1[2]=i p2[-2]=wa p2[-1]=yo p2[0]=to p2[1]=pl p2[2]=it p3[-2]=wan p3[-1]=you p3[0]= p3[1]=pla p3[2]= p4[-2]=want p4[-1]= p4[0]= p4[1]=play p4[2]= s1[-2]=t s1[-1]=u s1[0]=o s1[1]=y s1[2]=t s2[-2]=nt s2[-1]=ou s2[0]=to s2[1]=ay s2[2]=it s3[-2]=ant s3[-1]=you s3[0]= s3[1]=lay s3[2]= s4[-2]=want s4[-1]= s4[0]= s4[1]=play s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|you w[-1]|w[0]=you|to w[0]|w[1]=to|play w[1]|w[2]=play|it pos[-2]|pos[-1]=VBP|PRP pos[-1]|pos[0]=PRP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=you w[1..4]=play w[1..4]=it +O w[-2]=you w[-1]=to w[0]=play w[1]=it wl[-2]=you wl[-1]=to wl[0]=play wl[1]=it pos[-2]=PRP pos[-1]=TO pos[0]=VB pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LL shape[0]=LLLL shape[1]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=y p1[-1]=t p1[0]=p p1[1]=i p2[-2]=yo p2[-1]=to p2[0]=pl p2[1]=it p3[-2]=you p3[-1]= p3[0]=pla p3[1]= p4[-2]= p4[-1]= p4[0]=play p4[1]= s1[-2]=u s1[-1]=o s1[0]=y s1[1]=t s2[-2]=ou s2[-1]=to s2[0]=ay s2[1]=it s3[-2]=you s3[-1]= s3[0]=lay s3[1]= s4[-2]= s4[-1]= s4[0]=play s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=you|to w[-1]|w[0]=to|play w[0]|w[1]=play|it pos[-2]|pos[-1]=PRP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=you w[-4..-1]=to w[1..4]=it +O w[-2]=to w[-1]=play w[0]=it wl[-2]=to wl[-1]=play wl[0]=it pos[-2]=TO pos[-1]=VB pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=p p1[0]=i p2[-2]=to p2[-1]=pl p2[0]=it p3[-2]= p3[-1]=pla p3[0]= p4[-2]= p4[-1]=play p4[0]= s1[-2]=o s1[-1]=y s1[0]=t s2[-2]=to s2[-1]=ay s2[0]=it s3[-2]= s3[-1]=lay s3[0]= s4[-2]= s4[-1]=play s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|play w[-1]|w[0]=play|it pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=want w[-4..-1]=you w[-4..-1]=to w[-4..-1]=play __EOS__ + +O w[0]=start w[1]=playing w[2]=it wl[0]=start wl[1]=playing wl[2]=it pos[0]=VB pos[1]=VBG pos[2]=PRP chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LLLLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=p p1[2]=i p2[0]=st p2[1]=pl p2[2]=it p3[0]=sta p3[1]=pla p3[2]= p4[0]=star p4[1]=play p4[2]= s1[0]=t s1[1]=g s1[2]=t s2[0]=rt s2[1]=ng s2[2]=it s3[0]=art s3[1]=ing s3[2]= s4[0]=tart s4[1]=ying s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=start|playing w[1]|w[2]=playing|it pos[0]|pos[1]=VB|VBG pos[1]|pos[2]=VBG|PRP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=playing w[1..4]=it __BOS__ +O w[-1]=start w[0]=playing w[1]=it wl[-1]=start wl[0]=playing wl[1]=it pos[-1]=VB pos[0]=VBG pos[1]=PRP chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLL shape[0]=LLLLLLL shape[1]=LL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=s p1[0]=p p1[1]=i p2[-1]=st p2[0]=pl p2[1]=it p3[-1]=sta p3[0]=pla p3[1]= p4[-1]=star p4[0]=play p4[1]= s1[-1]=t s1[0]=g s1[1]=t s2[-1]=rt s2[0]=ng s2[1]=it s3[-1]=art s3[0]=ing s3[1]= s4[-1]=tart s4[0]=ying s4[1]= 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=start|playing w[0]|w[1]=playing|it pos[-1]|pos[0]=VB|VBG pos[0]|pos[1]=VBG|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=start w[1..4]=it +O w[-2]=start w[-1]=playing w[0]=it wl[-2]=start wl[-1]=playing wl[0]=it pos[-2]=VB pos[-1]=VBG pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LLLLLLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=p p1[0]=i p2[-2]=st p2[-1]=pl p2[0]=it p3[-2]=sta p3[-1]=pla p3[0]= p4[-2]=star p4[-1]=play p4[0]= s1[-2]=t s1[-1]=g s1[0]=t s2[-2]=rt s2[-1]=ng s2[0]=it s3[-2]=art s3[-1]=ing s3[0]= s4[-2]=tart s4[-1]=ying s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=start|playing w[-1]|w[0]=playing|it pos[-2]|pos[-1]=VB|VBG pos[-1]|pos[0]=VBG|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=start w[-4..-1]=playing __EOS__ + +O w[0]=play w[1]=it wl[0]=play wl[1]=it pos[0]=VB pos[1]=PRP chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=i p2[0]=pl p2[1]=it p3[0]=pla p3[1]= p4[0]=play p4[1]= s1[0]=y s1[1]=t s2[0]=ay s2[1]=it s3[0]=lay s3[1]= s4[0]=play s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|it pos[0]|pos[1]=VB|PRP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=it __BOS__ +O w[-1]=play w[0]=it wl[-1]=play wl[0]=it pos[-1]=VB pos[0]=PRP chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=i p2[-1]=pl p2[0]=it p3[-1]=pla p3[0]= p4[-1]=play p4[0]= s1[-1]=y s1[0]=t s2[-1]=ay s2[0]=it s3[-1]=lay s3[0]= s4[-1]=play s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|it pos[-1]|pos[0]=VB|PRP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play __EOS__ + +O w[0]=could w[1]=you w[2]=play wl[0]=could wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=co p2[1]=yo p2[2]=pl p3[0]=cou p3[1]=you p3[2]=pla p4[0]=coul p4[1]= p4[2]=play s1[0]=d s1[1]=u s1[2]=y s2[0]=ld s2[1]=ou s2[2]=ay s3[0]=uld s3[1]=you s3[2]=lay s4[0]=ould s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=could|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=it w[1..4]=for __BOS__ +O w[-1]=could w[0]=you w[1]=play w[2]=it wl[-1]=could wl[0]=you wl[1]=play wl[2]=it pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLL shape[0]=LLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=i p2[-1]=co p2[0]=yo p2[1]=pl p2[2]=it p3[-1]=cou p3[0]=you p3[1]=pla p3[2]= p4[-1]=coul p4[0]= p4[1]=play p4[2]= s1[-1]=d s1[0]=u s1[1]=y s1[2]=t s2[-1]=ld s2[0]=ou s2[1]=ay s2[2]=it s3[-1]=uld s3[0]=you s3[1]=lay s3[2]= s4[-1]=ould s4[0]= s4[1]=play s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=could|you w[0]|w[1]=you|play w[1]|w[2]=play|it pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[1..4]=play w[1..4]=it w[1..4]=for w[1..4]=me +O w[-2]=could w[-1]=you w[0]=play w[1]=it w[2]=for wl[-2]=could wl[-1]=you wl[0]=play wl[1]=it wl[2]=for pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=PRP pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=i p1[2]=f p2[-2]=co p2[-1]=yo p2[0]=pl p2[1]=it p2[2]=fo p3[-2]=cou p3[-1]=you p3[0]=pla p3[1]= p3[2]=for p4[-2]=coul p4[-1]= p4[0]=play p4[1]= p4[2]= s1[-2]=d s1[-1]=u s1[0]=y s1[1]=t s1[2]=r s2[-2]=ld s2[-1]=ou s2[0]=ay s2[1]=it s2[2]=or s3[-2]=uld s3[-1]=you s3[0]=lay s3[1]= s3[2]=for s4[-2]=ould s4[-1]= s4[0]=play s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=could|you w[-1]|w[0]=you|play w[0]|w[1]=play|it w[1]|w[2]=it|for pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[1..4]=it w[1..4]=for w[1..4]=me +O w[-2]=you w[-1]=play w[0]=it w[1]=for w[2]=me wl[-2]=you wl[-1]=play wl[0]=it wl[1]=for wl[2]=me pos[-2]=PRP pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LL shape[1]=LLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=y p1[-1]=p p1[0]=i p1[1]=f p1[2]=m p2[-2]=yo p2[-1]=pl p2[0]=it p2[1]=fo p2[2]=me p3[-2]=you p3[-1]=pla p3[0]= p3[1]=for p3[2]= p4[-2]= p4[-1]=play p4[0]= p4[1]= p4[2]= s1[-2]=u s1[-1]=y s1[0]=t s1[1]=r s1[2]=e s2[-2]=ou s2[-1]=ay s2[0]=it s2[1]=or s2[2]=me s3[-2]=you s3[-1]=lay s3[0]= s3[1]=for s3[2]= s4[-2]= s4[-1]=play s4[0]= s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|it w[0]|w[1]=it|for w[1]|w[2]=for|me pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[-4..-1]=play w[1..4]=for w[1..4]=me +O w[-2]=play w[-1]=it w[0]=for w[1]=me wl[-2]=play wl[-1]=it wl[0]=for wl[1]=me pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLL shape[1]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=i p1[0]=f p1[1]=m p2[-2]=pl p2[-1]=it p2[0]=fo p2[1]=me p3[-2]=pla p3[-1]= p3[0]=for p3[1]= p4[-2]=play p4[-1]= p4[0]= p4[1]= s1[-2]=y s1[-1]=t s1[0]=r s1[1]=e s2[-2]=ay s2[-1]=it s2[0]=or s2[1]=me s3[-2]=lay s3[-1]= s3[0]=for s3[1]= s4[-2]=play s4[-1]= s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|it w[-1]|w[0]=it|for w[0]|w[1]=for|me pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[-4..-1]=play w[-4..-1]=it w[1..4]=me +O w[-2]=it w[-1]=for w[0]=me wl[-2]=it wl[-1]=for wl[0]=me pos[-2]=PRP pos[-1]=IN pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=i p1[-1]=f p1[0]=m p2[-2]=it p2[-1]=fo p2[0]=me p3[-2]= p3[-1]=for p3[0]= p4[-2]= p4[-1]= p4[0]= s1[-2]=t s1[-1]=r s1[0]=e s2[-2]=it s2[-1]=or s2[0]=me s3[-2]= s3[-1]=for s3[0]= s4[-2]= s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=it|for w[-1]|w[0]=for|me pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=you w[-4..-1]=play w[-4..-1]=it w[-4..-1]=for __EOS__ + +O w[0]=now w[1]=start w[2]=playing wl[0]=now wl[1]=start wl[2]=playing pos[0]=RB pos[1]=VBP pos[2]=VBG chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLLL shape[2]=LLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=n p1[1]=s p1[2]=p p2[0]=no p2[1]=st p2[2]=pl p3[0]=now p3[1]=sta p3[2]=pla p4[0]= p4[1]=star p4[2]=play s1[0]=w s1[1]=t s1[2]=g s2[0]=ow s2[1]=rt s2[2]=ng s3[0]=now s3[1]=art s3[2]=ing s4[0]= s4[1]=tart s4[2]=ying 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=now|start w[1]|w[2]=start|playing pos[0]|pos[1]=RB|VBP pos[1]|pos[2]=VBP|VBG chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=start w[1..4]=playing __BOS__ +O w[-1]=now w[0]=start w[1]=playing wl[-1]=now wl[0]=start wl[1]=playing pos[-1]=RB pos[0]=VBP pos[1]=VBG chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLL shape[0]=LLLLL shape[1]=LLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=n p1[0]=s p1[1]=p p2[-1]=no p2[0]=st p2[1]=pl p3[-1]=now p3[0]=sta p3[1]=pla p4[-1]= p4[0]=star p4[1]=play s1[-1]=w s1[0]=t s1[1]=g s2[-1]=ow s2[0]=rt s2[1]=ng s3[-1]=now s3[0]=art s3[1]=ing s4[-1]= s4[0]=tart s4[1]=ying 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=now|start w[0]|w[1]=start|playing pos[-1]|pos[0]=RB|VBP pos[0]|pos[1]=VBP|VBG chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=now w[1..4]=playing +O w[-2]=now w[-1]=start w[0]=playing wl[-2]=now wl[-1]=start wl[0]=playing pos[-2]=RB pos[-1]=VBP pos[0]=VBG chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLLL shape[0]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=n p1[-1]=s p1[0]=p p2[-2]=no p2[-1]=st p2[0]=pl p3[-2]=now p3[-1]=sta p3[0]=pla p4[-2]= p4[-1]=star p4[0]=play s1[-2]=w s1[-1]=t s1[0]=g s2[-2]=ow s2[-1]=rt s2[0]=ng s3[-2]=now s3[-1]=art s3[0]=ing s4[-2]= s4[-1]=tart s4[0]=ying 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=now|start w[-1]|w[0]=start|playing pos[-2]|pos[-1]=RB|VBP pos[-1]|pos[0]=VBP|VBG chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=now w[-4..-1]=start __EOS__ + +O w[0]=play w[1]=it wl[0]=play wl[1]=it pos[0]=VB pos[1]=PRP chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=i p2[0]=pl p2[1]=it p3[0]=pla p3[1]= p4[0]=play p4[1]= s1[0]=y s1[1]=t s2[0]=ay s2[1]=it s3[0]=lay s3[1]= s4[0]=play s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|it pos[0]|pos[1]=VB|PRP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=it __BOS__ +O w[-1]=play w[0]=it wl[-1]=play wl[0]=it pos[-1]=VB pos[0]=PRP chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=i p2[-1]=pl p2[0]=it p3[-1]=pla p3[0]= p4[-1]=play p4[0]= s1[-1]=y s1[0]=t s2[-1]=ay s2[0]=it s3[-1]=lay s3[0]= s4[-1]=play s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|it pos[-1]|pos[0]=VB|PRP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=it __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=it wl[-1]=can wl[0]=you wl[1]=play wl[2]=it pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=i p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=it p3[-1]=can p3[0]=you p3[1]=pla p3[2]= p4[-1]= p4[0]= p4[1]=play p4[2]= s1[-1]=n s1[0]=u s1[1]=y s1[2]=t s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=it s3[-1]=can s3[0]=you s3[1]=lay s3[2]= s4[-1]= s4[0]= s4[1]=play s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|it pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=play w[1..4]=it +O w[-2]=can w[-1]=you w[0]=play w[1]=it wl[-2]=can wl[-1]=you wl[0]=play wl[1]=it pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=i p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=it p3[-2]=can p3[-1]=you p3[0]=pla p3[1]= p4[-2]= p4[-1]= p4[0]=play p4[1]= s1[-2]=n s1[-1]=u s1[0]=y s1[1]=t s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=it s3[-2]=can s3[-1]=you s3[0]=lay s3[1]= s4[-2]= s4[-1]= s4[0]=play s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|it pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=it +O w[-2]=you w[-1]=play w[0]=it wl[-2]=you wl[-1]=play wl[0]=it pos[-2]=PRP pos[-1]=VB pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=y p1[-1]=p p1[0]=i p2[-2]=yo p2[-1]=pl p2[0]=it p3[-2]=you p3[-1]=pla p3[0]= p4[-2]= p4[-1]=play p4[0]= s1[-2]=u s1[-1]=y s1[0]=t s2[-2]=ou s2[-1]=ay s2[0]=it s3[-2]=you s3[-1]=lay s3[0]= s4[-2]= s4[-1]=play s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|it pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play __EOS__ + +O w[0]=and w[1]=play w[2]=it wl[0]=and wl[1]=play wl[2]=it pos[0]=CC pos[1]=VB pos[2]=PRP chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=a p1[1]=p p1[2]=i p2[0]=an p2[1]=pl p2[2]=it p3[0]=and p3[1]=pla p3[2]= p4[0]= p4[1]=play p4[2]= s1[0]=d s1[1]=y s1[2]=t s2[0]=nd s2[1]=ay s2[2]=it s3[0]=and s3[1]=lay s3[2]= s4[0]= s4[1]=play s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=and|play w[1]|w[2]=play|it pos[0]|pos[1]=CC|VB pos[1]|pos[2]=VB|PRP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=play w[1..4]=it __BOS__ +O w[-1]=and w[0]=play w[1]=it wl[-1]=and wl[0]=play wl[1]=it pos[-1]=CC pos[0]=VB pos[1]=PRP chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=a p1[0]=p p1[1]=i p2[-1]=an p2[0]=pl p2[1]=it p3[-1]=and p3[0]=pla p3[1]= p4[-1]= p4[0]=play p4[1]= s1[-1]=d s1[0]=y s1[1]=t s2[-1]=nd s2[0]=ay s2[1]=it s3[-1]=and s3[0]=lay s3[1]= s4[-1]= s4[0]=play s4[1]= 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=and|play w[0]|w[1]=play|it pos[-1]|pos[0]=CC|VB pos[0]|pos[1]=VB|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=and w[1..4]=it +O w[-2]=and w[-1]=play w[0]=it wl[-2]=and wl[-1]=play wl[0]=it pos[-2]=CC pos[-1]=VB pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=a p1[-1]=p p1[0]=i p2[-2]=an p2[-1]=pl p2[0]=it p3[-2]=and p3[-1]=pla p3[0]= p4[-2]= p4[-1]=play p4[0]= s1[-2]=d s1[-1]=y s1[0]=t s2[-2]=nd s2[-1]=ay s2[0]=it s3[-2]=and s3[-1]=lay s3[0]= s4[-2]= s4[-1]=play s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=and|play w[-1]|w[0]=play|it pos[-2]|pos[-1]=CC|VB pos[-1]|pos[0]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=and w[-4..-1]=play __EOS__ + +O w[0]=shuffle w[1]=them wl[0]=shuffle wl[1]=them pos[0]=VB pos[1]=PRP chk[0]=O chk[1]=O shape[0]=LLLLLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=s p1[1]=t p2[0]=sh p2[1]=th p3[0]=shu p3[1]=the p4[0]=shuf p4[1]=them s1[0]=e s1[1]=m s2[0]=le s2[1]=em s3[0]=fle s3[1]=hem s4[0]=ffle s4[1]=them 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=shuffle|them pos[0]|pos[1]=VB|PRP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=them __BOS__ +O w[-1]=shuffle w[0]=them wl[-1]=shuffle wl[0]=them pos[-1]=VB pos[0]=PRP chk[-1]=O chk[0]=O shape[-1]=LLLLLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=s p1[0]=t p2[-1]=sh p2[0]=th p3[-1]=shu p3[0]=the p4[-1]=shuf p4[0]=them s1[-1]=e s1[0]=m s2[-1]=le s2[0]=em s3[-1]=fle s3[0]=hem s4[-1]=ffle s4[0]=them 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=shuffle|them pos[-1]|pos[0]=VB|PRP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=shuffle __EOS__ + +O w[0]=shuffle w[1]=this w[2]=playlist wl[0]=shuffle wl[1]=this wl[2]=playlist pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLLL shape[1]=LLLL shape[2]=LLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=p p2[0]=sh p2[1]=th p2[2]=pl p3[0]=shu p3[1]=thi p3[2]=pla p4[0]=shuf p4[1]=this p4[2]=play s1[0]=e s1[1]=s s1[2]=t s2[0]=le s2[1]=is s2[2]=st s3[0]=fle s3[1]=his s3[2]=ist s4[0]=ffle s4[1]=this s4[2]=list 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=shuffle|this w[1]|w[2]=this|playlist pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=playlist __BOS__ +O w[-1]=shuffle w[0]=this w[1]=playlist wl[-1]=shuffle wl[0]=this wl[1]=playlist pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLLL shape[0]=LLLL shape[1]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=s p1[0]=t p1[1]=p p2[-1]=sh p2[0]=th p2[1]=pl p3[-1]=shu p3[0]=thi p3[1]=pla p4[-1]=shuf p4[0]=this p4[1]=play s1[-1]=e s1[0]=s s1[1]=t s2[-1]=le s2[0]=is s2[1]=st s3[-1]=fle s3[0]=his s3[1]=ist s4[-1]=ffle s4[0]=this s4[1]=list 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=shuffle|this w[0]|w[1]=this|playlist pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=shuffle w[1..4]=playlist +O w[-2]=shuffle w[-1]=this w[0]=playlist wl[-2]=shuffle wl[-1]=this wl[0]=playlist pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLLL shape[-1]=LLLL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=t p1[0]=p p2[-2]=sh p2[-1]=th p2[0]=pl p3[-2]=shu p3[-1]=thi p3[0]=pla p4[-2]=shuf p4[-1]=this p4[0]=play s1[-2]=e s1[-1]=s s1[0]=t s2[-2]=le s2[-1]=is s2[0]=st s3[-2]=fle s3[-1]=his s3[0]=ist s4[-2]=ffle s4[-1]=this s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=shuffle|this w[-1]|w[0]=this|playlist pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=shuffle w[-4..-1]=this __EOS__ + +O w[0]=shuffle w[1]=mode w[2]=on wl[0]=shuffle wl[1]=mode wl[2]=on pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=m p1[2]=o p2[0]=sh p2[1]=mo p2[2]=on p3[0]=shu p3[1]=mod p3[2]= p4[0]=shuf p4[1]=mode p4[2]= s1[0]=e s1[1]=e s1[2]=n s2[0]=le s2[1]=de s2[2]=on s3[0]=fle s3[1]=ode s3[2]= s4[0]=ffle s4[1]=mode s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=shuffle|mode w[1]|w[2]=mode|on pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=mode w[1..4]=on __BOS__ +O w[-1]=shuffle w[0]=mode w[1]=on wl[-1]=shuffle wl[0]=mode wl[1]=on pos[-1]=VB pos[0]=NN pos[1]=IN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLLL shape[0]=LLLL shape[1]=LL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=s p1[0]=m p1[1]=o p2[-1]=sh p2[0]=mo p2[1]=on p3[-1]=shu p3[0]=mod p3[1]= p4[-1]=shuf p4[0]=mode p4[1]= s1[-1]=e s1[0]=e s1[1]=n s2[-1]=le s2[0]=de s2[1]=on s3[-1]=fle s3[0]=ode s3[1]= s4[-1]=ffle s4[0]=mode s4[1]= 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=shuffle|mode w[0]|w[1]=mode|on pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=shuffle w[1..4]=on +O w[-2]=shuffle w[-1]=mode w[0]=on wl[-2]=shuffle wl[-1]=mode wl[0]=on pos[-2]=VB pos[-1]=NN pos[0]=IN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLLL shape[-1]=LLLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=m p1[0]=o p2[-2]=sh p2[-1]=mo p2[0]=on p3[-2]=shu p3[-1]=mod p3[0]= p4[-2]=shuf p4[-1]=mode p4[0]= s1[-2]=e s1[-1]=e s1[0]=n s2[-2]=le s2[-1]=de s2[0]=on s3[-2]=fle s3[-1]=ode s3[0]= s4[-2]=ffle s4[-1]=mode s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=shuffle|mode w[-1]|w[0]=mode|on pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=shuffle w[-4..-1]=mode __EOS__ + +O w[0]=turn w[1]=on w[2]=shuffle wl[0]=turn wl[1]=on wl[2]=shuffle pos[0]=VB pos[1]=RP pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=o p1[2]=s p2[0]=tu p2[1]=on p2[2]=sh p3[0]=tur p3[1]= p3[2]=shu p4[0]=turn p4[1]= p4[2]=shuf s1[0]=n s1[1]=n s1[2]=e s2[0]=rn s2[1]=on s2[2]=le s3[0]=urn s3[1]= s3[2]=fle s4[0]=turn s4[1]= s4[2]=ffle 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=turn|on w[1]|w[2]=on|shuffle pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=shuffle w[1..4]=mode __BOS__ +O w[-1]=turn w[0]=on w[1]=shuffle w[2]=mode wl[-1]=turn wl[0]=on wl[1]=shuffle wl[2]=mode pos[-1]=VB pos[0]=RP pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=t p1[0]=o p1[1]=s p1[2]=m p2[-1]=tu p2[0]=on p2[1]=sh p2[2]=mo p3[-1]=tur p3[0]= p3[1]=shu p3[2]=mod p4[-1]=turn p4[0]= p4[1]=shuf p4[2]=mode s1[-1]=n s1[0]=n s1[1]=e s1[2]=e s2[-1]=rn s2[0]=on s2[1]=le s2[2]=de s3[-1]=urn s3[0]= s3[1]=fle s3[2]=ode s4[-1]=turn s4[0]= s4[1]=ffle s4[2]=mode 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=turn|on w[0]|w[1]=on|shuffle w[1]|w[2]=shuffle|mode pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[1..4]=shuffle w[1..4]=mode +O w[-2]=turn w[-1]=on w[0]=shuffle w[1]=mode wl[-2]=turn wl[-1]=on wl[0]=shuffle wl[1]=mode pos[-2]=VB pos[-1]=RP pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=o p1[0]=s p1[1]=m p2[-2]=tu p2[-1]=on p2[0]=sh p2[1]=mo p3[-2]=tur p3[-1]= p3[0]=shu p3[1]=mod p4[-2]=turn p4[-1]= p4[0]=shuf p4[1]=mode s1[-2]=n s1[-1]=n s1[0]=e s1[1]=e s2[-2]=rn s2[-1]=on s2[0]=le s2[1]=de s3[-2]=urn s3[-1]= s3[0]=fle s3[1]=ode s4[-2]=turn s4[-1]= s4[0]=ffle s4[1]=mode 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=turn|on w[-1]|w[0]=on|shuffle w[0]|w[1]=shuffle|mode pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[1..4]=mode +O w[-2]=on w[-1]=shuffle w[0]=mode wl[-2]=on wl[-1]=shuffle wl[0]=mode pos[-2]=RP pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=s p1[0]=m p2[-2]=on p2[-1]=sh p2[0]=mo p3[-2]= p3[-1]=shu p3[0]=mod p4[-2]= p4[-1]=shuf p4[0]=mode s1[-2]=n s1[-1]=e s1[0]=e s2[-2]=on s2[-1]=le s2[0]=de s3[-2]= s3[-1]=fle s3[0]=ode s4[-2]= s4[-1]=ffle s4[0]=mode 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=on|shuffle w[-1]|w[0]=shuffle|mode pos[-2]|pos[-1]=RP|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=shuffle __EOS__ + +O w[0]=shuffle wl[0]=shuffle pos[0]=VB chk[0]=O shape[0]=LLLLLLL shaped[0]=L type[0]=AllLetter p1[0]=s p2[0]=sh p3[0]=shu p4[0]=shuf s1[0]=e s2[0]=le s3[0]=fle s4[0]=ffle 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=play w[1]=some w[2]=rock wl[0]=play wl[1]=some wl[2]=rock pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=r p2[0]=pl p2[1]=so p2[2]=ro p3[0]=pla p3[1]=som p3[2]=roc p4[0]=play p4[1]=some p4[2]=rock s1[0]=y s1[1]=e s1[2]=k s2[0]=ay s2[1]=me s2[2]=ck s3[0]=lay s3[1]=ome s3[2]=ock s4[0]=play s4[1]=some s4[2]=rock 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|some w[1]|w[2]=some|rock pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=some w[1..4]=rock w[1..4]=music __BOS__ +O w[-1]=play w[0]=some w[1]=rock w[2]=music wl[-1]=play wl[0]=some wl[1]=rock wl[2]=music pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=r p1[2]=m p2[-1]=pl p2[0]=so p2[1]=ro p2[2]=mu p3[-1]=pla p3[0]=som p3[1]=roc p3[2]=mus p4[-1]=play p4[0]=some p4[1]=rock p4[2]=musi s1[-1]=y s1[0]=e s1[1]=k s1[2]=c s2[-1]=ay s2[0]=me s2[1]=ck s2[2]=ic s3[-1]=lay s3[0]=ome s3[1]=ock s3[2]=sic s4[-1]=play s4[0]=some s4[1]=rock s4[2]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|some w[0]|w[1]=some|rock w[1]|w[2]=rock|music pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=rock w[1..4]=music +genre w[-2]=play w[-1]=some w[0]=rock w[1]=music wl[-2]=play wl[-1]=some wl[0]=rock wl[1]=music pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=s p1[0]=r p1[1]=m p2[-2]=pl p2[-1]=so p2[0]=ro p2[1]=mu p3[-2]=pla p3[-1]=som p3[0]=roc p3[1]=mus p4[-2]=play p4[-1]=some p4[0]=rock p4[1]=musi s1[-2]=y s1[-1]=e s1[0]=k s1[1]=c s2[-2]=ay s2[-1]=me s2[0]=ck s2[1]=ic s3[-2]=lay s3[-1]=ome s3[0]=ock s3[1]=sic s4[-2]=play s4[-1]=some s4[0]=rock s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|some w[-1]|w[0]=some|rock w[0]|w[1]=rock|music pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[1..4]=music +O w[-2]=some w[-1]=rock w[0]=music wl[-2]=some wl[-1]=rock wl[0]=music pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=r p1[0]=m p2[-2]=so p2[-1]=ro p2[0]=mu p3[-2]=som p3[-1]=roc p3[0]=mus p4[-2]=some p4[-1]=rock p4[0]=musi s1[-2]=e s1[-1]=k s1[0]=c s2[-2]=me s2[-1]=ck s2[0]=ic s3[-2]=ome s3[-1]=ock s3[0]=sic s4[-2]=some s4[-1]=rock s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|rock w[-1]|w[0]=rock|music pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=rock __EOS__ + +O w[0]=just w[1]=play w[2]=music wl[0]=just wl[1]=play wl[2]=music pos[0]=RB pos[1]=VBP pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=j p1[1]=p p1[2]=m p2[0]=ju p2[1]=pl p2[2]=mu p3[0]=jus p3[1]=pla p3[2]=mus p4[0]=just p4[1]=play p4[2]=musi s1[0]=t s1[1]=y s1[2]=c s2[0]=st s2[1]=ay s2[2]=ic s3[0]=ust s3[1]=lay s3[2]=sic s4[0]=just s4[1]=play s4[2]=usic 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=just|play w[1]|w[2]=play|music pos[0]|pos[1]=RB|VBP pos[1]|pos[2]=VBP|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=play w[1..4]=music w[1..4]=for w[1..4]=me __BOS__ +O w[-1]=just w[0]=play w[1]=music w[2]=for wl[-1]=just wl[0]=play wl[1]=music wl[2]=for pos[-1]=RB pos[0]=VBP pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=j p1[0]=p p1[1]=m p1[2]=f p2[-1]=ju p2[0]=pl p2[1]=mu p2[2]=fo p3[-1]=jus p3[0]=pla p3[1]=mus p3[2]=for p4[-1]=just p4[0]=play p4[1]=musi p4[2]= s1[-1]=t s1[0]=y s1[1]=c s1[2]=r s2[-1]=st s2[0]=ay s2[1]=ic s2[2]=or s3[-1]=ust s3[0]=lay s3[1]=sic s3[2]=for s4[-1]=just s4[0]=play s4[1]=usic s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=just|play w[0]|w[1]=play|music w[1]|w[2]=music|for pos[-1]|pos[0]=RB|VBP pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=just w[1..4]=music w[1..4]=for w[1..4]=me +O w[-2]=just w[-1]=play w[0]=music w[1]=for w[2]=me wl[-2]=just wl[-1]=play wl[0]=music wl[1]=for wl[2]=me pos[-2]=RB pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=j p1[-1]=p p1[0]=m p1[1]=f p1[2]=m p2[-2]=ju p2[-1]=pl p2[0]=mu p2[1]=fo p2[2]=me p3[-2]=jus p3[-1]=pla p3[0]=mus p3[1]=for p3[2]= p4[-2]=just p4[-1]=play p4[0]=musi p4[1]= p4[2]= s1[-2]=t s1[-1]=y s1[0]=c s1[1]=r s1[2]=e s2[-2]=st s2[-1]=ay s2[0]=ic s2[1]=or s2[2]=me s3[-2]=ust s3[-1]=lay s3[0]=sic s3[1]=for s3[2]= s4[-2]=just s4[-1]=play s4[0]=usic s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=just|play w[-1]|w[0]=play|music w[0]|w[1]=music|for w[1]|w[2]=for|me pos[-2]|pos[-1]=RB|VBP pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=just w[-4..-1]=play w[1..4]=for w[1..4]=me +O w[-2]=play w[-1]=music w[0]=for w[1]=me wl[-2]=play wl[-1]=music wl[0]=for wl[1]=me pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLL shape[1]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=m p1[0]=f p1[1]=m p2[-2]=pl p2[-1]=mu p2[0]=fo p2[1]=me p3[-2]=pla p3[-1]=mus p3[0]=for p3[1]= p4[-2]=play p4[-1]=musi p4[0]= p4[1]= s1[-2]=y s1[-1]=c s1[0]=r s1[1]=e s2[-2]=ay s2[-1]=ic s2[0]=or s2[1]=me s3[-2]=lay s3[-1]=sic s3[0]=for s3[1]= s4[-2]=play s4[-1]=usic s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|music w[-1]|w[0]=music|for w[0]|w[1]=for|me pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=just w[-4..-1]=play w[-4..-1]=music w[1..4]=me +O w[-2]=music w[-1]=for w[0]=me wl[-2]=music wl[-1]=for wl[0]=me pos[-2]=NN pos[-1]=IN pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=f p1[0]=m p2[-2]=mu p2[-1]=fo p2[0]=me p3[-2]=mus p3[-1]=for p3[0]= p4[-2]=musi p4[-1]= p4[0]= s1[-2]=c s1[-1]=r s1[0]=e s2[-2]=ic s2[-1]=or s2[0]=me s3[-2]=sic s3[-1]=for s3[0]= s4[-2]=usic s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=music|for w[-1]|w[0]=for|me pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=just w[-4..-1]=play w[-4..-1]=music w[-4..-1]=for __EOS__ + +O w[0]=play w[1]=genre w[2]=romance wl[0]=play wl[1]=genre wl[2]=romance pos[0]=VBP pos[1]=NN pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=LLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=g p1[2]=r p2[0]=pl p2[1]=ge p2[2]=ro p3[0]=pla p3[1]=gen p3[2]=rom p4[0]=play p4[1]=genr p4[2]=roma s1[0]=y s1[1]=e s1[2]=e s2[0]=ay s2[1]=re s2[2]=ce s3[0]=lay s3[1]=nre s3[2]=nce s4[0]=play s4[1]=enre s4[2]=ance 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|genre w[1]|w[2]=genre|romance pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=genre w[1..4]=romance __BOS__ +O w[-1]=play w[0]=genre w[1]=romance wl[-1]=play wl[0]=genre wl[1]=romance pos[-1]=VBP pos[0]=NN pos[1]=NN chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=g p1[1]=r p2[-1]=pl p2[0]=ge p2[1]=ro p3[-1]=pla p3[0]=gen p3[1]=rom p4[-1]=play p4[0]=genr p4[1]=roma s1[-1]=y s1[0]=e s1[1]=e s2[-1]=ay s2[0]=re s2[1]=ce s3[-1]=lay s3[0]=nre s3[1]=nce s4[-1]=play s4[0]=enre s4[1]=ance 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|genre w[0]|w[1]=genre|romance pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=romance +genre w[-2]=play w[-1]=genre w[0]=romance wl[-2]=play wl[-1]=genre wl[0]=romance pos[-2]=VBP pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=g p1[0]=r p2[-2]=pl p2[-1]=ge p2[0]=ro p3[-2]=pla p3[-1]=gen p3[0]=rom p4[-2]=play p4[-1]=genr p4[0]=roma s1[-2]=y s1[-1]=e s1[0]=e s2[-2]=ay s2[-1]=re s2[0]=ce s3[-2]=lay s3[-1]=nre s3[0]=nce s4[-2]=play s4[-1]=enre s4[0]=ance 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|genre w[-1]|w[0]=genre|romance pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=genre __EOS__ + +O w[0]=play w[1]=song w[2]=The wl[0]=play wl[1]=song wl[2]=the pos[0]=VBP pos[1]=NN pos[2]=DT chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=T p2[0]=pl p2[1]=so p2[2]=Th p3[0]=pla p3[1]=son p3[2]=The p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=e s2[0]=ay s2[1]=ng s2[2]=he s3[0]=lay s3[1]=ong s3[2]=The s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|The pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=The w[1..4]=Nights __BOS__ +O w[-1]=play w[0]=song w[1]=The w[2]=Nights wl[-1]=play wl[0]=song wl[1]=the wl[2]=nights pos[-1]=VBP pos[0]=NN pos[1]=DT pos[2]=DT chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=T p1[2]=N p2[-1]=pl p2[0]=so p2[1]=Th p2[2]=Ni p3[-1]=pla p3[0]=son p3[1]=The p3[2]=Nig p4[-1]=play p4[0]=song p4[1]= p4[2]=Nigh s1[-1]=y s1[0]=g s1[1]=e s1[2]=s s2[-1]=ay s2[0]=ng s2[1]=he s2[2]=ts s3[-1]=lay s3[0]=ong s3[1]=The s3[2]=hts s4[-1]=play s4[0]=song s4[1]= s4[2]=ghts 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|The w[1]|w[2]=The|Nights pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|DT pos[1]|pos[2]=DT|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=The w[1..4]=Nights +song w[-2]=play w[-1]=song w[0]=The w[1]=Nights wl[-2]=play wl[-1]=song wl[0]=the wl[1]=nights pos[-2]=VBP pos[-1]=NN pos[0]=DT pos[1]=DT chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=p p1[-1]=s p1[0]=T p1[1]=N p2[-2]=pl p2[-1]=so p2[0]=Th p2[1]=Ni p3[-2]=pla p3[-1]=son p3[0]=The p3[1]=Nig p4[-2]=play p4[-1]=song p4[0]= p4[1]=Nigh s1[-2]=y s1[-1]=g s1[0]=e s1[1]=s s2[-2]=ay s2[-1]=ng s2[0]=he s2[1]=ts s3[-2]=lay s3[-1]=ong s3[0]=The s3[1]=hts s4[-2]=play s4[-1]=song s4[0]= s4[1]=ghts 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|The w[0]|w[1]=The|Nights pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|DT pos[0]|pos[1]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=Nights +song w[-2]=song w[-1]=The w[0]=Nights wl[-2]=song wl[-1]=the wl[0]=nights pos[-2]=NN pos[-1]=DT pos[0]=DT chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=s p1[-1]=T p1[0]=N p2[-2]=so p2[-1]=Th p2[0]=Ni p3[-2]=son p3[-1]=The p3[0]=Nig p4[-2]=song p4[-1]= p4[0]=Nigh s1[-2]=g s1[-1]=e s1[0]=s s2[-2]=ng s2[-1]=he s2[0]=ts s3[-2]=ong s3[-1]=The s3[0]=hts s4[-2]=song s4[-1]= s4[0]=ghts 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|The w[-1]|w[0]=The|Nights pos[-2]|pos[-1]=NN|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=The __EOS__ + +O w[0]=play w[1]=a w[2]=song wl[0]=play wl[1]=a wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=s p2[0]=pl p2[1]= p2[2]=so p3[0]=pla p3[1]= p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=a s1[2]=g s2[0]=ay s2[1]= s2[2]=ng s3[0]=lay s3[1]= s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=song w[1..4]=Another w[1..4]=Brick __BOS__ +O w[-1]=play w[0]=a w[1]=song w[2]=Another wl[-1]=play wl[0]=a wl[1]=song wl[2]=another pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=L shape[1]=LLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=a p1[1]=s p1[2]=A p2[-1]=pl p2[0]= p2[1]=so p2[2]=An p3[-1]=pla p3[0]= p3[1]=son p3[2]=Ano p4[-1]=play p4[0]= p4[1]=song p4[2]=Anot s1[-1]=y s1[0]=a s1[1]=g s1[2]=r s2[-1]=ay s2[0]= s2[1]=ng s2[2]=er s3[-1]=lay s3[0]= s3[1]=ong s3[2]=her s4[-1]=play s4[0]= s4[1]=song s4[2]=ther 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|song w[1]|w[2]=song|Another pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Another w[1..4]=Brick w[1..4]=in +O w[-2]=play w[-1]=a w[0]=song w[1]=Another w[2]=Brick wl[-2]=play wl[-1]=a wl[0]=song wl[1]=another wl[2]=brick pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=s p1[1]=A p1[2]=B p2[-2]=pl p2[-1]= p2[0]=so p2[1]=An p2[2]=Br p3[-2]=pla p3[-1]= p3[0]=son p3[1]=Ano p3[2]=Bri p4[-2]=play p4[-1]= p4[0]=song p4[1]=Anot p4[2]=Bric s1[-2]=y s1[-1]=a s1[0]=g s1[1]=r s1[2]=k s2[-2]=ay s2[-1]= s2[0]=ng s2[1]=er s2[2]=ck s3[-2]=lay s3[-1]= s3[0]=ong s3[1]=her s3[2]=ick s4[-2]=play s4[-1]= s4[0]=song s4[1]=ther s4[2]=rick 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|song w[0]|w[1]=song|Another w[1]|w[2]=Another|Brick pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=a w[1..4]=Another w[1..4]=Brick w[1..4]=in w[1..4]=the +song w[-2]=a w[-1]=song w[0]=Another w[1]=Brick w[2]=in wl[-2]=a wl[-1]=song wl[0]=another wl[1]=brick wl[2]=in pos[-2]=DT pos[-1]=NN pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=L shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=a p1[-1]=s p1[0]=A p1[1]=B p1[2]=i p2[-2]= p2[-1]=so p2[0]=An p2[1]=Br p2[2]=in p3[-2]= p3[-1]=son p3[0]=Ano p3[1]=Bri p3[2]= p4[-2]= p4[-1]=song p4[0]=Anot p4[1]=Bric p4[2]= s1[-2]=a s1[-1]=g s1[0]=r s1[1]=k s1[2]=n s2[-2]= s2[-1]=ng s2[0]=er s2[1]=ck s2[2]=in s3[-2]= s3[-1]=ong s3[0]=her s3[1]=ick s3[2]= s4[-2]= s4[-1]=song s4[0]=ther s4[1]=rick s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=a|song w[-1]|w[0]=song|Another w[0]|w[1]=Another|Brick w[1]|w[2]=Brick|in pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[1..4]=Brick w[1..4]=in w[1..4]=the w[1..4]=Wall +song w[-2]=song w[-1]=Another w[0]=Brick w[1]=in w[2]=the wl[-2]=song wl[-1]=another wl[0]=brick wl[1]=in wl[2]=the pos[-2]=NN pos[-1]=DT pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLL shape[1]=LL shape[2]=LLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=A p1[0]=B p1[1]=i p1[2]=t p2[-2]=so p2[-1]=An p2[0]=Br p2[1]=in p2[2]=th p3[-2]=son p3[-1]=Ano p3[0]=Bri p3[1]= p3[2]=the p4[-2]=song p4[-1]=Anot p4[0]=Bric p4[1]= p4[2]= s1[-2]=g s1[-1]=r s1[0]=k s1[1]=n s1[2]=e s2[-2]=ng s2[-1]=er s2[0]=ck s2[1]=in s2[2]=he s3[-2]=ong s3[-1]=her s3[0]=ick s3[1]= s3[2]=the s4[-2]=song s4[-1]=ther s4[0]=rick s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Another w[-1]|w[0]=Another|Brick w[0]|w[1]=Brick|in w[1]|w[2]=in|the pos[-2]|pos[-1]=NN|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[-4..-1]=Another w[1..4]=in w[1..4]=the w[1..4]=Wall +song w[-2]=Another w[-1]=Brick w[0]=in w[1]=the w[2]=Wall wl[-2]=another wl[-1]=brick wl[0]=in wl[1]=the wl[2]=wall pos[-2]=DT pos[-1]=DT pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLLLL shape[-1]=ULLLL shape[0]=LL shape[1]=LLL shape[2]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=A p1[-1]=B p1[0]=i p1[1]=t p1[2]=W p2[-2]=An p2[-1]=Br p2[0]=in p2[1]=th p2[2]=Wa p3[-2]=Ano p3[-1]=Bri p3[0]= p3[1]=the p3[2]=Wal p4[-2]=Anot p4[-1]=Bric p4[0]= p4[1]= p4[2]=Wall s1[-2]=r s1[-1]=k s1[0]=n s1[1]=e s1[2]=l s2[-2]=er s2[-1]=ck s2[0]=in s2[1]=he s2[2]=ll s3[-2]=her s3[-1]=ick s3[0]= s3[1]=the s3[2]=all s4[-2]=ther s4[-1]=rick s4[0]= s4[1]= s4[2]=Wall 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Another|Brick w[-1]|w[0]=Brick|in w[0]|w[1]=in|the w[1]|w[2]=the|Wall pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=a w[-4..-1]=song w[-4..-1]=Another w[-4..-1]=Brick w[1..4]=the w[1..4]=Wall +song w[-2]=Brick w[-1]=in w[0]=the w[1]=Wall wl[-2]=brick wl[-1]=in wl[0]=the wl[1]=wall pos[-2]=DT pos[-1]=DT pos[0]=DT pos[1]=DT chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=LLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=B p1[-1]=i p1[0]=t p1[1]=W p2[-2]=Br p2[-1]=in p2[0]=th p2[1]=Wa p3[-2]=Bri p3[-1]= p3[0]=the p3[1]=Wal p4[-2]=Bric p4[-1]= p4[0]= p4[1]=Wall s1[-2]=k s1[-1]=n s1[0]=e s1[1]=l s2[-2]=ck s2[-1]=in s2[0]=he s2[1]=ll s3[-2]=ick s3[-1]= s3[0]=the s3[1]=all s4[-2]=rick s4[-1]= s4[0]= s4[1]=Wall 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Brick|in w[-1]|w[0]=in|the w[0]|w[1]=the|Wall pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=song w[-4..-1]=Another w[-4..-1]=Brick w[-4..-1]=in w[1..4]=Wall +song w[-2]=in w[-1]=the w[0]=Wall wl[-2]=in wl[-1]=the wl[0]=wall pos[-2]=DT pos[-1]=DT pos[0]=DT chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=LLL shape[0]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=i p1[-1]=t p1[0]=W p2[-2]=in p2[-1]=th p2[0]=Wa p3[-2]= p3[-1]=the p3[0]=Wal p4[-2]= p4[-1]= p4[0]=Wall s1[-2]=n s1[-1]=e s1[0]=l s2[-2]=in s2[-1]=he s2[0]=ll s3[-2]= s3[-1]=the s3[0]=all s4[-2]= s4[-1]= s4[0]=Wall 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=in|the w[-1]|w[0]=the|Wall pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Another w[-4..-1]=Brick w[-4..-1]=in w[-4..-1]=the __EOS__ + +O w[0]=play w[1]=Ca w[2]=Marche wl[0]=play wl[1]=ca wl[2]=marche pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=UL shape[2]=ULLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=C p1[2]=M p2[0]=pl p2[1]=Ca p2[2]=Ma p3[0]=pla p3[1]= p3[2]=Mar p4[0]=play p4[1]= p4[2]=Marc s1[0]=y s1[1]=a s1[2]=e s2[0]=ay s2[1]=Ca s2[2]=he s3[0]=lay s3[1]= s3[2]=che s4[0]=play s4[1]= s4[2]=rche 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Ca w[1]|w[2]=Ca|Marche pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Ca w[1..4]=Marche w[1..4]=by w[1..4]=Maitre __BOS__ +song w[-1]=play w[0]=Ca w[1]=Marche w[2]=by wl[-1]=play wl[0]=ca wl[1]=marche wl[2]=by pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=UL shape[1]=ULLLLL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=C p1[1]=M p1[2]=b p2[-1]=pl p2[0]=Ca p2[1]=Ma p2[2]=by p3[-1]=pla p3[0]= p3[1]=Mar p3[2]= p4[-1]=play p4[0]= p4[1]=Marc p4[2]= s1[-1]=y s1[0]=a s1[1]=e s1[2]=y s2[-1]=ay s2[0]=Ca s2[1]=he s2[2]=by s3[-1]=lay s3[0]= s3[1]=che s3[2]= s4[-1]=play s4[0]= s4[1]=rche s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Ca w[0]|w[1]=Ca|Marche w[1]|w[2]=Marche|by pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Marche w[1..4]=by w[1..4]=Maitre w[1..4]=Gims +song w[-2]=play w[-1]=Ca w[0]=Marche w[1]=by w[2]=Maitre wl[-2]=play wl[-1]=ca wl[0]=marche wl[1]=by wl[2]=maitre pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=UL shape[0]=ULLLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=C p1[0]=M p1[1]=b p1[2]=M p2[-2]=pl p2[-1]=Ca p2[0]=Ma p2[1]=by p2[2]=Ma p3[-2]=pla p3[-1]= p3[0]=Mar p3[1]= p3[2]=Mai p4[-2]=play p4[-1]= p4[0]=Marc p4[1]= p4[2]=Mait s1[-2]=y s1[-1]=a s1[0]=e s1[1]=y s1[2]=e s2[-2]=ay s2[-1]=Ca s2[0]=he s2[1]=by s2[2]=re s3[-2]=lay s3[-1]= s3[0]=che s3[1]= s3[2]=tre s4[-2]=play s4[-1]= s4[0]=rche s4[1]= s4[2]=itre 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Ca w[-1]|w[0]=Ca|Marche w[0]|w[1]=Marche|by w[1]|w[2]=by|Maitre pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Ca w[1..4]=by w[1..4]=Maitre w[1..4]=Gims +O w[-2]=Ca w[-1]=Marche w[0]=by w[1]=Maitre w[2]=Gims wl[-2]=ca wl[-1]=marche wl[0]=by wl[1]=maitre wl[2]=gims pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=UL shape[-1]=ULLLLL shape[0]=LL shape[1]=ULLLLL shape[2]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=C p1[-1]=M p1[0]=b p1[1]=M p1[2]=G p2[-2]=Ca p2[-1]=Ma p2[0]=by p2[1]=Ma p2[2]=Gi p3[-2]= p3[-1]=Mar p3[0]= p3[1]=Mai p3[2]=Gim p4[-2]= p4[-1]=Marc p4[0]= p4[1]=Mait p4[2]=Gims s1[-2]=a s1[-1]=e s1[0]=y s1[1]=e s1[2]=s s2[-2]=Ca s2[-1]=he s2[0]=by s2[1]=re s2[2]=ms s3[-2]= s3[-1]=che s3[0]= s3[1]=tre s3[2]=ims s4[-2]= s4[-1]=rche s4[0]= s4[1]=itre s4[2]=Gims 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Ca|Marche w[-1]|w[0]=Marche|by w[0]|w[1]=by|Maitre w[1]|w[2]=Maitre|Gims pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Ca w[-4..-1]=Marche w[1..4]=Maitre w[1..4]=Gims +artist w[-2]=Marche w[-1]=by w[0]=Maitre w[1]=Gims wl[-2]=marche wl[-1]=by wl[0]=maitre wl[1]=gims pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=M p1[-1]=b p1[0]=M p1[1]=G p2[-2]=Ma p2[-1]=by p2[0]=Ma p2[1]=Gi p3[-2]=Mar p3[-1]= p3[0]=Mai p3[1]=Gim p4[-2]=Marc p4[-1]= p4[0]=Mait p4[1]=Gims s1[-2]=e s1[-1]=y s1[0]=e s1[1]=s s2[-2]=he s2[-1]=by s2[0]=re s2[1]=ms s3[-2]=che s3[-1]= s3[0]=tre s3[1]=ims s4[-2]=rche s4[-1]= s4[0]=itre s4[1]=Gims 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Marche|by w[-1]|w[0]=by|Maitre w[0]|w[1]=Maitre|Gims pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Ca w[-4..-1]=Marche w[-4..-1]=by w[1..4]=Gims +artist w[-2]=by w[-1]=Maitre w[0]=Gims wl[-2]=by wl[-1]=maitre wl[0]=gims pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=M p1[0]=G p2[-2]=by p2[-1]=Ma p2[0]=Gi p3[-2]= p3[-1]=Mai p3[0]=Gim p4[-2]= p4[-1]=Mait p4[0]=Gims s1[-2]=y s1[-1]=e s1[0]=s s2[-2]=by s2[-1]=re s2[0]=ms s3[-2]= s3[-1]=tre s3[0]=ims s4[-2]= s4[-1]=itre s4[0]=Gims 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Maitre w[-1]|w[0]=Maitre|Gims pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Ca w[-4..-1]=Marche w[-4..-1]=by w[-4..-1]=Maitre __EOS__ + +O w[0]=play w[1]=any w[2]=song wl[0]=play wl[1]=any wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=s p2[0]=pl p2[1]=an p2[2]=so p3[0]=pla p3[1]=any p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=y s1[2]=g s2[0]=ay s2[1]=ny s2[2]=ng s3[0]=lay s3[1]=any s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|any w[1]|w[2]=any|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=any w[1..4]=song w[1..4]=of w[1..4]=Babbu __BOS__ +O w[-1]=play w[0]=any w[1]=song w[2]=of wl[-1]=play wl[0]=any wl[1]=song wl[2]=of pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=s p1[2]=o p2[-1]=pl p2[0]=an p2[1]=so p2[2]=of p3[-1]=pla p3[0]=any p3[1]=son p3[2]= p4[-1]=play p4[0]= p4[1]=song p4[2]= s1[-1]=y s1[0]=y s1[1]=g s1[2]=f s2[-1]=ay s2[0]=ny s2[1]=ng s2[2]=of s3[-1]=lay s3[0]=any s3[1]=ong s3[2]= s4[-1]=play s4[0]= s4[1]=song s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|any w[0]|w[1]=any|song w[1]|w[2]=song|of pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=song w[1..4]=of w[1..4]=Babbu w[1..4]=Maan +O w[-2]=play w[-1]=any w[0]=song w[1]=of w[2]=Babbu wl[-2]=play wl[-1]=any wl[0]=song wl[1]=of wl[2]=babbu pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=s p1[1]=o p1[2]=B p2[-2]=pl p2[-1]=an p2[0]=so p2[1]=of p2[2]=Ba p3[-2]=pla p3[-1]=any p3[0]=son p3[1]= p3[2]=Bab p4[-2]=play p4[-1]= p4[0]=song p4[1]= p4[2]=Babb s1[-2]=y s1[-1]=y s1[0]=g s1[1]=f s1[2]=u s2[-2]=ay s2[-1]=ny s2[0]=ng s2[1]=of s2[2]=bu s3[-2]=lay s3[-1]=any s3[0]=ong s3[1]= s3[2]=bbu s4[-2]=play s4[-1]= s4[0]=song s4[1]= s4[2]=abbu 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|any w[-1]|w[0]=any|song w[0]|w[1]=song|of w[1]|w[2]=of|Babbu pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=any w[1..4]=of w[1..4]=Babbu w[1..4]=Maan w[1..4]=from +O w[-2]=any w[-1]=song w[0]=of w[1]=Babbu w[2]=Maan wl[-2]=any wl[-1]=song wl[0]=of wl[1]=babbu wl[2]=maan pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=a p1[-1]=s p1[0]=o p1[1]=B p1[2]=M p2[-2]=an p2[-1]=so p2[0]=of p2[1]=Ba p2[2]=Ma p3[-2]=any p3[-1]=son p3[0]= p3[1]=Bab p3[2]=Maa p4[-2]= p4[-1]=song p4[0]= p4[1]=Babb p4[2]=Maan s1[-2]=y s1[-1]=g s1[0]=f s1[1]=u s1[2]=n s2[-2]=ny s2[-1]=ng s2[0]=of s2[1]=bu s2[2]=an s3[-2]=any s3[-1]=ong s3[0]= s3[1]=bbu s3[2]=aan s4[-2]= s4[-1]=song s4[0]= s4[1]=abbu s4[2]=Maan 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=any|song w[-1]|w[0]=song|of w[0]|w[1]=of|Babbu w[1]|w[2]=Babbu|Maan pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=any w[-4..-1]=song w[1..4]=Babbu w[1..4]=Maan w[1..4]=from w[1..4]=my +artist w[-2]=song w[-1]=of w[0]=Babbu w[1]=Maan w[2]=from wl[-2]=song wl[-1]=of wl[0]=babbu wl[1]=maan wl[2]=from pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=s p1[-1]=o p1[0]=B p1[1]=M p1[2]=f p2[-2]=so p2[-1]=of p2[0]=Ba p2[1]=Ma p2[2]=fr p3[-2]=son p3[-1]= p3[0]=Bab p3[1]=Maa p3[2]=fro p4[-2]=song p4[-1]= p4[0]=Babb p4[1]=Maan p4[2]=from s1[-2]=g s1[-1]=f s1[0]=u s1[1]=n s1[2]=m s2[-2]=ng s2[-1]=of s2[0]=bu s2[1]=an s2[2]=om s3[-2]=ong s3[-1]= s3[0]=bbu s3[1]=aan s3[2]=rom s4[-2]=song s4[-1]= s4[0]=abbu s4[1]=Maan s4[2]=from 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|of w[-1]|w[0]=of|Babbu w[0]|w[1]=Babbu|Maan w[1]|w[2]=Maan|from pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=any w[-4..-1]=song w[-4..-1]=of w[1..4]=Maan w[1..4]=from w[1..4]=my w[1..4]=library +artist w[-2]=of w[-1]=Babbu w[0]=Maan w[1]=from w[2]=my wl[-2]=of wl[-1]=babbu wl[0]=maan wl[1]=from wl[2]=my pos[-2]=IN pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=PRP$ chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=o p1[-1]=B p1[0]=M p1[1]=f p1[2]=m p2[-2]=of p2[-1]=Ba p2[0]=Ma p2[1]=fr p2[2]=my p3[-2]= p3[-1]=Bab p3[0]=Maa p3[1]=fro p3[2]= p4[-2]= p4[-1]=Babb p4[0]=Maan p4[1]=from p4[2]= s1[-2]=f s1[-1]=u s1[0]=n s1[1]=m s1[2]=y s2[-2]=of s2[-1]=bu s2[0]=an s2[1]=om s2[2]=my s3[-2]= s3[-1]=bbu s3[0]=aan s3[1]=rom s3[2]= s4[-2]= s4[-1]=abbu s4[0]=Maan s4[1]=from s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=of|Babbu w[-1]|w[0]=Babbu|Maan w[0]|w[1]=Maan|from w[1]|w[2]=from|my pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|PRP$ chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=any w[-4..-1]=song w[-4..-1]=of w[-4..-1]=Babbu w[1..4]=from w[1..4]=my w[1..4]=library +O w[-2]=Babbu w[-1]=Maan w[0]=from w[1]=my w[2]=library wl[-2]=babbu wl[-1]=maan wl[0]=from wl[1]=my wl[2]=library pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=PRP$ pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=O shape[-2]=ULLLL shape[-1]=ULLL shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=B p1[-1]=M p1[0]=f p1[1]=m p1[2]=l p2[-2]=Ba p2[-1]=Ma p2[0]=fr p2[1]=my p2[2]=li p3[-2]=Bab p3[-1]=Maa p3[0]=fro p3[1]= p3[2]=lib p4[-2]=Babb p4[-1]=Maan p4[0]=from p4[1]= p4[2]=libr s1[-2]=u s1[-1]=n s1[0]=m s1[1]=y s1[2]=y s2[-2]=bu s2[-1]=an s2[0]=om s2[1]=my s2[2]=ry s3[-2]=bbu s3[-1]=aan s3[0]=rom s3[1]= s3[2]=ary s4[-2]=abbu s4[-1]=Maan s4[0]=from s4[1]= s4[2]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Babbu|Maan w[-1]|w[0]=Maan|from w[0]|w[1]=from|my w[1]|w[2]=my|library pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=song w[-4..-1]=of w[-4..-1]=Babbu w[-4..-1]=Maan w[1..4]=my w[1..4]=library +O w[-2]=Maan w[-1]=from w[0]=my w[1]=library wl[-2]=maan wl[-1]=from wl[0]=my wl[1]=library pos[-2]=NNP pos[-1]=IN pos[0]=PRP$ pos[1]=NN chk[-2]=I chk[-1]=O chk[0]=O chk[1]=O shape[-2]=ULLL shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=M p1[-1]=f p1[0]=m p1[1]=l p2[-2]=Ma p2[-1]=fr p2[0]=my p2[1]=li p3[-2]=Maa p3[-1]=fro p3[0]= p3[1]=lib p4[-2]=Maan p4[-1]=from p4[0]= p4[1]=libr s1[-2]=n s1[-1]=m s1[0]=y s1[1]=y s2[-2]=an s2[-1]=om s2[0]=my s2[1]=ry s3[-2]=aan s3[-1]=rom s3[0]= s3[1]=ary s4[-2]=Maan s4[-1]=from s4[0]= s4[1]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Maan|from w[-1]|w[0]=from|my w[0]|w[1]=my|library pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=of w[-4..-1]=Babbu w[-4..-1]=Maan w[-4..-1]=from w[1..4]=library +O w[-2]=from w[-1]=my w[0]=library wl[-2]=from wl[-1]=my wl[0]=library pos[-2]=IN pos[-1]=PRP$ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=f p1[-1]=m p1[0]=l p2[-2]=fr p2[-1]=my p2[0]=li p3[-2]=fro p3[-1]= p3[0]=lib p4[-2]=from p4[-1]= p4[0]=libr s1[-2]=m s1[-1]=y s1[0]=y s2[-2]=om s2[-1]=my s2[0]=ry s3[-2]=rom s3[-1]= s3[0]=ary s4[-2]=from s4[-1]= s4[0]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=from|my w[-1]|w[0]=my|library pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=Babbu w[-4..-1]=Maan w[-4..-1]=from w[-4..-1]=my __EOS__ + +artist w[0]=Eminem w[1]=song wl[0]=eminem wl[1]=song pos[0]=NNP pos[1]=NN chk[0]=I chk[1]=O shape[0]=ULLLLL shape[1]=LLLL shaped[0]=UL shaped[1]=L type[0]=InitUpper type[1]=AllLetter p1[0]=E p1[1]=s p2[0]=Em p2[1]=so p3[0]=Emi p3[1]=son p4[0]=Emin p4[1]=song s1[0]=m s1[1]=g s2[0]=em s2[1]=ng s3[0]=nem s3[1]=ong s4[0]=inem s4[1]=song 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=yes iu[1]=no au[0]=no au[1]=no al[0]=no al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=yes cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=Eminem|song pos[0]|pos[1]=NNP|NN chk[0]|chk[1]=I|O shaped[0]|shaped[1]=UL|L type[0]|type[1]=InitUpper|AllLetter w[1..4]=song __BOS__ +O w[-1]=Eminem w[0]=song wl[-1]=eminem wl[0]=song pos[-1]=NNP pos[0]=NN chk[-1]=I chk[0]=O shape[-1]=ULLLLL shape[0]=LLLL shaped[-1]=UL shaped[0]=L type[-1]=InitUpper type[0]=AllLetter p1[-1]=E p1[0]=s p2[-1]=Em p2[0]=so p3[-1]=Emi p3[0]=son p4[-1]=Emin p4[0]=song s1[-1]=m s1[0]=g s2[-1]=em s2[0]=ng s3[-1]=nem s3[0]=ong s4[-1]=inem s4[0]=song 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=yes iu[0]=no au[-1]=no au[0]=no al[-1]=no al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=yes cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=Eminem|song pos[-1]|pos[0]=NNP|NN chk[-1]|chk[0]=I|O shaped[-1]|shaped[0]=UL|L type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=Eminem __EOS__ + +O w[0]=song w[1]=pop wl[0]=song wl[1]=pop pos[0]=JJ pos[1]=NN chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=LLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=s p1[1]=p p2[0]=so p2[1]=po p3[0]=son p3[1]=pop p4[0]=song p4[1]= s1[0]=g s1[1]=p s2[0]=ng s2[1]=op s3[0]=ong s3[1]=pop s4[0]=song s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=song|pop pos[0]|pos[1]=JJ|NN chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=pop __BOS__ +genre w[-1]=song w[0]=pop wl[-1]=song wl[0]=pop pos[-1]=JJ pos[0]=NN chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=LLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=s p1[0]=p p2[-1]=so p2[0]=po p3[-1]=son p3[0]=pop p4[-1]=song p4[0]= s1[-1]=g s1[0]=p s2[-1]=ng s2[0]=op s3[-1]=ong s3[0]=pop s4[-1]=song s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=song|pop pos[-1]|pos[0]=JJ|NN chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=song __EOS__ + +O w[0]=play w[1]=the w[2]=album wl[0]=play wl[1]=the wl[2]=album pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=a p2[0]=pl p2[1]=th p2[2]=al p3[0]=pla p3[1]=the p3[2]=alb p4[0]=play p4[1]= p4[2]=albu s1[0]=y s1[1]=e s1[2]=m s2[0]=ay s2[1]=he s2[2]=um s3[0]=lay s3[1]=the s3[2]=bum s4[0]=play s4[1]= s4[2]=lbum 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|album pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=album w[1..4]=Divorcio w[1..4]=by __BOS__ +O w[-1]=play w[0]=the w[1]=album w[2]=Divorcio wl[-1]=play wl[0]=the wl[1]=album wl[2]=divorcio pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLL shape[2]=ULLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=a p1[2]=D p2[-1]=pl p2[0]=th p2[1]=al p2[2]=Di p3[-1]=pla p3[0]=the p3[1]=alb p3[2]=Div p4[-1]=play p4[0]= p4[1]=albu p4[2]=Divo s1[-1]=y s1[0]=e s1[1]=m s1[2]=o s2[-1]=ay s2[0]=he s2[1]=um s2[2]=io s3[-1]=lay s3[0]=the s3[1]=bum s3[2]=cio s4[-1]=play s4[0]= s4[1]=lbum s4[2]=rcio 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|album w[1]|w[2]=album|Divorcio pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=album w[1..4]=Divorcio w[1..4]=by w[1..4]=Julio +O w[-2]=play w[-1]=the w[0]=album w[1]=Divorcio w[2]=by wl[-2]=play wl[-1]=the wl[0]=album wl[1]=divorcio wl[2]=by pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NNP pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLL shape[1]=ULLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=a p1[1]=D p1[2]=b p2[-2]=pl p2[-1]=th p2[0]=al p2[1]=Di p2[2]=by p3[-2]=pla p3[-1]=the p3[0]=alb p3[1]=Div p3[2]= p4[-2]=play p4[-1]= p4[0]=albu p4[1]=Divo p4[2]= s1[-2]=y s1[-1]=e s1[0]=m s1[1]=o s1[2]=y s2[-2]=ay s2[-1]=he s2[0]=um s2[1]=io s2[2]=by s3[-2]=lay s3[-1]=the s3[0]=bum s3[1]=cio s3[2]= s4[-2]=play s4[-1]= s4[0]=lbum s4[1]=rcio s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|album w[0]|w[1]=album|Divorcio w[1]|w[2]=Divorcio|by pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=Divorcio w[1..4]=by w[1..4]=Julio w[1..4]=Iglesia +album w[-2]=the w[-1]=album w[0]=Divorcio w[1]=by w[2]=Julio wl[-2]=the wl[-1]=album wl[0]=divorcio wl[1]=by wl[2]=julio pos[-2]=DT pos[-1]=NN pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLLLL shape[0]=ULLLLLLL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=a p1[0]=D p1[1]=b p1[2]=J p2[-2]=th p2[-1]=al p2[0]=Di p2[1]=by p2[2]=Ju p3[-2]=the p3[-1]=alb p3[0]=Div p3[1]= p3[2]=Jul p4[-2]= p4[-1]=albu p4[0]=Divo p4[1]= p4[2]=Juli s1[-2]=e s1[-1]=m s1[0]=o s1[1]=y s1[2]=o s2[-2]=he s2[-1]=um s2[0]=io s2[1]=by s2[2]=io s3[-2]=the s3[-1]=bum s3[0]=cio s3[1]= s3[2]=lio s4[-2]= s4[-1]=lbum s4[0]=rcio s4[1]= s4[2]=ulio 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|album w[-1]|w[0]=album|Divorcio w[0]|w[1]=Divorcio|by w[1]|w[2]=by|Julio pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=album w[1..4]=by w[1..4]=Julio w[1..4]=Iglesia +O w[-2]=album w[-1]=Divorcio w[0]=by w[1]=Julio w[2]=Iglesia wl[-2]=album wl[-1]=divorcio wl[0]=by wl[1]=julio wl[2]=iglesia pos[-2]=NN pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLLL shape[-1]=ULLLLLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=a p1[-1]=D p1[0]=b p1[1]=J p1[2]=I p2[-2]=al p2[-1]=Di p2[0]=by p2[1]=Ju p2[2]=Ig p3[-2]=alb p3[-1]=Div p3[0]= p3[1]=Jul p3[2]=Igl p4[-2]=albu p4[-1]=Divo p4[0]= p4[1]=Juli p4[2]=Igle s1[-2]=m s1[-1]=o s1[0]=y s1[1]=o s1[2]=a s2[-2]=um s2[-1]=io s2[0]=by s2[1]=io s2[2]=ia s3[-2]=bum s3[-1]=cio s3[0]= s3[1]=lio s3[2]=sia s4[-2]=lbum s4[-1]=rcio s4[0]= s4[1]=ulio s4[2]=esia 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Divorcio w[-1]|w[0]=Divorcio|by w[0]|w[1]=by|Julio w[1]|w[2]=Julio|Iglesia pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=album w[-4..-1]=Divorcio w[1..4]=Julio w[1..4]=Iglesia +artist w[-2]=Divorcio w[-1]=by w[0]=Julio w[1]=Iglesia wl[-2]=divorcio wl[-1]=by wl[0]=julio wl[1]=iglesia pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=D p1[-1]=b p1[0]=J p1[1]=I p2[-2]=Di p2[-1]=by p2[0]=Ju p2[1]=Ig p3[-2]=Div p3[-1]= p3[0]=Jul p3[1]=Igl p4[-2]=Divo p4[-1]= p4[0]=Juli p4[1]=Igle s1[-2]=o s1[-1]=y s1[0]=o s1[1]=a s2[-2]=io s2[-1]=by s2[0]=io s2[1]=ia s3[-2]=cio s3[-1]= s3[0]=lio s3[1]=sia s4[-2]=rcio s4[-1]= s4[0]=ulio s4[1]=esia 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Divorcio|by w[-1]|w[0]=by|Julio w[0]|w[1]=Julio|Iglesia pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=the w[-4..-1]=album w[-4..-1]=Divorcio w[-4..-1]=by w[1..4]=Iglesia +artist w[-2]=by w[-1]=Julio w[0]=Iglesia wl[-2]=by wl[-1]=julio wl[0]=iglesia pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=J p1[0]=I p2[-2]=by p2[-1]=Ju p2[0]=Ig p3[-2]= p3[-1]=Jul p3[0]=Igl p4[-2]= p4[-1]=Juli p4[0]=Igle s1[-2]=y s1[-1]=o s1[0]=a s2[-2]=by s2[-1]=io s2[0]=ia s3[-2]= s3[-1]=lio s3[0]=sia s4[-2]= s4[-1]=ulio s4[0]=esia 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Julio w[-1]|w[0]=Julio|Iglesia pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=album w[-4..-1]=Divorcio w[-4..-1]=by w[-4..-1]=Julio __EOS__ + +O w[0]=play w[1]=Miracle wl[0]=play wl[1]=miracle pos[0]=VB pos[1]=NN chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=ULLLLLL shaped[0]=L shaped[1]=UL type[0]=AllLetter type[1]=InitUpper p1[0]=p p1[1]=M p2[0]=pl p2[1]=Mi p3[0]=pla p3[1]=Mir p4[0]=play p4[1]=Mira s1[0]=y s1[1]=e s2[0]=ay s2[1]=le s3[0]=lay s3[1]=cle s4[0]=play s4[1]=acle 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|Miracle pos[0]|pos[1]=VB|NN chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|UL type[0]|type[1]=AllLetter|InitUpper w[1..4]=Miracle __BOS__ +song w[-1]=play w[0]=Miracle wl[-1]=play wl[0]=miracle pos[-1]=VB pos[0]=NN chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=ULLLLLL shaped[-1]=L shaped[0]=UL type[-1]=AllLetter type[0]=InitUpper p1[-1]=p p1[0]=M p2[-1]=pl p2[0]=Mi p3[-1]=pla p3[0]=Mir p4[-1]=play p4[0]=Mira s1[-1]=y s1[0]=e s2[-1]=ay s2[0]=le s3[-1]=lay s3[0]=cle s4[-1]=play s4[0]=acle 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|Miracle pos[-1]|pos[0]=VB|NN chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|UL type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play __EOS__ + +O w[0]=I w[1]=wanna w[2]=listen wl[0]=i wl[1]=wanna wl[2]=listen pos[0]=PRP pos[1]=MD pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLLL shape[2]=LLLLLL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=l p2[0]= p2[1]=wa p2[2]=li p3[0]= p3[1]=wan p3[2]=lis p4[0]= p4[1]=wann p4[2]=list s1[0]=I s1[1]=a s1[2]=n s2[0]= s2[1]=na s2[2]=en s3[0]= s3[1]=nna s3[2]=ten s4[0]= s4[1]=anna s4[2]=sten 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|wanna w[1]|w[2]=wanna|listen pos[0]|pos[1]=PRP|MD pos[1]|pos[2]=MD|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=wanna w[1..4]=listen w[1..4]=to w[1..4]=reggae __BOS__ +O w[-1]=I w[0]=wanna w[1]=listen w[2]=to wl[-1]=i wl[0]=wanna wl[1]=listen wl[2]=to pos[-1]=PRP pos[0]=MD pos[1]=VB pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLLL shape[1]=LLLLLL shape[2]=LL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=l p1[2]=t p2[-1]= p2[0]=wa p2[1]=li p2[2]=to p3[-1]= p3[0]=wan p3[1]=lis p3[2]= p4[-1]= p4[0]=wann p4[1]=list p4[2]= s1[-1]=I s1[0]=a s1[1]=n s1[2]=o s2[-1]= s2[0]=na s2[1]=en s2[2]=to s3[-1]= s3[0]=nna s3[1]=ten s3[2]= s4[-1]= s4[0]=anna s4[1]=sten s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|wanna w[0]|w[1]=wanna|listen w[1]|w[2]=listen|to pos[-1]|pos[0]=PRP|MD pos[0]|pos[1]=MD|VB pos[1]|pos[2]=VB|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=listen w[1..4]=to w[1..4]=reggae +O w[-2]=I w[-1]=wanna w[0]=listen w[1]=to w[2]=reggae wl[-2]=i wl[-1]=wanna wl[0]=listen wl[1]=to wl[2]=reggae pos[-2]=PRP pos[-1]=MD pos[0]=VB pos[1]=IN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=U shape[-1]=LLLLL shape[0]=LLLLLL shape[1]=LL shape[2]=LLLLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=l p1[1]=t p1[2]=r p2[-2]= p2[-1]=wa p2[0]=li p2[1]=to p2[2]=re p3[-2]= p3[-1]=wan p3[0]=lis p3[1]= p3[2]=reg p4[-2]= p4[-1]=wann p4[0]=list p4[1]= p4[2]=regg s1[-2]=I s1[-1]=a s1[0]=n s1[1]=o s1[2]=e s2[-2]= s2[-1]=na s2[0]=en s2[1]=to s2[2]=ae s3[-2]= s3[-1]=nna s3[0]=ten s3[1]= s3[2]=gae s4[-2]= s4[-1]=anna s4[0]=sten s4[1]= s4[2]=ggae 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|wanna w[-1]|w[0]=wanna|listen w[0]|w[1]=listen|to w[1]|w[2]=to|reggae pos[-2]|pos[-1]=PRP|MD pos[-1]|pos[0]=MD|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=wanna w[1..4]=to w[1..4]=reggae +O w[-2]=wanna w[-1]=listen w[0]=to w[1]=reggae wl[-2]=wanna wl[-1]=listen wl[0]=to wl[1]=reggae pos[-2]=MD pos[-1]=VB pos[0]=IN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLLL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=w p1[-1]=l p1[0]=t p1[1]=r p2[-2]=wa p2[-1]=li p2[0]=to p2[1]=re p3[-2]=wan p3[-1]=lis p3[0]= p3[1]=reg p4[-2]=wann p4[-1]=list p4[0]= p4[1]=regg s1[-2]=a s1[-1]=n s1[0]=o s1[1]=e s2[-2]=na s2[-1]=en s2[0]=to s2[1]=ae s3[-2]=nna s3[-1]=ten s3[0]= s3[1]=gae s4[-2]=anna s4[-1]=sten s4[0]= s4[1]=ggae 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=wanna|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|reggae pos[-2]|pos[-1]=MD|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=wanna w[-4..-1]=listen w[1..4]=reggae +genre w[-2]=listen w[-1]=to w[0]=reggae wl[-2]=listen wl[-1]=to wl[0]=reggae pos[-2]=VB pos[-1]=IN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=l p1[-1]=t p1[0]=r p2[-2]=li p2[-1]=to p2[0]=re p3[-2]=lis p3[-1]= p3[0]=reg p4[-2]=list p4[-1]= p4[0]=regg s1[-2]=n s1[-1]=o s1[0]=e s2[-2]=en s2[-1]=to s2[0]=ae s3[-2]=ten s3[-1]= s3[0]=gae s4[-2]=sten s4[-1]= s4[0]=ggae 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|reggae pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=wanna w[-4..-1]=listen w[-4..-1]=to __EOS__ + +O w[0]=play w[1]=some w[2]=smooth wl[0]=play wl[1]=some wl[2]=smooth pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=s p2[0]=pl p2[1]=so p2[2]=sm p3[0]=pla p3[1]=som p3[2]=smo p4[0]=play p4[1]=some p4[2]=smoo s1[0]=y s1[1]=e s1[2]=h s2[0]=ay s2[1]=me s2[2]=th s3[0]=lay s3[1]=ome s3[2]=oth s4[0]=play s4[1]=some s4[2]=ooth 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|some w[1]|w[2]=some|smooth pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=some w[1..4]=smooth w[1..4]=jazz __BOS__ +O w[-1]=play w[0]=some w[1]=smooth w[2]=jazz wl[-1]=play wl[0]=some wl[1]=smooth wl[2]=jazz pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=s p1[2]=j p2[-1]=pl p2[0]=so p2[1]=sm p2[2]=ja p3[-1]=pla p3[0]=som p3[1]=smo p3[2]=jaz p4[-1]=play p4[0]=some p4[1]=smoo p4[2]=jazz s1[-1]=y s1[0]=e s1[1]=h s1[2]=z s2[-1]=ay s2[0]=me s2[1]=th s2[2]=zz s3[-1]=lay s3[0]=ome s3[1]=oth s3[2]=azz s4[-1]=play s4[0]=some s4[1]=ooth s4[2]=jazz 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|some w[0]|w[1]=some|smooth w[1]|w[2]=smooth|jazz pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=smooth w[1..4]=jazz +genre w[-2]=play w[-1]=some w[0]=smooth w[1]=jazz wl[-2]=play wl[-1]=some wl[0]=smooth wl[1]=jazz pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=JJ chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=s p1[0]=s p1[1]=j p2[-2]=pl p2[-1]=so p2[0]=sm p2[1]=ja p3[-2]=pla p3[-1]=som p3[0]=smo p3[1]=jaz p4[-2]=play p4[-1]=some p4[0]=smoo p4[1]=jazz s1[-2]=y s1[-1]=e s1[0]=h s1[1]=z s2[-2]=ay s2[-1]=me s2[0]=th s2[1]=zz s3[-2]=lay s3[-1]=ome s3[0]=oth s3[1]=azz s4[-2]=play s4[-1]=some s4[0]=ooth s4[1]=jazz 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|some w[-1]|w[0]=some|smooth w[0]|w[1]=smooth|jazz pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[1..4]=jazz +genre w[-2]=some w[-1]=smooth w[0]=jazz wl[-2]=some wl[-1]=smooth wl[0]=jazz pos[-2]=DT pos[-1]=JJ pos[0]=JJ chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=LLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=s p1[0]=j p2[-2]=so p2[-1]=sm p2[0]=ja p3[-2]=som p3[-1]=smo p3[0]=jaz p4[-2]=some p4[-1]=smoo p4[0]=jazz s1[-2]=e s1[-1]=h s1[0]=z s2[-2]=me s2[-1]=th s2[0]=zz s3[-2]=ome s3[-1]=oth s3[0]=azz s4[-2]=some s4[-1]=ooth s4[0]=jazz 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|smooth w[-1]|w[0]=smooth|jazz pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|JJ chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=smooth __EOS__ + +O w[0]=play w[1]=6 w[2]=Words wl[0]=play wl[1]=6 wl[2]=words pos[0]=VB pos[1]=CD pos[2]=CD chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=D shape[2]=ULLLL shaped[0]=L shaped[1]=D shaped[2]=UL type[0]=AllLetter type[1]=AllDigit type[2]=InitUpper p1[0]=p p1[1]=6 p1[2]=W p2[0]=pl p2[1]= p2[2]=Wo p3[0]=pla p3[1]= p3[2]=Wor p4[0]=play p4[1]= p4[2]=Word s1[0]=y s1[1]=6 s1[2]=s s2[0]=ay s2[1]= s2[2]=ds s3[0]=lay s3[1]= s3[2]=rds s4[0]=play s4[1]= s4[2]=ords 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=yes ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[0]=yes ca[1]=no ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|6 w[1]|w[2]=6|Words pos[0]|pos[1]=VB|CD pos[1]|pos[2]=CD|CD chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|D shaped[1]|shaped[2]=D|UL type[0]|type[1]=AllLetter|AllDigit type[1]|type[2]=AllDigit|InitUpper w[1..4]=6 w[1..4]=Words w[1..4]=by w[1..4]=Wretch __BOS__ +song w[-1]=play w[0]=6 w[1]=Words w[2]=by wl[-1]=play wl[0]=6 wl[1]=words wl[2]=by pos[-1]=VB pos[0]=CD pos[1]=CD pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=D shape[1]=ULLLL shape[2]=LL shaped[-1]=L shaped[0]=D shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllDigit type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=6 p1[1]=W p1[2]=b p2[-1]=pl p2[0]= p2[1]=Wo p2[2]=by p3[-1]=pla p3[0]= p3[1]=Wor p3[2]= p4[-1]=play p4[0]= p4[1]=Word p4[2]= s1[-1]=y s1[0]=6 s1[1]=s s1[2]=y s2[-1]=ay s2[0]= s2[1]=ds s2[2]=by s3[-1]=lay s3[0]= s3[1]=rds s3[2]= s4[-1]=play s4[0]= s4[1]=ords s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=yes ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=no ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|6 w[0]|w[1]=6|Words w[1]|w[2]=Words|by pos[-1]|pos[0]=VB|CD pos[0]|pos[1]=CD|CD pos[1]|pos[2]=CD|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|D shaped[0]|shaped[1]=D|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllDigit type[0]|type[1]=AllDigit|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Words w[1..4]=by w[1..4]=Wretch w[1..4]=32 +song w[-2]=play w[-1]=6 w[0]=Words w[1]=by w[2]=Wretch wl[-2]=play wl[-1]=6 wl[0]=words wl[1]=by wl[2]=wretch pos[-2]=VB pos[-1]=CD pos[0]=CD pos[1]=IN pos[2]=JJ chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=D shape[0]=ULLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=D shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllDigit type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=6 p1[0]=W p1[1]=b p1[2]=W p2[-2]=pl p2[-1]= p2[0]=Wo p2[1]=by p2[2]=Wr p3[-2]=pla p3[-1]= p3[0]=Wor p3[1]= p3[2]=Wre p4[-2]=play p4[-1]= p4[0]=Word p4[1]= p4[2]=Wret s1[-2]=y s1[-1]=6 s1[0]=s s1[1]=y s1[2]=h s2[-2]=ay s2[-1]= s2[0]=ds s2[1]=by s2[2]=ch s3[-2]=lay s3[-1]= s3[0]=rds s3[1]= s3[2]=tch s4[-2]=play s4[-1]= s4[0]=ords s4[1]= s4[2]=etch 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=yes ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|6 w[-1]|w[0]=6|Words w[0]|w[1]=Words|by w[1]|w[2]=by|Wretch pos[-2]|pos[-1]=VB|CD pos[-1]|pos[0]=CD|CD pos[0]|pos[1]=CD|IN pos[1]|pos[2]=IN|JJ chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|D shaped[-1]|shaped[0]=D|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllDigit type[-1]|type[0]=AllDigit|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=6 w[1..4]=by w[1..4]=Wretch w[1..4]=32 w[1..4]=on +O w[-2]=6 w[-1]=Words w[0]=by w[1]=Wretch w[2]=32 wl[-2]=6 wl[-1]=words wl[0]=by wl[1]=wretch wl[2]=32 pos[-2]=CD pos[-1]=CD pos[0]=IN pos[1]=JJ pos[2]=JJ chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=D shape[-1]=ULLLL shape[0]=LL shape[1]=ULLLLL shape[2]=DD shaped[-2]=D shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=D type[-2]=AllDigit type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllDigit p1[-2]=6 p1[-1]=W p1[0]=b p1[1]=W p1[2]=3 p2[-2]= p2[-1]=Wo p2[0]=by p2[1]=Wr p2[2]=32 p3[-2]= p3[-1]=Wor p3[0]= p3[1]=Wre p3[2]= p4[-2]= p4[-1]=Word p4[0]= p4[1]=Wret p4[2]= s1[-2]=6 s1[-1]=s s1[0]=y s1[1]=h s1[2]=2 s2[-2]= s2[-1]=ds s2[0]=by s2[1]=ch s2[2]=32 s3[-2]= s3[-1]=rds s3[0]= s3[1]=tch s3[2]= s4[-2]= s4[-1]=ords s4[0]= s4[1]=etch s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=yes 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=yes ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[-2]=no ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=no cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=6|Words w[-1]|w[0]=Words|by w[0]|w[1]=by|Wretch w[1]|w[2]=Wretch|32 pos[-2]|pos[-1]=CD|CD pos[-1]|pos[0]=CD|IN pos[0]|pos[1]=IN|JJ pos[1]|pos[2]=JJ|JJ chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=D|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|D type[-2]|type[-1]=AllDigit|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllDigit w[-4..-1]=play w[-4..-1]=6 w[-4..-1]=Words w[1..4]=Wretch w[1..4]=32 w[1..4]=on w[1..4]=Spotify +artist w[-2]=Words w[-1]=by w[0]=Wretch w[1]=32 w[2]=on wl[-2]=words wl[-1]=by wl[0]=wretch wl[1]=32 wl[2]=on pos[-2]=CD pos[-1]=IN pos[0]=JJ pos[1]=JJ pos[2]=IN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=DD shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=D shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllDigit type[2]=AllLetter p1[-2]=W p1[-1]=b p1[0]=W p1[1]=3 p1[2]=o p2[-2]=Wo p2[-1]=by p2[0]=Wr p2[1]=32 p2[2]=on p3[-2]=Wor p3[-1]= p3[0]=Wre p3[1]= p3[2]= p4[-2]=Word p4[-1]= p4[0]=Wret p4[1]= p4[2]= s1[-2]=s s1[-1]=y s1[0]=h s1[1]=2 s1[2]=n s2[-2]=ds s2[-1]=by s2[0]=ch s2[1]=32 s2[2]=on s3[-2]=rds s3[-1]= s3[0]=tch s3[1]= s3[2]= s4[-2]=ords s4[-1]= s4[0]=etch s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=yes 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=yes ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=no ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Words|by w[-1]|w[0]=by|Wretch w[0]|w[1]=Wretch|32 w[1]|w[2]=32|on pos[-2]|pos[-1]=CD|IN pos[-1]|pos[0]=IN|JJ pos[0]|pos[1]=JJ|JJ pos[1]|pos[2]=JJ|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|D shaped[1]|shaped[2]=D|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllDigit type[1]|type[2]=AllDigit|AllLetter w[-4..-1]=play w[-4..-1]=6 w[-4..-1]=Words w[-4..-1]=by w[1..4]=32 w[1..4]=on w[1..4]=Spotify +artist w[-2]=by w[-1]=Wretch w[0]=32 w[1]=on w[2]=Spotify wl[-2]=by wl[-1]=wretch wl[0]=32 wl[1]=on wl[2]=spotify pos[-2]=IN pos[-1]=JJ pos[0]=JJ pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=DD shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=D shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllDigit type[1]=AllLetter type[2]=InitUpper p1[-2]=b p1[-1]=W p1[0]=3 p1[1]=o p1[2]=S p2[-2]=by p2[-1]=Wr p2[0]=32 p2[1]=on p2[2]=Sp p3[-2]= p3[-1]=Wre p3[0]= p3[1]= p3[2]=Spo p4[-2]= p4[-1]=Wret p4[0]= p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=h s1[0]=2 s1[1]=n s1[2]=y s2[-2]=by s2[-1]=ch s2[0]=32 s2[1]=on s2[2]=fy s3[-2]= s3[-1]=tch s3[0]= s3[1]= s3[2]=ify s4[-2]= s4[-1]=etch s4[0]= s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=yes 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=yes ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=no ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Wretch w[-1]|w[0]=Wretch|32 w[0]|w[1]=32|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=IN|JJ pos[-1]|pos[0]=JJ|JJ pos[0]|pos[1]=JJ|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|D shaped[0]|shaped[1]=D|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllDigit type[0]|type[1]=AllDigit|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=6 w[-4..-1]=Words w[-4..-1]=by w[-4..-1]=Wretch w[1..4]=on w[1..4]=Spotify +O w[-2]=Wretch w[-1]=32 w[0]=on w[1]=Spotify wl[-2]=wretch wl[-1]=32 wl[0]=on wl[1]=spotify pos[-2]=JJ pos[-1]=JJ pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULLLLL shape[-1]=DD shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=D shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllDigit type[0]=AllLetter type[1]=InitUpper p1[-2]=W p1[-1]=3 p1[0]=o p1[1]=S p2[-2]=Wr p2[-1]=32 p2[0]=on p2[1]=Sp p3[-2]=Wre p3[-1]= p3[0]= p3[1]=Spo p4[-2]=Wret p4[-1]= p4[0]= p4[1]=Spot s1[-2]=h s1[-1]=2 s1[0]=n s1[1]=y s2[-2]=ch s2[-1]=32 s2[0]=on s2[1]=fy s3[-2]=tch s3[-1]= s3[0]= s3[1]=ify s4[-2]=etch s4[-1]= s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=yes 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=yes ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=no ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Wretch|32 w[-1]|w[0]=32|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=JJ|JJ pos[-1]|pos[0]=JJ|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|D shaped[-1]|shaped[0]=D|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllDigit type[-1]|type[0]=AllDigit|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=Words w[-4..-1]=by w[-4..-1]=Wretch w[-4..-1]=32 w[1..4]=Spotify +service w[-2]=32 w[-1]=on w[0]=Spotify wl[-2]=32 wl[-1]=on wl[0]=spotify pos[-2]=JJ pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=DD shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=D shaped[-1]=L shaped[0]=UL type[-2]=AllDigit type[-1]=AllLetter type[0]=InitUpper p1[-2]=3 p1[-1]=o p1[0]=S p2[-2]=32 p2[-1]=on p2[0]=Sp p3[-2]= p3[-1]= p3[0]=Spo p4[-2]= p4[-1]= p4[0]=Spot s1[-2]=2 s1[-1]=n s1[0]=y s2[-2]=32 s2[-1]=on s2[0]=fy s3[-2]= s3[-1]= s3[0]=ify s4[-2]= s4[-1]= s4[0]=tify 2d[-2]=yes 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=yes ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=no cl[-1]=yes cl[0]=yes ca[-2]=no ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=32|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=JJ|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=D|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllDigit|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Wretch w[-4..-1]=32 w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=Led w[2]=Zeppelin wl[0]=play wl[1]=led wl[2]=zeppelin pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=L p1[2]=Z p2[0]=pl p2[1]=Le p2[2]=Ze p3[0]=pla p3[1]=Led p3[2]=Zep p4[0]=play p4[1]= p4[2]=Zepp s1[0]=y s1[1]=d s1[2]=n s2[0]=ay s2[1]=ed s2[2]=in s3[0]=lay s3[1]=Led s3[2]=lin s4[0]=play s4[1]= s4[2]=elin 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Led w[1]|w[2]=Led|Zeppelin pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Led w[1..4]=Zeppelin w[1..4]=two __BOS__ +album w[-1]=play w[0]=Led w[1]=Zeppelin w[2]=two wl[-1]=play wl[0]=led wl[1]=zeppelin wl[2]=two pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLLLL shape[2]=LLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=L p1[1]=Z p1[2]=t p2[-1]=pl p2[0]=Le p2[1]=Ze p2[2]=tw p3[-1]=pla p3[0]=Led p3[1]=Zep p3[2]=two p4[-1]=play p4[0]= p4[1]=Zepp p4[2]= s1[-1]=y s1[0]=d s1[1]=n s1[2]=o s2[-1]=ay s2[0]=ed s2[1]=in s2[2]=wo s3[-1]=lay s3[0]=Led s3[1]=lin s3[2]=two s4[-1]=play s4[0]= s4[1]=elin s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Led w[0]|w[1]=Led|Zeppelin w[1]|w[2]=Zeppelin|two pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Zeppelin w[1..4]=two +album w[-2]=play w[-1]=Led w[0]=Zeppelin w[1]=two wl[-2]=play wl[-1]=led wl[0]=zeppelin wl[1]=two pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLLLL shape[1]=LLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-2]=p p1[-1]=L p1[0]=Z p1[1]=t p2[-2]=pl p2[-1]=Le p2[0]=Ze p2[1]=tw p3[-2]=pla p3[-1]=Led p3[0]=Zep p3[1]=two p4[-2]=play p4[-1]= p4[0]=Zepp p4[1]= s1[-2]=y s1[-1]=d s1[0]=n s1[1]=o s2[-2]=ay s2[-1]=ed s2[0]=in s2[1]=wo s3[-2]=lay s3[-1]=Led s3[0]=lin s3[1]=two s4[-2]=play s4[-1]= s4[0]=elin s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Led w[-1]|w[0]=Led|Zeppelin w[0]|w[1]=Zeppelin|two pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Led w[1..4]=two +album w[-2]=Led w[-1]=Zeppelin w[0]=two wl[-2]=led wl[-1]=zeppelin wl[0]=two pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=ULLLLLLL shape[0]=LLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=L p1[-1]=Z p1[0]=t p2[-2]=Le p2[-1]=Ze p2[0]=tw p3[-2]=Led p3[-1]=Zep p3[0]=two p4[-2]= p4[-1]=Zepp p4[0]= s1[-2]=d s1[-1]=n s1[0]=o s2[-2]=ed s2[-1]=in s2[0]=wo s3[-2]=Led s3[-1]=lin s3[0]=two s4[-2]= s4[-1]=elin s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Led|Zeppelin w[-1]|w[0]=Zeppelin|two pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Led w[-4..-1]=Zeppelin __EOS__ + +O w[0]=reproduce w[1]=a w[2]=the wl[0]=reproduce wl[1]=a wl[2]=the pos[0]=VB pos[1]=DT pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLLLLL shape[1]=L shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=a p1[2]=t p2[0]=re p2[1]= p2[2]=th p3[0]=rep p3[1]= p3[2]=the p4[0]=repr p4[1]= p4[2]= s1[0]=e s1[1]=a s1[2]=e s2[0]=ce s2[1]= s2[2]=he s3[0]=uce s3[1]= s3[2]=the s4[0]=duce s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=reproduce|a w[1]|w[2]=a|the pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=the w[1..4]=track w[1..4]=Monster __BOS__ +O w[-1]=reproduce w[0]=a w[1]=the w[2]=track wl[-1]=reproduce wl[0]=a wl[1]=the wl[2]=track pos[-1]=VB pos[0]=DT pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLLLLLL shape[0]=L shape[1]=LLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=r p1[0]=a p1[1]=t p1[2]=t p2[-1]=re p2[0]= p2[1]=th p2[2]=tr p3[-1]=rep p3[0]= p3[1]=the p3[2]=tra p4[-1]=repr p4[0]= p4[1]= p4[2]=trac s1[-1]=e s1[0]=a s1[1]=e s1[2]=k s2[-1]=ce s2[0]= s2[1]=he s2[2]=ck s3[-1]=uce s3[0]= s3[1]=the s3[2]=ack s4[-1]=duce s4[0]= s4[1]= s4[2]=rack 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=reproduce|a w[0]|w[1]=a|the w[1]|w[2]=the|track pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=reproduce w[1..4]=the w[1..4]=track w[1..4]=Monster w[1..4]=by +O w[-2]=reproduce w[-1]=a w[0]=the w[1]=track w[2]=Monster wl[-2]=reproduce wl[-1]=a wl[0]=the wl[1]=track wl[2]=monster pos[-2]=VB pos[-1]=DT pos[0]=DT pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLLLLLLL shape[-1]=L shape[0]=LLL shape[1]=LLLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=r p1[-1]=a p1[0]=t p1[1]=t p1[2]=M p2[-2]=re p2[-1]= p2[0]=th p2[1]=tr p2[2]=Mo p3[-2]=rep p3[-1]= p3[0]=the p3[1]=tra p3[2]=Mon p4[-2]=repr p4[-1]= p4[0]= p4[1]=trac p4[2]=Mons s1[-2]=e s1[-1]=a s1[0]=e s1[1]=k s1[2]=r s2[-2]=ce s2[-1]= s2[0]=he s2[1]=ck s2[2]=er s3[-2]=uce s3[-1]= s3[0]=the s3[1]=ack s3[2]=ter s4[-2]=duce s4[-1]= s4[0]= s4[1]=rack s4[2]=ster 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=reproduce|a w[-1]|w[0]=a|the w[0]|w[1]=the|track w[1]|w[2]=track|Monster pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=reproduce w[-4..-1]=a w[1..4]=track w[1..4]=Monster w[1..4]=by w[1..4]=Rihanna +O w[-2]=a w[-1]=the w[0]=track w[1]=Monster w[2]=by wl[-2]=a wl[-1]=the wl[0]=track wl[1]=monster wl[2]=by pos[-2]=DT pos[-1]=DT pos[0]=NN pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=L shape[-1]=LLL shape[0]=LLLLL shape[1]=ULLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=a p1[-1]=t p1[0]=t p1[1]=M p1[2]=b p2[-2]= p2[-1]=th p2[0]=tr p2[1]=Mo p2[2]=by p3[-2]= p3[-1]=the p3[0]=tra p3[1]=Mon p3[2]= p4[-2]= p4[-1]= p4[0]=trac p4[1]=Mons p4[2]= s1[-2]=a s1[-1]=e s1[0]=k s1[1]=r s1[2]=y s2[-2]= s2[-1]=he s2[0]=ck s2[1]=er s2[2]=by s3[-2]= s3[-1]=the s3[0]=ack s3[1]=ter s3[2]= s4[-2]= s4[-1]= s4[0]=rack s4[1]=ster s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=a|the w[-1]|w[0]=the|track w[0]|w[1]=track|Monster w[1]|w[2]=Monster|by pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=reproduce w[-4..-1]=a w[-4..-1]=the w[1..4]=Monster w[1..4]=by w[1..4]=Rihanna w[1..4]=ft +song w[-2]=the w[-1]=track w[0]=Monster w[1]=by w[2]=Rihanna wl[-2]=the wl[-1]=track wl[0]=monster wl[1]=by wl[2]=rihanna pos[-2]=DT pos[-1]=NN pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLLLL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=t p1[0]=M p1[1]=b p1[2]=R p2[-2]=th p2[-1]=tr p2[0]=Mo p2[1]=by p2[2]=Ri p3[-2]=the p3[-1]=tra p3[0]=Mon p3[1]= p3[2]=Rih p4[-2]= p4[-1]=trac p4[0]=Mons p4[1]= p4[2]=Riha s1[-2]=e s1[-1]=k s1[0]=r s1[1]=y s1[2]=a s2[-2]=he s2[-1]=ck s2[0]=er s2[1]=by s2[2]=na s3[-2]=the s3[-1]=ack s3[0]=ter s3[1]= s3[2]=nna s4[-2]= s4[-1]=rack s4[0]=ster s4[1]= s4[2]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|track w[-1]|w[0]=track|Monster w[0]|w[1]=Monster|by w[1]|w[2]=by|Rihanna pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=reproduce w[-4..-1]=a w[-4..-1]=the w[-4..-1]=track w[1..4]=by w[1..4]=Rihanna w[1..4]=ft w[1..4]=Eminem +O w[-2]=track w[-1]=Monster w[0]=by w[1]=Rihanna w[2]=ft wl[-2]=track wl[-1]=monster wl[0]=by wl[1]=rihanna wl[2]=ft pos[-2]=NN pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLLL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=t p1[-1]=M p1[0]=b p1[1]=R p1[2]=f p2[-2]=tr p2[-1]=Mo p2[0]=by p2[1]=Ri p2[2]=ft p3[-2]=tra p3[-1]=Mon p3[0]= p3[1]=Rih p3[2]= p4[-2]=trac p4[-1]=Mons p4[0]= p4[1]=Riha p4[2]= s1[-2]=k s1[-1]=r s1[0]=y s1[1]=a s1[2]=t s2[-2]=ck s2[-1]=er s2[0]=by s2[1]=na s2[2]=ft s3[-2]=ack s3[-1]=ter s3[0]= s3[1]=nna s3[2]= s4[-2]=rack s4[-1]=ster s4[0]= s4[1]=anna s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=track|Monster w[-1]|w[0]=Monster|by w[0]|w[1]=by|Rihanna w[1]|w[2]=Rihanna|ft pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=a w[-4..-1]=the w[-4..-1]=track w[-4..-1]=Monster w[1..4]=Rihanna w[1..4]=ft w[1..4]=Eminem +artist w[-2]=Monster w[-1]=by w[0]=Rihanna w[1]=ft w[2]=Eminem wl[-2]=monster wl[-1]=by wl[0]=rihanna wl[1]=ft wl[2]=eminem pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NN pos[2]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=M p1[-1]=b p1[0]=R p1[1]=f p1[2]=E p2[-2]=Mo p2[-1]=by p2[0]=Ri p2[1]=ft p2[2]=Em p3[-2]=Mon p3[-1]= p3[0]=Rih p3[1]= p3[2]=Emi p4[-2]=Mons p4[-1]= p4[0]=Riha p4[1]= p4[2]=Emin s1[-2]=r s1[-1]=y s1[0]=a s1[1]=t s1[2]=m s2[-2]=er s2[-1]=by s2[0]=na s2[1]=ft s2[2]=em s3[-2]=ter s3[-1]= s3[0]=nna s3[1]= s3[2]=nem s4[-2]=ster s4[-1]= s4[0]=anna s4[1]= s4[2]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Monster|by w[-1]|w[0]=by|Rihanna w[0]|w[1]=Rihanna|ft w[1]|w[2]=ft|Eminem pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=track w[-4..-1]=Monster w[-4..-1]=by w[1..4]=ft w[1..4]=Eminem +O w[-2]=by w[-1]=Rihanna w[0]=ft w[1]=Eminem wl[-2]=by wl[-1]=rihanna wl[0]=ft wl[1]=eminem pos[-2]=IN pos[-1]=NNP pos[0]=NN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=b p1[-1]=R p1[0]=f p1[1]=E p2[-2]=by p2[-1]=Ri p2[0]=ft p2[1]=Em p3[-2]= p3[-1]=Rih p3[0]= p3[1]=Emi p4[-2]= p4[-1]=Riha p4[0]= p4[1]=Emin s1[-2]=y s1[-1]=a s1[0]=t s1[1]=m s2[-2]=by s2[-1]=na s2[0]=ft s2[1]=em s3[-2]= s3[-1]=nna s3[0]= s3[1]=nem s4[-2]= s4[-1]=anna s4[0]= s4[1]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=by|Rihanna w[-1]|w[0]=Rihanna|ft w[0]|w[1]=ft|Eminem pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=track w[-4..-1]=Monster w[-4..-1]=by w[-4..-1]=Rihanna w[1..4]=Eminem +artist w[-2]=Rihanna w[-1]=ft w[0]=Eminem wl[-2]=rihanna wl[-1]=ft wl[0]=eminem pos[-2]=NNP pos[-1]=NN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=R p1[-1]=f p1[0]=E p2[-2]=Ri p2[-1]=ft p2[0]=Em p3[-2]=Rih p3[-1]= p3[0]=Emi p4[-2]=Riha p4[-1]= p4[0]=Emin s1[-2]=a s1[-1]=t s1[0]=m s2[-2]=na s2[-1]=ft s2[0]=em s3[-2]=nna s3[-1]= s3[0]=nem s4[-2]=anna s4[-1]= s4[0]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Rihanna|ft w[-1]|w[0]=ft|Eminem pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Monster w[-4..-1]=by w[-4..-1]=Rihanna w[-4..-1]=ft __EOS__ + +O w[0]=I w[1]=want w[2]=you wl[0]=i wl[1]=want wl[2]=you pos[0]=PRP pos[1]=VBP pos[2]=PRP chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LLL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=y p2[0]= p2[1]=wa p2[2]=yo p3[0]= p3[1]=wan p3[2]=you p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=u s2[0]= s2[1]=nt s2[2]=ou s3[0]= s3[1]=ant s3[2]=you s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|you pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|PRP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=you w[1..4]=to w[1..4]=play __BOS__ +O w[-1]=I w[0]=want w[1]=you w[2]=to wl[-1]=i wl[0]=want wl[1]=you wl[2]=to pos[-1]=PRP pos[0]=VBP pos[1]=PRP pos[2]=TO chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LLL shape[2]=LL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=y p1[2]=t p2[-1]= p2[0]=wa p2[1]=yo p2[2]=to p3[-1]= p3[0]=wan p3[1]=you p3[2]= p4[-1]= p4[0]=want p4[1]= p4[2]= s1[-1]=I s1[0]=t s1[1]=u s1[2]=o s2[-1]= s2[0]=nt s2[1]=ou s2[2]=to s3[-1]= s3[0]=ant s3[1]=you s3[2]= s4[-1]= s4[0]=want s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|you w[1]|w[2]=you|to pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|PRP pos[1]|pos[2]=PRP|TO chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=you w[1..4]=to w[1..4]=play w[1..4]=music +O w[-2]=I w[-1]=want w[0]=you w[1]=to w[2]=play wl[-2]=i wl[-1]=want wl[0]=you wl[1]=to wl[2]=play pos[-2]=PRP pos[-1]=VBP pos[0]=PRP pos[1]=TO pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LLL shape[1]=LL shape[2]=LLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=y p1[1]=t p1[2]=p p2[-2]= p2[-1]=wa p2[0]=yo p2[1]=to p2[2]=pl p3[-2]= p3[-1]=wan p3[0]=you p3[1]= p3[2]=pla p4[-2]= p4[-1]=want p4[0]= p4[1]= p4[2]=play s1[-2]=I s1[-1]=t s1[0]=u s1[1]=o s1[2]=y s2[-2]= s2[-1]=nt s2[0]=ou s2[1]=to s2[2]=ay s3[-2]= s3[-1]=ant s3[0]=you s3[1]= s3[2]=lay s4[-2]= s4[-1]=want s4[0]= s4[1]= s4[2]=play 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|you w[0]|w[1]=you|to w[1]|w[2]=to|play pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|PRP pos[0]|pos[1]=PRP|TO pos[1]|pos[2]=TO|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=to w[1..4]=play w[1..4]=music +O w[-2]=want w[-1]=you w[0]=to w[1]=play w[2]=music wl[-2]=want wl[-1]=you wl[0]=to wl[1]=play wl[2]=music pos[-2]=VBP pos[-1]=PRP pos[0]=TO pos[1]=VB pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=y p1[0]=t p1[1]=p p1[2]=m p2[-2]=wa p2[-1]=yo p2[0]=to p2[1]=pl p2[2]=mu p3[-2]=wan p3[-1]=you p3[0]= p3[1]=pla p3[2]=mus p4[-2]=want p4[-1]= p4[0]= p4[1]=play p4[2]=musi s1[-2]=t s1[-1]=u s1[0]=o s1[1]=y s1[2]=c s2[-2]=nt s2[-1]=ou s2[0]=to s2[1]=ay s2[2]=ic s3[-2]=ant s3[-1]=you s3[0]= s3[1]=lay s3[2]=sic s4[-2]=want s4[-1]= s4[0]= s4[1]=play s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|you w[-1]|w[0]=you|to w[0]|w[1]=to|play w[1]|w[2]=play|music pos[-2]|pos[-1]=VBP|PRP pos[-1]|pos[0]=PRP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=you w[1..4]=play w[1..4]=music +O w[-2]=you w[-1]=to w[0]=play w[1]=music wl[-2]=you wl[-1]=to wl[0]=play wl[1]=music pos[-2]=PRP pos[-1]=TO pos[0]=VB pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=y p1[-1]=t p1[0]=p p1[1]=m p2[-2]=yo p2[-1]=to p2[0]=pl p2[1]=mu p3[-2]=you p3[-1]= p3[0]=pla p3[1]=mus p4[-2]= p4[-1]= p4[0]=play p4[1]=musi s1[-2]=u s1[-1]=o s1[0]=y s1[1]=c s2[-2]=ou s2[-1]=to s2[0]=ay s2[1]=ic s3[-2]=you s3[-1]= s3[0]=lay s3[1]=sic s4[-2]= s4[-1]= s4[0]=play s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=you|to w[-1]|w[0]=to|play w[0]|w[1]=play|music pos[-2]|pos[-1]=PRP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=you w[-4..-1]=to w[1..4]=music +O w[-2]=to w[-1]=play w[0]=music wl[-2]=to wl[-1]=play wl[0]=music pos[-2]=TO pos[-1]=VB pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=p p1[0]=m p2[-2]=to p2[-1]=pl p2[0]=mu p3[-2]= p3[-1]=pla p3[0]=mus p4[-2]= p4[-1]=play p4[0]=musi s1[-2]=o s1[-1]=y s1[0]=c s2[-2]=to s2[-1]=ay s2[0]=ic s3[-2]= s3[-1]=lay s3[0]=sic s4[-2]= s4[-1]=play s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|play w[-1]|w[0]=play|music pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=want w[-4..-1]=you w[-4..-1]=to w[-4..-1]=play __EOS__ + +O w[0]=Play w[1]=Five w[2]=Seconds wl[0]=play wl[1]=five wl[2]=seconds pos[0]=VB pos[1]=CD pos[2]=CD chk[0]=O chk[1]=I chk[2]=I shape[0]=ULLL shape[1]=ULLL shape[2]=ULLLLLL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[0]=P p1[1]=F p1[2]=S p2[0]=Pl p2[1]=Fi p2[2]=Se p3[0]=Pla p3[1]=Fiv p3[2]=Sec p4[0]=Play p4[1]=Five p4[2]=Seco s1[0]=y s1[1]=e s1[2]=s s2[0]=ay s2[1]=ve s2[2]=ds s3[0]=lay s3[1]=ive s3[2]=nds s4[0]=Play s4[1]=Five s4[2]=onds 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=Play|Five w[1]|w[2]=Five|Seconds pos[0]|pos[1]=VB|CD pos[1]|pos[2]=CD|CD chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Five w[1..4]=Seconds w[1..4]=of w[1..4]=Summer __BOS__ +artist w[-1]=Play w[0]=Five w[1]=Seconds w[2]=of wl[-1]=play wl[0]=five wl[1]=seconds wl[2]=of pos[-1]=VB pos[0]=CD pos[1]=CD pos[2]=CD chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=ULLL shape[0]=ULLL shape[1]=ULLLLLL shape[2]=LL shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=P p1[0]=F p1[1]=S p1[2]=o p2[-1]=Pl p2[0]=Fi p2[1]=Se p2[2]=of p3[-1]=Pla p3[0]=Fiv p3[1]=Sec p3[2]= p4[-1]=Play p4[0]=Five p4[1]=Seco p4[2]= s1[-1]=y s1[0]=e s1[1]=s s1[2]=f s2[-1]=ay s2[0]=ve s2[1]=ds s2[2]=of s3[-1]=lay s3[0]=ive s3[1]=nds s3[2]= s4[-1]=Play s4[0]=Five s4[1]=onds s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=Play|Five w[0]|w[1]=Five|Seconds w[1]|w[2]=Seconds|of pos[-1]|pos[0]=VB|CD pos[0]|pos[1]=CD|CD pos[1]|pos[2]=CD|CD chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Play w[1..4]=Seconds w[1..4]=of w[1..4]=Summer +artist w[-2]=Play w[-1]=Five w[0]=Seconds w[1]=of w[2]=Summer wl[-2]=play wl[-1]=five wl[0]=seconds wl[1]=of wl[2]=summer pos[-2]=VB pos[-1]=CD pos[0]=CD pos[1]=CD pos[2]=CD chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=ULLL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=P p1[-1]=F p1[0]=S p1[1]=o p1[2]=S p2[-2]=Pl p2[-1]=Fi p2[0]=Se p2[1]=of p2[2]=Su p3[-2]=Pla p3[-1]=Fiv p3[0]=Sec p3[1]= p3[2]=Sum p4[-2]=Play p4[-1]=Five p4[0]=Seco p4[1]= p4[2]=Summ s1[-2]=y s1[-1]=e s1[0]=s s1[1]=f s1[2]=r s2[-2]=ay s2[-1]=ve s2[0]=ds s2[1]=of s2[2]=er s3[-2]=lay s3[-1]=ive s3[0]=nds s3[1]= s3[2]=mer s4[-2]=Play s4[-1]=Five s4[0]=onds s4[1]= s4[2]=mmer 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Play|Five w[-1]|w[0]=Five|Seconds w[0]|w[1]=Seconds|of w[1]|w[2]=of|Summer pos[-2]|pos[-1]=VB|CD pos[-1]|pos[0]=CD|CD pos[0]|pos[1]=CD|CD pos[1]|pos[2]=CD|CD chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Play w[-4..-1]=Five w[1..4]=of w[1..4]=Summer +artist w[-2]=Five w[-1]=Seconds w[0]=of w[1]=Summer wl[-2]=five wl[-1]=seconds wl[0]=of wl[1]=summer pos[-2]=CD pos[-1]=CD pos[0]=CD pos[1]=CD chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=F p1[-1]=S p1[0]=o p1[1]=S p2[-2]=Fi p2[-1]=Se p2[0]=of p2[1]=Su p3[-2]=Fiv p3[-1]=Sec p3[0]= p3[1]=Sum p4[-2]=Five p4[-1]=Seco p4[0]= p4[1]=Summ s1[-2]=e s1[-1]=s s1[0]=f s1[1]=r s2[-2]=ve s2[-1]=ds s2[0]=of s2[1]=er s3[-2]=ive s3[-1]=nds s3[0]= s3[1]=mer s4[-2]=Five s4[-1]=onds s4[0]= s4[1]=mmer 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Five|Seconds w[-1]|w[0]=Seconds|of w[0]|w[1]=of|Summer pos[-2]|pos[-1]=CD|CD pos[-1]|pos[0]=CD|CD pos[0]|pos[1]=CD|CD chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=Play w[-4..-1]=Five w[-4..-1]=Seconds w[1..4]=Summer +artist w[-2]=Seconds w[-1]=of w[0]=Summer wl[-2]=seconds wl[-1]=of wl[0]=summer pos[-2]=CD pos[-1]=CD pos[0]=CD chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=S p1[-1]=o p1[0]=S p2[-2]=Se p2[-1]=of p2[0]=Su p3[-2]=Sec p3[-1]= p3[0]=Sum p4[-2]=Seco p4[-1]= p4[0]=Summ s1[-2]=s s1[-1]=f s1[0]=r s2[-2]=ds s2[-1]=of s2[0]=er s3[-2]=nds s3[-1]= s3[0]=mer s4[-2]=onds s4[-1]= s4[0]=mmer 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Seconds|of w[-1]|w[0]=of|Summer pos[-2]|pos[-1]=CD|CD pos[-1]|pos[0]=CD|CD chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Play w[-4..-1]=Five w[-4..-1]=Seconds w[-4..-1]=of __EOS__ + +O w[0]=play w[1]=song w[2]=by wl[0]=play wl[1]=song wl[2]=by pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=son p3[2]= p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=y s2[0]=ay s2[1]=ng s2[2]=by s3[0]=lay s3[1]=ong s3[2]= s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|by pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=song w[1..4]=by w[1..4]=Nicki w[1..4]=Minaj __BOS__ +O w[-1]=play w[0]=song w[1]=by w[2]=Nicki wl[-1]=play wl[0]=song wl[1]=by wl[2]=nicki pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=N p2[-1]=pl p2[0]=so p2[1]=by p2[2]=Ni p3[-1]=pla p3[0]=son p3[1]= p3[2]=Nic p4[-1]=play p4[0]=song p4[1]= p4[2]=Nick s1[-1]=y s1[0]=g s1[1]=y s1[2]=i s2[-1]=ay s2[0]=ng s2[1]=by s2[2]=ki s3[-1]=lay s3[0]=ong s3[1]= s3[2]=cki s4[-1]=play s4[0]=song s4[1]= s4[2]=icki 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|by w[1]|w[2]=by|Nicki pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Nicki w[1..4]=Minaj +O w[-2]=play w[-1]=song w[0]=by w[1]=Nicki w[2]=Minaj wl[-2]=play wl[-1]=song wl[0]=by wl[1]=nicki wl[2]=minaj pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=b p1[1]=N p1[2]=M p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=Ni p2[2]=Mi p3[-2]=pla p3[-1]=son p3[0]= p3[1]=Nic p3[2]=Min p4[-2]=play p4[-1]=song p4[0]= p4[1]=Nick p4[2]=Mina s1[-2]=y s1[-1]=g s1[0]=y s1[1]=i s1[2]=j s2[-2]=ay s2[-1]=ng s2[0]=by s2[1]=ki s2[2]=aj s3[-2]=lay s3[-1]=ong s3[0]= s3[1]=cki s3[2]=naj s4[-2]=play s4[-1]=song s4[0]= s4[1]=icki s4[2]=inaj 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|by w[0]|w[1]=by|Nicki w[1]|w[2]=Nicki|Minaj pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=Nicki w[1..4]=Minaj +artist w[-2]=song w[-1]=by w[0]=Nicki w[1]=Minaj wl[-2]=song wl[-1]=by wl[0]=nicki wl[1]=minaj pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=b p1[0]=N p1[1]=M p2[-2]=so p2[-1]=by p2[0]=Ni p2[1]=Mi p3[-2]=son p3[-1]= p3[0]=Nic p3[1]=Min p4[-2]=song p4[-1]= p4[0]=Nick p4[1]=Mina s1[-2]=g s1[-1]=y s1[0]=i s1[1]=j s2[-2]=ng s2[-1]=by s2[0]=ki s2[1]=aj s3[-2]=ong s3[-1]= s3[0]=cki s3[1]=naj s4[-2]=song s4[-1]= s4[0]=icki s4[1]=inaj 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|by w[-1]|w[0]=by|Nicki w[0]|w[1]=Nicki|Minaj pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by w[1..4]=Minaj +artist w[-2]=by w[-1]=Nicki w[0]=Minaj wl[-2]=by wl[-1]=nicki wl[0]=minaj pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=N p1[0]=M p2[-2]=by p2[-1]=Ni p2[0]=Mi p3[-2]= p3[-1]=Nic p3[0]=Min p4[-2]= p4[-1]=Nick p4[0]=Mina s1[-2]=y s1[-1]=i s1[0]=j s2[-2]=by s2[-1]=ki s2[0]=aj s3[-2]= s3[-1]=cki s3[0]=naj s4[-2]= s4[-1]=icki s4[0]=inaj 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Nicki w[-1]|w[0]=Nicki|Minaj pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by w[-4..-1]=Nicki __EOS__ + +O w[0]=let's w[1]=hear w[2]=The wl[0]=let's wl[1]=hear wl[2]=the pos[0]=VB pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=I shape[0]=LLL'L shape[1]=LLLL shape[2]=ULL shaped[0]=L'L shaped[1]=L shaped[2]=UL type[0]=NO type[1]=AllLetter type[2]=InitUpper p1[0]=l p1[1]=h p1[2]=T p2[0]=le p2[1]=he p2[2]=Th p3[0]=let p3[1]=hea p3[2]=The p4[0]=let' p4[1]=hear p4[2]= s1[0]=s s1[1]=r s1[2]=e s2[0]='s s2[1]=ar s2[2]=he s3[0]=t's s3[1]=ear s3[2]=The s4[0]=et's s4[1]=hear s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=let's|hear w[1]|w[2]=hear|The pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L'L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=NO|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=hear w[1..4]=The w[1..4]=Beatles __BOS__ +O w[-1]=let's w[0]=hear w[1]=The w[2]=Beatles wl[-1]=let's wl[0]=hear wl[1]=the wl[2]=beatles pos[-1]=VB pos[0]=PRP pos[1]=VB pos[2]=VB chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLL'L shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLLL shaped[-1]=L'L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=NO type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=l p1[0]=h p1[1]=T p1[2]=B p2[-1]=le p2[0]=he p2[1]=Th p2[2]=Be p3[-1]=let p3[0]=hea p3[1]=The p3[2]=Bea p4[-1]=let' p4[0]=hear p4[1]= p4[2]=Beat s1[-1]=s s1[0]=r s1[1]=e s1[2]=s s2[-1]='s s2[0]=ar s2[1]=he s2[2]=es s3[-1]=t's s3[0]=ear s3[1]=The s3[2]=les s4[-1]=et's s4[0]=hear s4[1]= s4[2]=tles 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=let's|hear w[0]|w[1]=hear|The w[1]|w[2]=The|Beatles pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L'L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=NO|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=let's w[1..4]=The w[1..4]=Beatles +artist w[-2]=let's w[-1]=hear w[0]=The w[1]=Beatles wl[-2]=let's wl[-1]=hear wl[0]=the wl[1]=beatles pos[-2]=VB pos[-1]=PRP pos[0]=VB pos[1]=VB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLL'L shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLLL shaped[-2]=L'L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=NO type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=l p1[-1]=h p1[0]=T p1[1]=B p2[-2]=le p2[-1]=he p2[0]=Th p2[1]=Be p3[-2]=let p3[-1]=hea p3[0]=The p3[1]=Bea p4[-2]=let' p4[-1]=hear p4[0]= p4[1]=Beat s1[-2]=s s1[-1]=r s1[0]=e s1[1]=s s2[-2]='s s2[-1]=ar s2[0]=he s2[1]=es s3[-2]=t's s3[-1]=ear s3[0]=The s3[1]=les s4[-2]=et's s4[-1]=hear s4[0]= s4[1]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=let's|hear w[-1]|w[0]=hear|The w[0]|w[1]=The|Beatles pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L'L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=NO|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=let's w[-4..-1]=hear w[1..4]=Beatles +artist w[-2]=hear w[-1]=The w[0]=Beatles wl[-2]=hear wl[-1]=the wl[0]=beatles pos[-2]=PRP pos[-1]=VB pos[0]=VB chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=h p1[-1]=T p1[0]=B p2[-2]=he p2[-1]=Th p2[0]=Be p3[-2]=hea p3[-1]=The p3[0]=Bea p4[-2]=hear p4[-1]= p4[0]=Beat s1[-2]=r s1[-1]=e s1[0]=s s2[-2]=ar s2[-1]=he s2[0]=es s3[-2]=ear s3[-1]=The s3[0]=les s4[-2]=hear s4[-1]= s4[0]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=hear|The w[-1]|w[0]=The|Beatles pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|VB chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=let's w[-4..-1]=hear w[-4..-1]=The __EOS__ + +O w[0]=play w[1]=Do w[2]=I wl[0]=play wl[1]=do wl[2]=i pos[0]=VB pos[1]=VBP pos[2]=VBP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=UL shape[2]=U shaped[0]=L shaped[1]=UL shaped[2]=U type[0]=AllLetter type[1]=InitUpper type[2]=AllUpper p1[0]=p p1[1]=D p1[2]=I p2[0]=pl p2[1]=Do p2[2]= p3[0]=pla p3[1]= p3[2]= p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=o s1[2]=I s2[0]=ay s2[1]=Do s2[2]= s3[0]=lay s3[1]= s3[2]= s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=yes al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Do w[1]|w[2]=Do|I pos[0]|pos[1]=VB|VBP pos[1]|pos[2]=VBP|VBP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|U type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllUpper w[1..4]=Do w[1..4]=I w[1..4]=Wanna w[1..4]=Know __BOS__ +song w[-1]=play w[0]=Do w[1]=I w[2]=Wanna wl[-1]=play wl[0]=do wl[1]=i wl[2]=wanna pos[-1]=VB pos[0]=VBP pos[1]=VBP pos[2]=VBP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=UL shape[1]=U shape[2]=ULLLL shaped[-1]=L shaped[0]=UL shaped[1]=U shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllUpper type[2]=InitUpper p1[-1]=p p1[0]=D p1[1]=I p1[2]=W p2[-1]=pl p2[0]=Do p2[1]= p2[2]=Wa p3[-1]=pla p3[0]= p3[1]= p3[2]=Wan p4[-1]=play p4[0]= p4[1]= p4[2]=Wann s1[-1]=y s1[0]=o s1[1]=I s1[2]=a s2[-1]=ay s2[0]=Do s2[1]= s2[2]=na s3[-1]=lay s3[0]= s3[1]= s3[2]=nna s4[-1]=play s4[0]= s4[1]= s4[2]=anna 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=yes au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Do w[0]|w[1]=Do|I w[1]|w[2]=I|Wanna pos[-1]|pos[0]=VB|VBP pos[0]|pos[1]=VBP|VBP pos[1]|pos[2]=VBP|VBP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|U shaped[1]|shaped[2]=U|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllUpper type[1]|type[2]=AllUpper|InitUpper w[-4..-1]=play w[1..4]=I w[1..4]=Wanna w[1..4]=Know w[1..4]=by +song w[-2]=play w[-1]=Do w[0]=I w[1]=Wanna w[2]=Know wl[-2]=play wl[-1]=do wl[0]=i wl[1]=wanna wl[2]=know pos[-2]=VB pos[-1]=VBP pos[0]=VBP pos[1]=VBP pos[2]=VBP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=UL shape[0]=U shape[1]=ULLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=U shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=D p1[0]=I p1[1]=W p1[2]=K p2[-2]=pl p2[-1]=Do p2[0]= p2[1]=Wa p2[2]=Kn p3[-2]=pla p3[-1]= p3[0]= p3[1]=Wan p3[2]=Kno p4[-2]=play p4[-1]= p4[0]= p4[1]=Wann p4[2]=Know s1[-2]=y s1[-1]=o s1[0]=I s1[1]=a s1[2]=w s2[-2]=ay s2[-1]=Do s2[0]= s2[1]=na s2[2]=ow s3[-2]=lay s3[-1]= s3[0]= s3[1]=nna s3[2]=now s4[-2]=play s4[-1]= s4[0]= s4[1]=anna s4[2]=Know 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=yes au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Do w[-1]|w[0]=Do|I w[0]|w[1]=I|Wanna w[1]|w[2]=Wanna|Know pos[-2]|pos[-1]=VB|VBP pos[-1]|pos[0]=VBP|VBP pos[0]|pos[1]=VBP|VBP pos[1]|pos[2]=VBP|VBP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|U shaped[0]|shaped[1]=U|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllUpper type[0]|type[1]=AllUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Do w[1..4]=Wanna w[1..4]=Know w[1..4]=by w[1..4]=Arctic +song w[-2]=Do w[-1]=I w[0]=Wanna w[1]=Know w[2]=by wl[-2]=do wl[-1]=i wl[0]=wanna wl[1]=know wl[2]=by pos[-2]=VBP pos[-1]=VBP pos[0]=VBP pos[1]=VBP pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=UL shape[-1]=U shape[0]=ULLLL shape[1]=ULLL shape[2]=LL shaped[-2]=UL shaped[-1]=U shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=D p1[-1]=I p1[0]=W p1[1]=K p1[2]=b p2[-2]=Do p2[-1]= p2[0]=Wa p2[1]=Kn p2[2]=by p3[-2]= p3[-1]= p3[0]=Wan p3[1]=Kno p3[2]= p4[-2]= p4[-1]= p4[0]=Wann p4[1]=Know p4[2]= s1[-2]=o s1[-1]=I s1[0]=a s1[1]=w s1[2]=y s2[-2]=Do s2[-1]= s2[0]=na s2[1]=ow s2[2]=by s3[-2]= s3[-1]= s3[0]=nna s3[1]=now s3[2]= s4[-2]= s4[-1]= s4[0]=anna s4[1]=Know s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Do|I w[-1]|w[0]=I|Wanna w[0]|w[1]=Wanna|Know w[1]|w[2]=Know|by pos[-2]|pos[-1]=VBP|VBP pos[-1]|pos[0]=VBP|VBP pos[0]|pos[1]=VBP|VBP pos[1]|pos[2]=VBP|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|U shaped[-1]|shaped[0]=U|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllUpper type[-1]|type[0]=AllUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Do w[-4..-1]=I w[1..4]=Know w[1..4]=by w[1..4]=Arctic w[1..4]=Monkeys +song w[-2]=I w[-1]=Wanna w[0]=Know w[1]=by w[2]=Arctic wl[-2]=i wl[-1]=wanna wl[0]=know wl[1]=by wl[2]=arctic pos[-2]=VBP pos[-1]=VBP pos[0]=VBP pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=U shape[-1]=ULLLL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=U shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=I p1[-1]=W p1[0]=K p1[1]=b p1[2]=A p2[-2]= p2[-1]=Wa p2[0]=Kn p2[1]=by p2[2]=Ar p3[-2]= p3[-1]=Wan p3[0]=Kno p3[1]= p3[2]=Arc p4[-2]= p4[-1]=Wann p4[0]=Know p4[1]= p4[2]=Arct s1[-2]=I s1[-1]=a s1[0]=w s1[1]=y s1[2]=c s2[-2]= s2[-1]=na s2[0]=ow s2[1]=by s2[2]=ic s3[-2]= s3[-1]=nna s3[0]=now s3[1]= s3[2]=tic s4[-2]= s4[-1]=anna s4[0]=Know s4[1]= s4[2]=ctic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|Wanna w[-1]|w[0]=Wanna|Know w[0]|w[1]=Know|by w[1]|w[2]=by|Arctic pos[-2]|pos[-1]=VBP|VBP pos[-1]|pos[0]=VBP|VBP pos[0]|pos[1]=VBP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=U|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Do w[-4..-1]=I w[-4..-1]=Wanna w[1..4]=by w[1..4]=Arctic w[1..4]=Monkeys +O w[-2]=Wanna w[-1]=Know w[0]=by w[1]=Arctic w[2]=Monkeys wl[-2]=wanna wl[-1]=know wl[0]=by wl[1]=arctic wl[2]=monkeys pos[-2]=VBP pos[-1]=VBP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=W p1[-1]=K p1[0]=b p1[1]=A p1[2]=M p2[-2]=Wa p2[-1]=Kn p2[0]=by p2[1]=Ar p2[2]=Mo p3[-2]=Wan p3[-1]=Kno p3[0]= p3[1]=Arc p3[2]=Mon p4[-2]=Wann p4[-1]=Know p4[0]= p4[1]=Arct p4[2]=Monk s1[-2]=a s1[-1]=w s1[0]=y s1[1]=c s1[2]=s s2[-2]=na s2[-1]=ow s2[0]=by s2[1]=ic s2[2]=ys s3[-2]=nna s3[-1]=now s3[0]= s3[1]=tic s3[2]=eys s4[-2]=anna s4[-1]=Know s4[0]= s4[1]=ctic s4[2]=keys 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Wanna|Know w[-1]|w[0]=Know|by w[0]|w[1]=by|Arctic w[1]|w[2]=Arctic|Monkeys pos[-2]|pos[-1]=VBP|VBP pos[-1]|pos[0]=VBP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=Do w[-4..-1]=I w[-4..-1]=Wanna w[-4..-1]=Know w[1..4]=Arctic w[1..4]=Monkeys +artist w[-2]=Know w[-1]=by w[0]=Arctic w[1]=Monkeys wl[-2]=know wl[-1]=by wl[0]=arctic wl[1]=monkeys pos[-2]=VBP pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=K p1[-1]=b p1[0]=A p1[1]=M p2[-2]=Kn p2[-1]=by p2[0]=Ar p2[1]=Mo p3[-2]=Kno p3[-1]= p3[0]=Arc p3[1]=Mon p4[-2]=Know p4[-1]= p4[0]=Arct p4[1]=Monk s1[-2]=w s1[-1]=y s1[0]=c s1[1]=s s2[-2]=ow s2[-1]=by s2[0]=ic s2[1]=ys s3[-2]=now s3[-1]= s3[0]=tic s3[1]=eys s4[-2]=Know s4[-1]= s4[0]=ctic s4[1]=keys 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Know|by w[-1]|w[0]=by|Arctic w[0]|w[1]=Arctic|Monkeys pos[-2]|pos[-1]=VBP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=I w[-4..-1]=Wanna w[-4..-1]=Know w[-4..-1]=by w[1..4]=Monkeys +artist w[-2]=by w[-1]=Arctic w[0]=Monkeys wl[-2]=by wl[-1]=arctic wl[0]=monkeys pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=A p1[0]=M p2[-2]=by p2[-1]=Ar p2[0]=Mo p3[-2]= p3[-1]=Arc p3[0]=Mon p4[-2]= p4[-1]=Arct p4[0]=Monk s1[-2]=y s1[-1]=c s1[0]=s s2[-2]=by s2[-1]=ic s2[0]=ys s3[-2]= s3[-1]=tic s3[0]=eys s4[-2]= s4[-1]=ctic s4[0]=keys 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Arctic w[-1]|w[0]=Arctic|Monkeys pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Wanna w[-4..-1]=Know w[-4..-1]=by w[-4..-1]=Arctic __EOS__ + +O w[0]=play w[1]=Queens w[2]=of wl[0]=play wl[1]=queens wl[2]=of pos[0]=VBP pos[1]=NNPS pos[2]=NNPS chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=Q p1[2]=o p2[0]=pl p2[1]=Qu p2[2]=of p3[0]=pla p3[1]=Que p3[2]= p4[0]=play p4[1]=Quee p4[2]= s1[0]=y s1[1]=s s1[2]=f s2[0]=ay s2[1]=ns s2[2]=of s3[0]=lay s3[1]=ens s3[2]= s4[0]=play s4[1]=eens s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Queens w[1]|w[2]=Queens|of pos[0]|pos[1]=VBP|NNPS pos[1]|pos[2]=NNPS|NNPS chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Queens w[1..4]=of w[1..4]=the w[1..4]=stone __BOS__ +artist w[-1]=play w[0]=Queens w[1]=of w[2]=the wl[-1]=play wl[0]=queens wl[1]=of wl[2]=the pos[-1]=VBP pos[0]=NNPS pos[1]=NNPS pos[2]=NNPS chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLLL shape[1]=LL shape[2]=LLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=Q p1[1]=o p1[2]=t p2[-1]=pl p2[0]=Qu p2[1]=of p2[2]=th p3[-1]=pla p3[0]=Que p3[1]= p3[2]=the p4[-1]=play p4[0]=Quee p4[1]= p4[2]= s1[-1]=y s1[0]=s s1[1]=f s1[2]=e s2[-1]=ay s2[0]=ns s2[1]=of s2[2]=he s3[-1]=lay s3[0]=ens s3[1]= s3[2]=the s4[-1]=play s4[0]=eens s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Queens w[0]|w[1]=Queens|of w[1]|w[2]=of|the pos[-1]|pos[0]=VBP|NNPS pos[0]|pos[1]=NNPS|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=of w[1..4]=the w[1..4]=stone w[1..4]=age +artist w[-2]=play w[-1]=Queens w[0]=of w[1]=the w[2]=stone wl[-2]=play wl[-1]=queens wl[0]=of wl[1]=the wl[2]=stone pos[-2]=VBP pos[-1]=NNPS pos[0]=NNPS pos[1]=NNPS pos[2]=NNPS chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=LL shape[1]=LLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=Q p1[0]=o p1[1]=t p1[2]=s p2[-2]=pl p2[-1]=Qu p2[0]=of p2[1]=th p2[2]=st p3[-2]=pla p3[-1]=Que p3[0]= p3[1]=the p3[2]=sto p4[-2]=play p4[-1]=Quee p4[0]= p4[1]= p4[2]=ston s1[-2]=y s1[-1]=s s1[0]=f s1[1]=e s1[2]=e s2[-2]=ay s2[-1]=ns s2[0]=of s2[1]=he s2[2]=ne s3[-2]=lay s3[-1]=ens s3[0]= s3[1]=the s3[2]=one s4[-2]=play s4[-1]=eens s4[0]= s4[1]= s4[2]=tone 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Queens w[-1]|w[0]=Queens|of w[0]|w[1]=of|the w[1]|w[2]=the|stone pos[-2]|pos[-1]=VBP|NNPS pos[-1]|pos[0]=NNPS|NNPS pos[0]|pos[1]=NNPS|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Queens w[1..4]=the w[1..4]=stone w[1..4]=age +artist w[-2]=Queens w[-1]=of w[0]=the w[1]=stone w[2]=age wl[-2]=queens wl[-1]=of wl[0]=the wl[1]=stone wl[2]=age pos[-2]=NNPS pos[-1]=NNPS pos[0]=NNPS pos[1]=NNPS pos[2]=NNPS chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLLL shape[2]=LLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=Q p1[-1]=o p1[0]=t p1[1]=s p1[2]=a p2[-2]=Qu p2[-1]=of p2[0]=th p2[1]=st p2[2]=ag p3[-2]=Que p3[-1]= p3[0]=the p3[1]=sto p3[2]=age p4[-2]=Quee p4[-1]= p4[0]= p4[1]=ston p4[2]= s1[-2]=s s1[-1]=f s1[0]=e s1[1]=e s1[2]=e s2[-2]=ns s2[-1]=of s2[0]=he s2[1]=ne s2[2]=ge s3[-2]=ens s3[-1]= s3[0]=the s3[1]=one s3[2]=age s4[-2]=eens s4[-1]= s4[0]= s4[1]=tone s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Queens|of w[-1]|w[0]=of|the w[0]|w[1]=the|stone w[1]|w[2]=stone|age pos[-2]|pos[-1]=NNPS|NNPS pos[-1]|pos[0]=NNPS|NNPS pos[0]|pos[1]=NNPS|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Queens w[-4..-1]=of w[1..4]=stone w[1..4]=age +artist w[-2]=of w[-1]=the w[0]=stone w[1]=age wl[-2]=of wl[-1]=the wl[0]=stone wl[1]=age pos[-2]=NNPS pos[-1]=NNPS pos[0]=NNPS pos[1]=NNPS chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LL shape[-1]=LLL shape[0]=LLLLL shape[1]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=o p1[-1]=t p1[0]=s p1[1]=a p2[-2]=of p2[-1]=th p2[0]=st p2[1]=ag p3[-2]= p3[-1]=the p3[0]=sto p3[1]=age p4[-2]= p4[-1]= p4[0]=ston p4[1]= s1[-2]=f s1[-1]=e s1[0]=e s1[1]=e s2[-2]=of s2[-1]=he s2[0]=ne s2[1]=ge s3[-2]= s3[-1]=the s3[0]=one s3[1]=age s4[-2]= s4[-1]= s4[0]=tone s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=of|the w[-1]|w[0]=the|stone w[0]|w[1]=stone|age pos[-2]|pos[-1]=NNPS|NNPS pos[-1]|pos[0]=NNPS|NNPS pos[0]|pos[1]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Queens w[-4..-1]=of w[-4..-1]=the w[1..4]=age +artist w[-2]=the w[-1]=stone w[0]=age wl[-2]=the wl[-1]=stone wl[0]=age pos[-2]=NNPS pos[-1]=NNPS pos[0]=NNPS chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLL shape[-1]=LLLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=s p1[0]=a p2[-2]=th p2[-1]=st p2[0]=ag p3[-2]=the p3[-1]=sto p3[0]=age p4[-2]= p4[-1]=ston p4[0]= s1[-2]=e s1[-1]=e s1[0]=e s2[-2]=he s2[-1]=ne s2[0]=ge s3[-2]=the s3[-1]=one s3[0]=age s4[-2]= s4[-1]=tone s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|stone w[-1]|w[0]=stone|age pos[-2]|pos[-1]=NNPS|NNPS pos[-1]|pos[0]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=Queens w[-4..-1]=of w[-4..-1]=the w[-4..-1]=stone __EOS__ + +O w[0]=play w[1]=Rihanna w[2]=Unfaithful wl[0]=play wl[1]=rihanna wl[2]=unfaithful pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLLLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=R p1[2]=U p2[0]=pl p2[1]=Ri p2[2]=Un p3[0]=pla p3[1]=Rih p3[2]=Unf p4[0]=play p4[1]=Riha p4[2]=Unfa s1[0]=y s1[1]=a s1[2]=l s2[0]=ay s2[1]=na s2[2]=ul s3[0]=lay s3[1]=nna s3[2]=ful s4[0]=play s4[1]=anna s4[2]=hful 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Rihanna w[1]|w[2]=Rihanna|Unfaithful pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Rihanna w[1..4]=Unfaithful w[1..4]=for w[1..4]=me __BOS__ +artist w[-1]=play w[0]=Rihanna w[1]=Unfaithful w[2]=for wl[-1]=play wl[0]=rihanna wl[1]=unfaithful wl[2]=for pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLLLLLLL shape[2]=LLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=R p1[1]=U p1[2]=f p2[-1]=pl p2[0]=Ri p2[1]=Un p2[2]=fo p3[-1]=pla p3[0]=Rih p3[1]=Unf p3[2]=for p4[-1]=play p4[0]=Riha p4[1]=Unfa p4[2]= s1[-1]=y s1[0]=a s1[1]=l s1[2]=r s2[-1]=ay s2[0]=na s2[1]=ul s2[2]=or s3[-1]=lay s3[0]=nna s3[1]=ful s3[2]=for s4[-1]=play s4[0]=anna s4[1]=hful s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Rihanna w[0]|w[1]=Rihanna|Unfaithful w[1]|w[2]=Unfaithful|for pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Unfaithful w[1..4]=for w[1..4]=me +song w[-2]=play w[-1]=Rihanna w[0]=Unfaithful w[1]=for w[2]=me wl[-2]=play wl[-1]=rihanna wl[0]=unfaithful wl[1]=for wl[2]=me pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=PRP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLLLLLLL shape[1]=LLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=R p1[0]=U p1[1]=f p1[2]=m p2[-2]=pl p2[-1]=Ri p2[0]=Un p2[1]=fo p2[2]=me p3[-2]=pla p3[-1]=Rih p3[0]=Unf p3[1]=for p3[2]= p4[-2]=play p4[-1]=Riha p4[0]=Unfa p4[1]= p4[2]= s1[-2]=y s1[-1]=a s1[0]=l s1[1]=r s1[2]=e s2[-2]=ay s2[-1]=na s2[0]=ul s2[1]=or s2[2]=me s3[-2]=lay s3[-1]=nna s3[0]=ful s3[1]=for s3[2]= s4[-2]=play s4[-1]=anna s4[0]=hful s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Rihanna w[-1]|w[0]=Rihanna|Unfaithful w[0]|w[1]=Unfaithful|for w[1]|w[2]=for|me pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|PRP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Rihanna w[1..4]=for w[1..4]=me +O w[-2]=Rihanna w[-1]=Unfaithful w[0]=for w[1]=me wl[-2]=rihanna wl[-1]=unfaithful wl[0]=for wl[1]=me pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=PRP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O shape[-2]=ULLLLLL shape[-1]=ULLLLLLLLL shape[0]=LLL shape[1]=LL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter p1[-2]=R p1[-1]=U p1[0]=f p1[1]=m p2[-2]=Ri p2[-1]=Un p2[0]=fo p2[1]=me p3[-2]=Rih p3[-1]=Unf p3[0]=for p3[1]= p4[-2]=Riha p4[-1]=Unfa p4[0]= p4[1]= s1[-2]=a s1[-1]=l s1[0]=r s1[1]=e s2[-2]=na s2[-1]=ul s2[0]=or s2[1]=me s3[-2]=nna s3[-1]=ful s3[0]=for s3[1]= s4[-2]=anna s4[-1]=hful s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Rihanna|Unfaithful w[-1]|w[0]=Unfaithful|for w[0]|w[1]=for|me pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Rihanna w[-4..-1]=Unfaithful w[1..4]=me +O w[-2]=Unfaithful w[-1]=for w[0]=me wl[-2]=unfaithful wl[-1]=for wl[0]=me pos[-2]=NNP pos[-1]=IN pos[0]=PRP chk[-2]=I chk[-1]=O chk[0]=O shape[-2]=ULLLLLLLLL shape[-1]=LLL shape[0]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter p1[-2]=U p1[-1]=f p1[0]=m p2[-2]=Un p2[-1]=fo p2[0]=me p3[-2]=Unf p3[-1]=for p3[0]= p4[-2]=Unfa p4[-1]= p4[0]= s1[-2]=l s1[-1]=r s1[0]=e s2[-2]=ul s2[-1]=or s2[0]=me s3[-2]=ful s3[-1]=for s3[0]= s4[-2]=hful s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Unfaithful|for w[-1]|w[0]=for|me pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|PRP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Rihanna w[-4..-1]=Unfaithful w[-4..-1]=for __EOS__ + +O w[0]=play w[1]=Ignition w[2]=by wl[0]=play wl[1]=ignition wl[2]=by pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=I p1[2]=b p2[0]=pl p2[1]=Ig p2[2]=by p3[0]=pla p3[1]=Ign p3[2]= p4[0]=play p4[1]=Igni p4[2]= s1[0]=y s1[1]=n s1[2]=y s2[0]=ay s2[1]=on s2[2]=by s3[0]=lay s3[1]=ion s3[2]= s4[0]=play s4[1]=tion s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Ignition w[1]|w[2]=Ignition|by pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Ignition w[1..4]=by w[1..4]=R w[1..4]=Kelly __BOS__ +song w[-1]=play w[0]=Ignition w[1]=by w[2]=R wl[-1]=play wl[0]=ignition wl[1]=by wl[2]=r pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=NN chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=LL shape[2]=U shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=U type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllUpper p1[-1]=p p1[0]=I p1[1]=b p1[2]=R p2[-1]=pl p2[0]=Ig p2[1]=by p2[2]= p3[-1]=pla p3[0]=Ign p3[1]= p3[2]= p4[-1]=play p4[0]=Igni p4[1]= p4[2]= s1[-1]=y s1[0]=n s1[1]=y s1[2]=R s2[-1]=ay s2[0]=on s2[1]=by s2[2]= s3[-1]=lay s3[0]=ion s3[1]= s3[2]= s4[-1]=play s4[0]=tion s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Ignition w[0]|w[1]=Ignition|by w[1]|w[2]=by|R pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|U type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllUpper w[-4..-1]=play w[1..4]=by w[1..4]=R w[1..4]=Kelly +O w[-2]=play w[-1]=Ignition w[0]=by w[1]=R w[2]=Kelly wl[-2]=play wl[-1]=ignition wl[0]=by wl[1]=r wl[2]=kelly pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=LL shape[1]=U shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=U shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllUpper type[2]=InitUpper p1[-2]=p p1[-1]=I p1[0]=b p1[1]=R p1[2]=K p2[-2]=pl p2[-1]=Ig p2[0]=by p2[1]= p2[2]=Ke p3[-2]=pla p3[-1]=Ign p3[0]= p3[1]= p3[2]=Kel p4[-2]=play p4[-1]=Igni p4[0]= p4[1]= p4[2]=Kell s1[-2]=y s1[-1]=n s1[0]=y s1[1]=R s1[2]=y s2[-2]=ay s2[-1]=on s2[0]=by s2[1]= s2[2]=ly s3[-2]=lay s3[-1]=ion s3[0]= s3[1]= s3[2]=lly s4[-2]=play s4[-1]=tion s4[0]= s4[1]= s4[2]=elly 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=yes au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Ignition w[-1]|w[0]=Ignition|by w[0]|w[1]=by|R w[1]|w[2]=R|Kelly pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=Ignition w[1..4]=R w[1..4]=Kelly +artist w[-2]=Ignition w[-1]=by w[0]=R w[1]=Kelly wl[-2]=ignition wl[-1]=by wl[0]=r wl[1]=kelly pos[-2]=NN pos[-1]=IN pos[0]=NN pos[1]=NN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLLL shape[-1]=LL shape[0]=U shape[1]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=U shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllUpper type[1]=InitUpper p1[-2]=I p1[-1]=b p1[0]=R p1[1]=K p2[-2]=Ig p2[-1]=by p2[0]= p2[1]=Ke p3[-2]=Ign p3[-1]= p3[0]= p3[1]=Kel p4[-2]=Igni p4[-1]= p4[0]= p4[1]=Kell s1[-2]=n s1[-1]=y s1[0]=R s1[1]=y s2[-2]=on s2[-1]=by s2[0]= s2[1]=ly s3[-2]=ion s3[-1]= s3[0]= s3[1]=lly s4[-2]=tion s4[-1]= s4[0]= s4[1]=elly 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=yes au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Ignition|by w[-1]|w[0]=by|R w[0]|w[1]=R|Kelly pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=Ignition w[-4..-1]=by w[1..4]=Kelly +artist w[-2]=by w[-1]=R w[0]=Kelly wl[-2]=by wl[-1]=r wl[0]=kelly pos[-2]=IN pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=U shape[0]=ULLLL shaped[-2]=L shaped[-1]=U shaped[0]=UL type[-2]=AllLetter type[-1]=AllUpper type[0]=InitUpper p1[-2]=b p1[-1]=R p1[0]=K p2[-2]=by p2[-1]= p2[0]=Ke p3[-2]= p3[-1]= p3[0]=Kel p4[-2]= p4[-1]= p4[0]=Kell s1[-2]=y s1[-1]=R s1[0]=y s2[-2]=by s2[-1]= s2[0]=ly s3[-2]= s3[-1]= s3[0]=lly s4[-2]= s4[-1]= s4[0]=elly 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=yes au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=no cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|R w[-1]|w[0]=R|Kelly pos[-2]|pos[-1]=IN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|UL type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=Ignition w[-4..-1]=by w[-4..-1]=R __EOS__ + +O w[0]=I'd w[1]=like w[2]=to wl[0]=i'd wl[1]=like wl[2]=to pos[0]=PRP pos[1]=MD pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=U'L shape[1]=LLLL shape[2]=LL shaped[0]=U'L shaped[1]=L shaped[2]=L type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=l p1[2]=t p2[0]=I' p2[1]=li p2[2]=to p3[0]=I'd p3[1]=lik p3[2]= p4[0]= p4[1]=like p4[2]= s1[0]=d s1[1]=e s1[2]=o s2[0]='d s2[1]=ke s2[2]=to s3[0]=I'd s3[1]=ike s3[2]= s4[0]= s4[1]=like s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=I'd|like w[1]|w[2]=like|to pos[0]|pos[1]=PRP|MD pos[1]|pos[2]=MD|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=like w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I'd w[0]=like w[1]=to w[2]=listen wl[-1]=i'd wl[0]=like wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=MD pos[1]=VB pos[2]=TO chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U'L shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U'L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=l p1[1]=t p1[2]=l p2[-1]=I' p2[0]=li p2[1]=to p2[2]=li p3[-1]=I'd p3[0]=lik p3[1]= p3[2]=lis p4[-1]= p4[0]=like p4[1]= p4[2]=list s1[-1]=d s1[0]=e s1[1]=o s1[2]=n s2[-1]='d s2[0]=ke s2[1]=to s2[2]=en s3[-1]=I'd s3[0]=ike s3[1]= s3[2]=ten s4[-1]= s4[0]=like s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I'd|like w[0]|w[1]=like|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|MD pos[0]|pos[1]=MD|VB pos[1]|pos[2]=VB|TO chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U'L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=jazz +O w[-2]=I'd w[-1]=like w[0]=to w[1]=listen w[2]=to wl[-2]=i'd wl[-1]=like wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=MD pos[0]=VB pos[1]=TO pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U'L shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U'L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=l p1[0]=t p1[1]=l p1[2]=t p2[-2]=I' p2[-1]=li p2[0]=to p2[1]=li p2[2]=to p3[-2]=I'd p3[-1]=lik p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=like p4[0]= p4[1]=list p4[2]= s1[-2]=d s1[-1]=e s1[0]=o s1[1]=n s1[2]=o s2[-2]='d s2[-1]=ke s2[0]=to s2[1]=en s2[2]=to s3[-2]=I'd s3[-1]=ike s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=like s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I'd|like w[-1]|w[0]=like|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|MD pos[-1]|pos[0]=MD|VB pos[0]|pos[1]=VB|TO pos[1]|pos[2]=TO|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U'L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[1..4]=listen w[1..4]=to w[1..4]=jazz +O w[-2]=like w[-1]=to w[0]=listen w[1]=to w[2]=jazz wl[-2]=like wl[-1]=to wl[0]=listen wl[1]=to wl[2]=jazz pos[-2]=MD pos[-1]=VB pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=l p1[1]=t p1[2]=j p2[-2]=li p2[-1]=to p2[0]=li p2[1]=to p2[2]=ja p3[-2]=lik p3[-1]= p3[0]=lis p3[1]= p3[2]=jaz p4[-2]=like p4[-1]= p4[0]=list p4[1]= p4[2]=jazz s1[-2]=e s1[-1]=o s1[0]=n s1[1]=o s1[2]=z s2[-2]=ke s2[-1]=to s2[0]=en s2[1]=to s2[2]=zz s3[-2]=ike s3[-1]= s3[0]=ten s3[1]= s3[2]=azz s4[-2]=like s4[-1]= s4[0]=sten s4[1]= s4[2]=jazz 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=like|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|jazz pos[-2]|pos[-1]=MD|VB pos[-1]|pos[0]=VB|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[-4..-1]=to w[1..4]=to w[1..4]=jazz +O w[-2]=to w[-1]=listen w[0]=to w[1]=jazz wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=jazz pos[-2]=VB pos[-1]=TO pos[0]=VB pos[1]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=j p2[-2]=to p2[-1]=li p2[0]=to p2[1]=ja p3[-2]= p3[-1]=lis p3[0]= p3[1]=jaz p4[-2]= p4[-1]=list p4[0]= p4[1]=jazz s1[-2]=o s1[-1]=n s1[0]=o s1[1]=z s2[-2]=to s2[-1]=en s2[0]=to s2[1]=zz s3[-2]= s3[-1]=ten s3[0]= s3[1]=azz s4[-2]= s4[-1]=sten s4[0]= s4[1]=jazz 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|jazz pos[-2]|pos[-1]=VB|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[-4..-1]=to w[-4..-1]=listen w[1..4]=jazz +genre w[-2]=listen w[-1]=to w[0]=jazz wl[-2]=listen wl[-1]=to wl[0]=jazz pos[-2]=TO pos[-1]=VB pos[0]=IN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=l p1[-1]=t p1[0]=j p2[-2]=li p2[-1]=to p2[0]=ja p3[-2]=lis p3[-1]= p3[0]=jaz p4[-2]=list p4[-1]= p4[0]=jazz s1[-2]=n s1[-1]=o s1[0]=z s2[-2]=en s2[-1]=to s2[0]=zz s3[-2]=ten s3[-1]= s3[0]=azz s4[-2]=sten s4[-1]= s4[0]=jazz 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|jazz pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=like w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=hear w[1..4]=a __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=hear wl[-1]=i wl[0]=want wl[1]=to wl[2]=hear pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=h p2[-1]= p2[0]=wa p2[1]=to p2[2]=he p3[-1]= p3[0]=wan p3[1]= p3[2]=hea p4[-1]= p4[0]=want p4[1]= p4[2]=hear s1[-1]=I s1[0]=t s1[1]=o s1[2]=r s2[-1]= s2[0]=nt s2[1]=to s2[2]=ar s3[-1]= s3[0]=ant s3[1]= s3[2]=ear s4[-1]= s4[0]=want s4[1]= s4[2]=hear 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|hear pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=hear w[1..4]=a w[1..4]=song +O w[-2]=I w[-1]=want w[0]=to w[1]=hear w[2]=a wl[-2]=i wl[-1]=want wl[0]=to wl[1]=hear wl[2]=a pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shape[2]=L shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=h p1[2]=a p2[-2]= p2[-1]=wa p2[0]=to p2[1]=he p2[2]= p3[-2]= p3[-1]=wan p3[0]= p3[1]=hea p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=hear p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=r s1[2]=a s2[-2]= s2[-1]=nt s2[0]=to s2[1]=ar s2[2]= s3[-2]= s3[-1]=ant s3[0]= s3[1]=ear s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=hear s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|hear w[1]|w[2]=hear|a pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=hear w[1..4]=a w[1..4]=song +O w[-2]=want w[-1]=to w[0]=hear w[1]=a w[2]=song wl[-2]=want wl[-1]=to wl[0]=hear wl[1]=a wl[2]=song pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=t p1[0]=h p1[1]=a p1[2]=s p2[-2]=wa p2[-1]=to p2[0]=he p2[1]= p2[2]=so p3[-2]=wan p3[-1]= p3[0]=hea p3[1]= p3[2]=son p4[-2]=want p4[-1]= p4[0]=hear p4[1]= p4[2]=song s1[-2]=t s1[-1]=o s1[0]=r s1[1]=a s1[2]=g s2[-2]=nt s2[-1]=to s2[0]=ar s2[1]= s2[2]=ng s3[-2]=ant s3[-1]= s3[0]=ear s3[1]= s3[2]=ong s4[-2]=want s4[-1]= s4[0]=hear s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|hear w[0]|w[1]=hear|a w[1]|w[2]=a|song pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=a w[1..4]=song +O w[-2]=to w[-1]=hear w[0]=a w[1]=song wl[-2]=to wl[-1]=hear wl[0]=a wl[1]=song pos[-2]=TO pos[-1]=VB pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLLL shape[0]=L shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=h p1[0]=a p1[1]=s p2[-2]=to p2[-1]=he p2[0]= p2[1]=so p3[-2]= p3[-1]=hea p3[0]= p3[1]=son p4[-2]= p4[-1]=hear p4[0]= p4[1]=song s1[-2]=o s1[-1]=r s1[0]=a s1[1]=g s2[-2]=to s2[-1]=ar s2[0]= s2[1]=ng s3[-2]= s3[-1]=ear s3[0]= s3[1]=ong s4[-2]= s4[-1]=hear s4[0]= s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|hear w[-1]|w[0]=hear|a w[0]|w[1]=a|song pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=hear w[1..4]=song +O w[-2]=hear w[-1]=a w[0]=song wl[-2]=hear wl[-1]=a wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=h p1[-1]=a p1[0]=s p2[-2]=he p2[-1]= p2[0]=so p3[-2]=hea p3[-1]= p3[0]=son p4[-2]=hear p4[-1]= p4[0]=song s1[-2]=r s1[-1]=a s1[0]=g s2[-2]=ar s2[-1]= s2[0]=ng s3[-2]=ear s3[-1]= s3[0]=ong s4[-2]=hear s4[-1]= s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=hear|a w[-1]|w[0]=a|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=want w[-4..-1]=to w[-4..-1]=hear w[-4..-1]=a __EOS__ + +O w[0]=please w[1]=play w[2]=song wl[0]=please wl[1]=play wl[2]=song pos[0]=UH pos[1]=VB pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=p p1[2]=s p2[0]=pl p2[1]=pl p2[2]=so p3[0]=ple p3[1]=pla p3[2]=son p4[0]=plea p4[1]=play p4[2]=song s1[0]=e s1[1]=y s1[2]=g s2[0]=se s2[1]=ay s2[2]=ng s3[0]=ase s3[1]=lay s3[2]=ong s4[0]=ease s4[1]=play s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=please|play w[1]|w[2]=play|song pos[0]|pos[1]=UH|VB pos[1]|pos[2]=VB|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=play w[1..4]=song w[1..4]=Lost w[1..4]=in __BOS__ +O w[-1]=please w[0]=play w[1]=song w[2]=Lost wl[-1]=please wl[0]=play wl[1]=song wl[2]=lost pos[-1]=UH pos[0]=VB pos[1]=NN pos[2]=VBN chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=p p1[1]=s p1[2]=L p2[-1]=pl p2[0]=pl p2[1]=so p2[2]=Lo p3[-1]=ple p3[0]=pla p3[1]=son p3[2]=Los p4[-1]=plea p4[0]=play p4[1]=song p4[2]=Lost s1[-1]=e s1[0]=y s1[1]=g s1[2]=t s2[-1]=se s2[0]=ay s2[1]=ng s2[2]=st s3[-1]=ase s3[0]=lay s3[1]=ong s3[2]=ost s4[-1]=ease s4[0]=play s4[1]=song s4[2]=Lost 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=please|play w[0]|w[1]=play|song w[1]|w[2]=song|Lost pos[-1]|pos[0]=UH|VB pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|VBN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=please w[1..4]=song w[1..4]=Lost w[1..4]=in w[1..4]=You +O w[-2]=please w[-1]=play w[0]=song w[1]=Lost w[2]=in wl[-2]=please wl[-1]=play wl[0]=song wl[1]=lost wl[2]=in pos[-2]=UH pos[-1]=VB pos[0]=NN pos[1]=VBN pos[2]=VBN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=p p1[0]=s p1[1]=L p1[2]=i p2[-2]=pl p2[-1]=pl p2[0]=so p2[1]=Lo p2[2]=in p3[-2]=ple p3[-1]=pla p3[0]=son p3[1]=Los p3[2]= p4[-2]=plea p4[-1]=play p4[0]=song p4[1]=Lost p4[2]= s1[-2]=e s1[-1]=y s1[0]=g s1[1]=t s1[2]=n s2[-2]=se s2[-1]=ay s2[0]=ng s2[1]=st s2[2]=in s3[-2]=ase s3[-1]=lay s3[0]=ong s3[1]=ost s3[2]= s4[-2]=ease s4[-1]=play s4[0]=song s4[1]=Lost s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=please|play w[-1]|w[0]=play|song w[0]|w[1]=song|Lost w[1]|w[2]=Lost|in pos[-2]|pos[-1]=UH|VB pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|VBN pos[1]|pos[2]=VBN|VBN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=please w[-4..-1]=play w[1..4]=Lost w[1..4]=in w[1..4]=You +song w[-2]=play w[-1]=song w[0]=Lost w[1]=in w[2]=You wl[-2]=play wl[-1]=song wl[0]=lost wl[1]=in wl[2]=you pos[-2]=VB pos[-1]=NN pos[0]=VBN pos[1]=VBN pos[2]=VBN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLL shape[1]=LL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=L p1[1]=i p1[2]=Y p2[-2]=pl p2[-1]=so p2[0]=Lo p2[1]=in p2[2]=Yo p3[-2]=pla p3[-1]=son p3[0]=Los p3[1]= p3[2]=You p4[-2]=play p4[-1]=song p4[0]=Lost p4[1]= p4[2]= s1[-2]=y s1[-1]=g s1[0]=t s1[1]=n s1[2]=u s2[-2]=ay s2[-1]=ng s2[0]=st s2[1]=in s2[2]=ou s3[-2]=lay s3[-1]=ong s3[0]=ost s3[1]= s3[2]=You s4[-2]=play s4[-1]=song s4[0]=Lost s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Lost w[0]|w[1]=Lost|in w[1]|w[2]=in|You pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|VBN pos[0]|pos[1]=VBN|VBN pos[1]|pos[2]=VBN|VBN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=please w[-4..-1]=play w[-4..-1]=song w[1..4]=in w[1..4]=You +song w[-2]=song w[-1]=Lost w[0]=in w[1]=You wl[-2]=song wl[-1]=lost wl[0]=in wl[1]=you pos[-2]=NN pos[-1]=VBN pos[0]=VBN pos[1]=VBN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=s p1[-1]=L p1[0]=i p1[1]=Y p2[-2]=so p2[-1]=Lo p2[0]=in p2[1]=Yo p3[-2]=son p3[-1]=Los p3[0]= p3[1]=You p4[-2]=song p4[-1]=Lost p4[0]= p4[1]= s1[-2]=g s1[-1]=t s1[0]=n s1[1]=u s2[-2]=ng s2[-1]=st s2[0]=in s2[1]=ou s3[-2]=ong s3[-1]=ost s3[0]= s3[1]=You s4[-2]=song s4[-1]=Lost s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|Lost w[-1]|w[0]=Lost|in w[0]|w[1]=in|You pos[-2]|pos[-1]=NN|VBN pos[-1]|pos[0]=VBN|VBN pos[0]|pos[1]=VBN|VBN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=please w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Lost w[1..4]=You +song w[-2]=Lost w[-1]=in w[0]=You wl[-2]=lost wl[-1]=in wl[0]=you pos[-2]=VBN pos[-1]=VBN pos[0]=VBN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=L p1[-1]=i p1[0]=Y p2[-2]=Lo p2[-1]=in p2[0]=Yo p3[-2]=Los p3[-1]= p3[0]=You p4[-2]=Lost p4[-1]= p4[0]= s1[-2]=t s1[-1]=n s1[0]=u s2[-2]=st s2[-1]=in s2[0]=ou s3[-2]=ost s3[-1]= s3[0]=You s4[-2]=Lost s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Lost|in w[-1]|w[0]=in|You pos[-2]|pos[-1]=VBN|VBN pos[-1]|pos[0]=VBN|VBN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Lost w[-4..-1]=in __EOS__ + +O w[0]=play w[1]=album w[2]=The wl[0]=play wl[1]=album wl[2]=the pos[0]=VB pos[1]=NN pos[2]=DT chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=T p2[0]=pl p2[1]=al p2[2]=Th p3[0]=pla p3[1]=alb p3[2]=The p4[0]=play p4[1]=albu p4[2]= s1[0]=y s1[1]=m s1[2]=e s2[0]=ay s2[1]=um s2[2]=he s3[0]=lay s3[1]=bum s3[2]=The s4[0]=play s4[1]=lbum s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|The pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=The w[1..4]=marshall w[1..4]=mathers __BOS__ +O w[-1]=play w[0]=album w[1]=The w[2]=marshall wl[-1]=play wl[0]=album wl[1]=the wl[2]=marshall pos[-1]=VB pos[0]=NN pos[1]=DT pos[2]=DT chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULL shape[2]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=T p1[2]=m p2[-1]=pl p2[0]=al p2[1]=Th p2[2]=ma p3[-1]=pla p3[0]=alb p3[1]=The p3[2]=mar p4[-1]=play p4[0]=albu p4[1]= p4[2]=mars s1[-1]=y s1[0]=m s1[1]=e s1[2]=l s2[-1]=ay s2[0]=um s2[1]=he s2[2]=ll s3[-1]=lay s3[0]=bum s3[1]=The s3[2]=all s4[-1]=play s4[0]=lbum s4[1]= s4[2]=hall 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|The w[1]|w[2]=The|marshall pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|DT pos[1]|pos[2]=DT|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=The w[1..4]=marshall w[1..4]=mathers w[1..4]=by +album w[-2]=play w[-1]=album w[0]=The w[1]=marshall w[2]=mathers wl[-2]=play wl[-1]=album wl[0]=the wl[1]=marshall wl[2]=mathers pos[-2]=VB pos[-1]=NN pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULL shape[1]=LLLLLLLL shape[2]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=T p1[1]=m p1[2]=m p2[-2]=pl p2[-1]=al p2[0]=Th p2[1]=ma p2[2]=ma p3[-2]=pla p3[-1]=alb p3[0]=The p3[1]=mar p3[2]=mat p4[-2]=play p4[-1]=albu p4[0]= p4[1]=mars p4[2]=math s1[-2]=y s1[-1]=m s1[0]=e s1[1]=l s1[2]=s s2[-2]=ay s2[-1]=um s2[0]=he s2[1]=ll s2[2]=rs s3[-2]=lay s3[-1]=bum s3[0]=The s3[1]=all s3[2]=ers s4[-2]=play s4[-1]=lbum s4[0]= s4[1]=hall s4[2]=hers 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|The w[0]|w[1]=The|marshall w[1]|w[2]=marshall|mathers pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[1..4]=marshall w[1..4]=mathers w[1..4]=by w[1..4]=Eminem +album w[-2]=album w[-1]=The w[0]=marshall w[1]=mathers w[2]=by wl[-2]=album wl[-1]=the wl[0]=marshall wl[1]=mathers wl[2]=by pos[-2]=NN pos[-1]=DT pos[0]=DT pos[1]=DT pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLL shape[-1]=ULL shape[0]=LLLLLLLL shape[1]=LLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=T p1[0]=m p1[1]=m p1[2]=b p2[-2]=al p2[-1]=Th p2[0]=ma p2[1]=ma p2[2]=by p3[-2]=alb p3[-1]=The p3[0]=mar p3[1]=mat p3[2]= p4[-2]=albu p4[-1]= p4[0]=mars p4[1]=math p4[2]= s1[-2]=m s1[-1]=e s1[0]=l s1[1]=s s1[2]=y s2[-2]=um s2[-1]=he s2[0]=ll s2[1]=rs s2[2]=by s3[-2]=bum s3[-1]=The s3[0]=all s3[1]=ers s3[2]= s4[-2]=lbum s4[-1]= s4[0]=hall s4[1]=hers s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|The w[-1]|w[0]=The|marshall w[0]|w[1]=marshall|mathers w[1]|w[2]=mathers|by pos[-2]|pos[-1]=NN|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[-4..-1]=The w[1..4]=mathers w[1..4]=by w[1..4]=Eminem +album w[-2]=The w[-1]=marshall w[0]=mathers w[1]=by w[2]=Eminem wl[-2]=the wl[-1]=marshall wl[0]=mathers wl[1]=by wl[2]=eminem pos[-2]=DT pos[-1]=DT pos[0]=DT pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULL shape[-1]=LLLLLLLL shape[0]=LLLLLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=T p1[-1]=m p1[0]=m p1[1]=b p1[2]=E p2[-2]=Th p2[-1]=ma p2[0]=ma p2[1]=by p2[2]=Em p3[-2]=The p3[-1]=mar p3[0]=mat p3[1]= p3[2]=Emi p4[-2]= p4[-1]=mars p4[0]=math p4[1]= p4[2]=Emin s1[-2]=e s1[-1]=l s1[0]=s s1[1]=y s1[2]=m s2[-2]=he s2[-1]=ll s2[0]=rs s2[1]=by s2[2]=em s3[-2]=The s3[-1]=all s3[0]=ers s3[1]= s3[2]=nem s4[-2]= s4[-1]=hall s4[0]=hers s4[1]= s4[2]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=The|marshall w[-1]|w[0]=marshall|mathers w[0]|w[1]=mathers|by w[1]|w[2]=by|Eminem pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=The w[-4..-1]=marshall w[1..4]=by w[1..4]=Eminem +O w[-2]=marshall w[-1]=mathers w[0]=by w[1]=Eminem wl[-2]=marshall wl[-1]=mathers wl[0]=by wl[1]=eminem pos[-2]=DT pos[-1]=DT pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLLLLLLL shape[-1]=LLLLLLL shape[0]=LL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=m p1[-1]=m p1[0]=b p1[1]=E p2[-2]=ma p2[-1]=ma p2[0]=by p2[1]=Em p3[-2]=mar p3[-1]=mat p3[0]= p3[1]=Emi p4[-2]=mars p4[-1]=math p4[0]= p4[1]=Emin s1[-2]=l s1[-1]=s s1[0]=y s1[1]=m s2[-2]=ll s2[-1]=rs s2[0]=by s2[1]=em s3[-2]=all s3[-1]=ers s3[0]= s3[1]=nem s4[-2]=hall s4[-1]=hers s4[0]= s4[1]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=marshall|mathers w[-1]|w[0]=mathers|by w[0]|w[1]=by|Eminem pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=album w[-4..-1]=The w[-4..-1]=marshall w[-4..-1]=mathers w[1..4]=Eminem +artist w[-2]=mathers w[-1]=by w[0]=Eminem wl[-2]=mathers wl[-1]=by wl[0]=eminem pos[-2]=DT pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=LLLLLLL shape[-1]=LL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=m p1[-1]=b p1[0]=E p2[-2]=ma p2[-1]=by p2[0]=Em p3[-2]=mat p3[-1]= p3[0]=Emi p4[-2]=math p4[-1]= p4[0]=Emin s1[-2]=s s1[-1]=y s1[0]=m s2[-2]=rs s2[-1]=by s2[0]=em s3[-2]=ers s3[-1]= s3[0]=nem s4[-2]=hers s4[-1]= s4[0]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=mathers|by w[-1]|w[0]=by|Eminem pos[-2]|pos[-1]=DT|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=The w[-4..-1]=marshall w[-4..-1]=mathers w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=Hard w[2]=Times wl[0]=play wl[1]=hard wl[2]=times pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLL shape[2]=ULLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=H p1[2]=T p2[0]=pl p2[1]=Ha p2[2]=Ti p3[0]=pla p3[1]=Har p3[2]=Tim p4[0]=play p4[1]=Hard p4[2]=Time s1[0]=y s1[1]=d s1[2]=s s2[0]=ay s2[1]=rd s2[2]=es s3[0]=lay s3[1]=ard s3[2]=mes s4[0]=play s4[1]=Hard s4[2]=imes 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Hard w[1]|w[2]=Hard|Times pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Hard w[1..4]=Times w[1..4]=by w[1..4]=David __BOS__ +song w[-1]=play w[0]=Hard w[1]=Times w[2]=by wl[-1]=play wl[0]=hard wl[1]=times wl[2]=by pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLL shape[1]=ULLLL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=H p1[1]=T p1[2]=b p2[-1]=pl p2[0]=Ha p2[1]=Ti p2[2]=by p3[-1]=pla p3[0]=Har p3[1]=Tim p3[2]= p4[-1]=play p4[0]=Hard p4[1]=Time p4[2]= s1[-1]=y s1[0]=d s1[1]=s s1[2]=y s2[-1]=ay s2[0]=rd s2[1]=es s2[2]=by s3[-1]=lay s3[0]=ard s3[1]=mes s3[2]= s4[-1]=play s4[0]=Hard s4[1]=imes s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Hard w[0]|w[1]=Hard|Times w[1]|w[2]=Times|by pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Times w[1..4]=by w[1..4]=David w[1..4]=Newman +song w[-2]=play w[-1]=Hard w[0]=Times w[1]=by w[2]=David wl[-2]=play wl[-1]=hard wl[0]=times wl[1]=by wl[2]=david pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=ULLLL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=H p1[0]=T p1[1]=b p1[2]=D p2[-2]=pl p2[-1]=Ha p2[0]=Ti p2[1]=by p2[2]=Da p3[-2]=pla p3[-1]=Har p3[0]=Tim p3[1]= p3[2]=Dav p4[-2]=play p4[-1]=Hard p4[0]=Time p4[1]= p4[2]=Davi s1[-2]=y s1[-1]=d s1[0]=s s1[1]=y s1[2]=d s2[-2]=ay s2[-1]=rd s2[0]=es s2[1]=by s2[2]=id s3[-2]=lay s3[-1]=ard s3[0]=mes s3[1]= s3[2]=vid s4[-2]=play s4[-1]=Hard s4[0]=imes s4[1]= s4[2]=avid 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Hard w[-1]|w[0]=Hard|Times w[0]|w[1]=Times|by w[1]|w[2]=by|David pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Hard w[1..4]=by w[1..4]=David w[1..4]=Newman +O w[-2]=Hard w[-1]=Times w[0]=by w[1]=David w[2]=Newman wl[-2]=hard wl[-1]=times wl[0]=by wl[1]=david wl[2]=newman pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=H p1[-1]=T p1[0]=b p1[1]=D p1[2]=N p2[-2]=Ha p2[-1]=Ti p2[0]=by p2[1]=Da p2[2]=Ne p3[-2]=Har p3[-1]=Tim p3[0]= p3[1]=Dav p3[2]=New p4[-2]=Hard p4[-1]=Time p4[0]= p4[1]=Davi p4[2]=Newm s1[-2]=d s1[-1]=s s1[0]=y s1[1]=d s1[2]=n s2[-2]=rd s2[-1]=es s2[0]=by s2[1]=id s2[2]=an s3[-2]=ard s3[-1]=mes s3[0]= s3[1]=vid s3[2]=man s4[-2]=Hard s4[-1]=imes s4[0]= s4[1]=avid s4[2]=wman 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Hard|Times w[-1]|w[0]=Times|by w[0]|w[1]=by|David w[1]|w[2]=David|Newman pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Hard w[-4..-1]=Times w[1..4]=David w[1..4]=Newman +artist w[-2]=Times w[-1]=by w[0]=David w[1]=Newman wl[-2]=times wl[-1]=by wl[0]=david wl[1]=newman pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=T p1[-1]=b p1[0]=D p1[1]=N p2[-2]=Ti p2[-1]=by p2[0]=Da p2[1]=Ne p3[-2]=Tim p3[-1]= p3[0]=Dav p3[1]=New p4[-2]=Time p4[-1]= p4[0]=Davi p4[1]=Newm s1[-2]=s s1[-1]=y s1[0]=d s1[1]=n s2[-2]=es s2[-1]=by s2[0]=id s2[1]=an s3[-2]=mes s3[-1]= s3[0]=vid s3[1]=man s4[-2]=imes s4[-1]= s4[0]=avid s4[1]=wman 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Times|by w[-1]|w[0]=by|David w[0]|w[1]=David|Newman pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Hard w[-4..-1]=Times w[-4..-1]=by w[1..4]=Newman +artist w[-2]=by w[-1]=David w[0]=Newman wl[-2]=by wl[-1]=david wl[0]=newman pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=D p1[0]=N p2[-2]=by p2[-1]=Da p2[0]=Ne p3[-2]= p3[-1]=Dav p3[0]=New p4[-2]= p4[-1]=Davi p4[0]=Newm s1[-2]=y s1[-1]=d s1[0]=n s2[-2]=by s2[-1]=id s2[0]=an s3[-2]= s3[-1]=vid s3[0]=man s4[-2]= s4[-1]=avid s4[0]=wman 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|David w[-1]|w[0]=David|Newman pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Hard w[-4..-1]=Times w[-4..-1]=by w[-4..-1]=David __EOS__ + +O w[0]=let w[1]=me w[2]=hear wl[0]=let wl[1]=me wl[2]=hear pos[0]=VB pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=l p1[1]=m p1[2]=h p2[0]=le p2[1]=me p2[2]=he p3[0]=let p3[1]= p3[2]=hea p4[0]= p4[1]= p4[2]=hear s1[0]=t s1[1]=e s1[2]=r s2[0]=et s2[1]=me s2[2]=ar s3[0]=let s3[1]= s3[2]=ear s4[0]= s4[1]= s4[2]=hear 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=let|me w[1]|w[2]=me|hear pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=me w[1..4]=hear w[1..4]=some w[1..4]=music __BOS__ +O w[-1]=let w[0]=me w[1]=hear w[2]=some wl[-1]=let wl[0]=me wl[1]=hear wl[2]=some pos[-1]=VB pos[0]=PRP pos[1]=VB pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=l p1[0]=m p1[1]=h p1[2]=s p2[-1]=le p2[0]=me p2[1]=he p2[2]=so p3[-1]=let p3[0]= p3[1]=hea p3[2]=som p4[-1]= p4[0]= p4[1]=hear p4[2]=some s1[-1]=t s1[0]=e s1[1]=r s1[2]=e s2[-1]=et s2[0]=me s2[1]=ar s2[2]=me s3[-1]=let s3[0]= s3[1]=ear s3[2]=ome s4[-1]= s4[0]= s4[1]=hear s4[2]=some 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=let|me w[0]|w[1]=me|hear w[1]|w[2]=hear|some pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=let w[1..4]=hear w[1..4]=some w[1..4]=music w[1..4]=by +O w[-2]=let w[-1]=me w[0]=hear w[1]=some w[2]=music wl[-2]=let wl[-1]=me wl[0]=hear wl[1]=some wl[2]=music pos[-2]=VB pos[-1]=PRP pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=m p1[0]=h p1[1]=s p1[2]=m p2[-2]=le p2[-1]=me p2[0]=he p2[1]=so p2[2]=mu p3[-2]=let p3[-1]= p3[0]=hea p3[1]=som p3[2]=mus p4[-2]= p4[-1]= p4[0]=hear p4[1]=some p4[2]=musi s1[-2]=t s1[-1]=e s1[0]=r s1[1]=e s1[2]=c s2[-2]=et s2[-1]=me s2[0]=ar s2[1]=me s2[2]=ic s3[-2]=let s3[-1]= s3[0]=ear s3[1]=ome s3[2]=sic s4[-2]= s4[-1]= s4[0]=hear s4[1]=some s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=let|me w[-1]|w[0]=me|hear w[0]|w[1]=hear|some w[1]|w[2]=some|music pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=let w[-4..-1]=me w[1..4]=some w[1..4]=music w[1..4]=by w[1..4]=Coldplay +O w[-2]=me w[-1]=hear w[0]=some w[1]=music w[2]=by wl[-2]=me wl[-1]=hear wl[0]=some wl[1]=music wl[2]=by pos[-2]=PRP pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=m p1[-1]=h p1[0]=s p1[1]=m p1[2]=b p2[-2]=me p2[-1]=he p2[0]=so p2[1]=mu p2[2]=by p3[-2]= p3[-1]=hea p3[0]=som p3[1]=mus p3[2]= p4[-2]= p4[-1]=hear p4[0]=some p4[1]=musi p4[2]= s1[-2]=e s1[-1]=r s1[0]=e s1[1]=c s1[2]=y s2[-2]=me s2[-1]=ar s2[0]=me s2[1]=ic s2[2]=by s3[-2]= s3[-1]=ear s3[0]=ome s3[1]=sic s3[2]= s4[-2]= s4[-1]=hear s4[0]=some s4[1]=usic s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=me|hear w[-1]|w[0]=hear|some w[0]|w[1]=some|music w[1]|w[2]=music|by pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=let w[-4..-1]=me w[-4..-1]=hear w[1..4]=music w[1..4]=by w[1..4]=Coldplay +O w[-2]=hear w[-1]=some w[0]=music w[1]=by w[2]=Coldplay wl[-2]=hear wl[-1]=some wl[0]=music wl[1]=by wl[2]=coldplay pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=h p1[-1]=s p1[0]=m p1[1]=b p1[2]=C p2[-2]=he p2[-1]=so p2[0]=mu p2[1]=by p2[2]=Co p3[-2]=hea p3[-1]=som p3[0]=mus p3[1]= p3[2]=Col p4[-2]=hear p4[-1]=some p4[0]=musi p4[1]= p4[2]=Cold s1[-2]=r s1[-1]=e s1[0]=c s1[1]=y s1[2]=y s2[-2]=ar s2[-1]=me s2[0]=ic s2[1]=by s2[2]=ay s3[-2]=ear s3[-1]=ome s3[0]=sic s3[1]= s3[2]=lay s4[-2]=hear s4[-1]=some s4[0]=usic s4[1]= s4[2]=play 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=hear|some w[-1]|w[0]=some|music w[0]|w[1]=music|by w[1]|w[2]=by|Coldplay pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=let w[-4..-1]=me w[-4..-1]=hear w[-4..-1]=some w[1..4]=by w[1..4]=Coldplay +O w[-2]=some w[-1]=music w[0]=by w[1]=Coldplay wl[-2]=some wl[-1]=music wl[0]=by wl[1]=coldplay pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=s p1[-1]=m p1[0]=b p1[1]=C p2[-2]=so p2[-1]=mu p2[0]=by p2[1]=Co p3[-2]=som p3[-1]=mus p3[0]= p3[1]=Col p4[-2]=some p4[-1]=musi p4[0]= p4[1]=Cold s1[-2]=e s1[-1]=c s1[0]=y s1[1]=y s2[-2]=me s2[-1]=ic s2[0]=by s2[1]=ay s3[-2]=ome s3[-1]=sic s3[0]= s3[1]=lay s4[-2]=some s4[-1]=usic s4[0]= s4[1]=play 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=some|music w[-1]|w[0]=music|by w[0]|w[1]=by|Coldplay pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=me w[-4..-1]=hear w[-4..-1]=some w[-4..-1]=music w[1..4]=Coldplay +artist w[-2]=music w[-1]=by w[0]=Coldplay wl[-2]=music wl[-1]=by wl[0]=coldplay pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=m p1[-1]=b p1[0]=C p2[-2]=mu p2[-1]=by p2[0]=Co p3[-2]=mus p3[-1]= p3[0]=Col p4[-2]=musi p4[-1]= p4[0]=Cold s1[-2]=c s1[-1]=y s1[0]=y s2[-2]=ic s2[-1]=by s2[0]=ay s3[-2]=sic s3[-1]= s3[0]=lay s4[-2]=usic s4[-1]= s4[0]=play 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=music|by w[-1]|w[0]=by|Coldplay pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=hear w[-4..-1]=some w[-4..-1]=music w[-4..-1]=by __EOS__ + +genre w[0]=country w[1]=song wl[0]=country wl[1]=song pos[0]=NN pos[1]=NN chk[0]=I chk[1]=O shape[0]=LLLLLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=c p1[1]=s p2[0]=co p2[1]=so p3[0]=cou p3[1]=son p4[0]=coun p4[1]=song s1[0]=y s1[1]=g s2[0]=ry s2[1]=ng s3[0]=try s3[1]=ong s4[0]=ntry s4[1]=song 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=country|song pos[0]|pos[1]=NN|NN chk[0]|chk[1]=I|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=song __BOS__ +O w[-1]=country w[0]=song wl[-1]=country wl[0]=song pos[-1]=NN pos[0]=NN chk[-1]=I chk[0]=O shape[-1]=LLLLLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=c p1[0]=s p2[-1]=co p2[0]=so p3[-1]=cou p3[0]=son p4[-1]=coun p4[0]=song s1[-1]=y s1[0]=g s2[-1]=ry s2[0]=ng s3[-1]=try s3[0]=ong s4[-1]=ntry s4[0]=song 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=country|song pos[-1]|pos[0]=NN|NN chk[-1]|chk[0]=I|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=country __EOS__ + +O w[0]=play w[1]=album w[2]=Purple wl[0]=play wl[1]=album wl[2]=purple pos[0]=VBP pos[1]=NN pos[2]=JJ chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=P p2[0]=pl p2[1]=al p2[2]=Pu p3[0]=pla p3[1]=alb p3[2]=Pur p4[0]=play p4[1]=albu p4[2]=Purp s1[0]=y s1[1]=m s1[2]=e s2[0]=ay s2[1]=um s2[2]=le s3[0]=lay s3[1]=bum s3[2]=ple s4[0]=play s4[1]=lbum s4[2]=rple 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Purple pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Purple w[1..4]=Rain w[1..4]=on __BOS__ +O w[-1]=play w[0]=album w[1]=Purple w[2]=Rain wl[-1]=play wl[0]=album wl[1]=purple wl[2]=rain pos[-1]=VBP pos[0]=NN pos[1]=JJ pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=a p1[1]=P p1[2]=R p2[-1]=pl p2[0]=al p2[1]=Pu p2[2]=Ra p3[-1]=pla p3[0]=alb p3[1]=Pur p3[2]=Rai p4[-1]=play p4[0]=albu p4[1]=Purp p4[2]=Rain s1[-1]=y s1[0]=m s1[1]=e s1[2]=n s2[-1]=ay s2[0]=um s2[1]=le s2[2]=in s3[-1]=lay s3[0]=bum s3[1]=ple s3[2]=ain s4[-1]=play s4[0]=lbum s4[1]=rple s4[2]=Rain 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Purple w[1]|w[2]=Purple|Rain pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|JJ pos[1]|pos[2]=JJ|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Purple w[1..4]=Rain w[1..4]=on w[1..4]=Spotify +album w[-2]=play w[-1]=album w[0]=Purple w[1]=Rain w[2]=on wl[-2]=play wl[-1]=album wl[0]=purple wl[1]=rain wl[2]=on pos[-2]=VBP pos[-1]=NN pos[0]=JJ pos[1]=JJ pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=P p1[1]=R p1[2]=o p2[-2]=pl p2[-1]=al p2[0]=Pu p2[1]=Ra p2[2]=on p3[-2]=pla p3[-1]=alb p3[0]=Pur p3[1]=Rai p3[2]= p4[-2]=play p4[-1]=albu p4[0]=Purp p4[1]=Rain p4[2]= s1[-2]=y s1[-1]=m s1[0]=e s1[1]=n s1[2]=n s2[-2]=ay s2[-1]=um s2[0]=le s2[1]=in s2[2]=on s3[-2]=lay s3[-1]=bum s3[0]=ple s3[1]=ain s3[2]= s4[-2]=play s4[-1]=lbum s4[0]=rple s4[1]=Rain s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Purple w[0]|w[1]=Purple|Rain w[1]|w[2]=Rain|on pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|JJ pos[0]|pos[1]=JJ|JJ pos[1]|pos[2]=JJ|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=album w[1..4]=Rain w[1..4]=on w[1..4]=Spotify +album w[-2]=album w[-1]=Purple w[0]=Rain w[1]=on w[2]=Spotify wl[-2]=album wl[-1]=purple wl[0]=rain wl[1]=on wl[2]=spotify pos[-2]=NN pos[-1]=JJ pos[0]=JJ pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLLL shape[-1]=ULLLLL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=a p1[-1]=P p1[0]=R p1[1]=o p1[2]=S p2[-2]=al p2[-1]=Pu p2[0]=Ra p2[1]=on p2[2]=Sp p3[-2]=alb p3[-1]=Pur p3[0]=Rai p3[1]= p3[2]=Spo p4[-2]=albu p4[-1]=Purp p4[0]=Rain p4[1]= p4[2]=Spot s1[-2]=m s1[-1]=e s1[0]=n s1[1]=n s1[2]=y s2[-2]=um s2[-1]=le s2[0]=in s2[1]=on s2[2]=fy s3[-2]=bum s3[-1]=ple s3[0]=ain s3[1]= s3[2]=ify s4[-2]=lbum s4[-1]=rple s4[0]=Rain s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Purple w[-1]|w[0]=Purple|Rain w[0]|w[1]=Rain|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=NN|JJ pos[-1]|pos[0]=JJ|JJ pos[0]|pos[1]=JJ|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Purple w[1..4]=on w[1..4]=Spotify +O w[-2]=Purple w[-1]=Rain w[0]=on w[1]=Spotify wl[-2]=purple wl[-1]=rain wl[0]=on wl[1]=spotify pos[-2]=JJ pos[-1]=JJ pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULLLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=P p1[-1]=R p1[0]=o p1[1]=S p2[-2]=Pu p2[-1]=Ra p2[0]=on p2[1]=Sp p3[-2]=Pur p3[-1]=Rai p3[0]= p3[1]=Spo p4[-2]=Purp p4[-1]=Rain p4[0]= p4[1]=Spot s1[-2]=e s1[-1]=n s1[0]=n s1[1]=y s2[-2]=le s2[-1]=in s2[0]=on s2[1]=fy s3[-2]=ple s3[-1]=ain s3[0]= s3[1]=ify s4[-2]=rple s4[-1]=Rain s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Purple|Rain w[-1]|w[0]=Rain|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=JJ|JJ pos[-1]|pos[0]=JJ|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Purple w[-4..-1]=Rain w[1..4]=Spotify +service w[-2]=Rain w[-1]=on w[0]=Spotify wl[-2]=rain wl[-1]=on wl[0]=spotify pos[-2]=JJ pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=R p1[-1]=o p1[0]=S p2[-2]=Ra p2[-1]=on p2[0]=Sp p3[-2]=Rai p3[-1]= p3[0]=Spo p4[-2]=Rain p4[-1]= p4[0]=Spot s1[-2]=n s1[-1]=n s1[0]=y s2[-2]=in s2[-1]=on s2[0]=fy s3[-2]=ain s3[-1]= s3[0]=ify s4[-2]=Rain s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Rain|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=JJ|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=album w[-4..-1]=Purple w[-4..-1]=Rain w[-4..-1]=on __EOS__ + +O w[0]=can w[1]=you w[2]=turn wl[0]=can wl[1]=you wl[2]=turn pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=t p2[0]=ca p2[1]=yo p2[2]=tu p3[0]=can p3[1]=you p3[2]=tur p4[0]= p4[1]= p4[2]=turn s1[0]=n s1[1]=u s1[2]=n s2[0]=an s2[1]=ou s2[2]=rn s3[0]=can s3[1]=you s3[2]=urn s4[0]= s4[1]= s4[2]=turn 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|turn pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=turn w[1..4]=on w[1..4]=my __BOS__ +O w[-1]=can w[0]=you w[1]=turn w[2]=on wl[-1]=can wl[0]=you wl[1]=turn wl[2]=on pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=RP chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=t p1[2]=o p2[-1]=ca p2[0]=yo p2[1]=tu p2[2]=on p3[-1]=can p3[0]=you p3[1]=tur p3[2]= p4[-1]= p4[0]= p4[1]=turn p4[2]= s1[-1]=n s1[0]=u s1[1]=n s1[2]=n s2[-1]=an s2[0]=ou s2[1]=rn s2[2]=on s3[-1]=can s3[0]=you s3[1]=urn s3[2]= s4[-1]= s4[0]= s4[1]=turn s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|turn w[1]|w[2]=turn|on pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|RP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=turn w[1..4]=on w[1..4]=my w[1..4]=music +O w[-2]=can w[-1]=you w[0]=turn w[1]=on w[2]=my wl[-2]=can wl[-1]=you wl[0]=turn wl[1]=on wl[2]=my pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=RP pos[2]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=t p1[1]=o p1[2]=m p2[-2]=ca p2[-1]=yo p2[0]=tu p2[1]=on p2[2]=my p3[-2]=can p3[-1]=you p3[0]=tur p3[1]= p3[2]= p4[-2]= p4[-1]= p4[0]=turn p4[1]= p4[2]= s1[-2]=n s1[-1]=u s1[0]=n s1[1]=n s1[2]=y s2[-2]=an s2[-1]=ou s2[0]=rn s2[1]=on s2[2]=my s3[-2]=can s3[-1]=you s3[0]=urn s3[1]= s3[2]= s4[-2]= s4[-1]= s4[0]=turn s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|turn w[0]|w[1]=turn|on w[1]|w[2]=on|my pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=on w[1..4]=my w[1..4]=music +O w[-2]=you w[-1]=turn w[0]=on w[1]=my w[2]=music wl[-2]=you wl[-1]=turn wl[0]=on wl[1]=my wl[2]=music pos[-2]=PRP pos[-1]=VB pos[0]=RP pos[1]=PRP$ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LL shape[1]=LL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=y p1[-1]=t p1[0]=o p1[1]=m p1[2]=m p2[-2]=yo p2[-1]=tu p2[0]=on p2[1]=my p2[2]=mu p3[-2]=you p3[-1]=tur p3[0]= p3[1]= p3[2]=mus p4[-2]= p4[-1]=turn p4[0]= p4[1]= p4[2]=musi s1[-2]=u s1[-1]=n s1[0]=n s1[1]=y s1[2]=c s2[-2]=ou s2[-1]=rn s2[0]=on s2[1]=my s2[2]=ic s3[-2]=you s3[-1]=urn s3[0]= s3[1]= s3[2]=sic s4[-2]= s4[-1]=turn s4[0]= s4[1]= s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|turn w[-1]|w[0]=turn|on w[0]|w[1]=on|my w[1]|w[2]=my|music pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|PRP$ pos[1]|pos[2]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=turn w[1..4]=my w[1..4]=music +O w[-2]=turn w[-1]=on w[0]=my w[1]=music wl[-2]=turn wl[-1]=on wl[0]=my wl[1]=music pos[-2]=VB pos[-1]=RP pos[0]=PRP$ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=o p1[0]=m p1[1]=m p2[-2]=tu p2[-1]=on p2[0]=my p2[1]=mu p3[-2]=tur p3[-1]= p3[0]= p3[1]=mus p4[-2]=turn p4[-1]= p4[0]= p4[1]=musi s1[-2]=n s1[-1]=n s1[0]=y s1[1]=c s2[-2]=rn s2[-1]=on s2[0]=my s2[1]=ic s3[-2]=urn s3[-1]= s3[0]= s3[1]=sic s4[-2]=turn s4[-1]= s4[0]= s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=turn|on w[-1]|w[0]=on|my w[0]|w[1]=my|music pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|PRP$ pos[0]|pos[1]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=turn w[-4..-1]=on w[1..4]=music +O w[-2]=on w[-1]=my w[0]=music wl[-2]=on wl[-1]=my wl[0]=music pos[-2]=RP pos[-1]=PRP$ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=m p1[0]=m p2[-2]=on p2[-1]=my p2[0]=mu p3[-2]= p3[-1]= p3[0]=mus p4[-2]= p4[-1]= p4[0]=musi s1[-2]=n s1[-1]=y s1[0]=c s2[-2]=on s2[-1]=my s2[0]=ic s3[-2]= s3[-1]= s3[0]=sic s4[-2]= s4[-1]= s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=on|my w[-1]|w[0]=my|music pos[-2]|pos[-1]=RP|PRP$ pos[-1]|pos[0]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=you w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=my __EOS__ + +O w[0]=play w[1]=music w[2]=by wl[0]=play wl[1]=music wl[2]=by pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=b p2[0]=pl p2[1]=mu p2[2]=by p3[0]=pla p3[1]=mus p3[2]= p4[0]=play p4[1]=musi p4[2]= s1[0]=y s1[1]=c s1[2]=y s2[0]=ay s2[1]=ic s2[2]=by s3[0]=lay s3[1]=sic s3[2]= s4[0]=play s4[1]=usic s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|music w[1]|w[2]=music|by pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=music w[1..4]=by w[1..4]=Megan w[1..4]=Trainer __BOS__ +O w[-1]=play w[0]=music w[1]=by w[2]=Megan wl[-1]=play wl[0]=music wl[1]=by wl[2]=megan pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=m p1[1]=b p1[2]=M p2[-1]=pl p2[0]=mu p2[1]=by p2[2]=Me p3[-1]=pla p3[0]=mus p3[1]= p3[2]=Meg p4[-1]=play p4[0]=musi p4[1]= p4[2]=Mega s1[-1]=y s1[0]=c s1[1]=y s1[2]=n s2[-1]=ay s2[0]=ic s2[1]=by s2[2]=an s3[-1]=lay s3[0]=sic s3[1]= s3[2]=gan s4[-1]=play s4[0]=usic s4[1]= s4[2]=egan 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|music w[0]|w[1]=music|by w[1]|w[2]=by|Megan pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Megan w[1..4]=Trainer +O w[-2]=play w[-1]=music w[0]=by w[1]=Megan w[2]=Trainer wl[-2]=play wl[-1]=music wl[0]=by wl[1]=megan wl[2]=trainer pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=m p1[0]=b p1[1]=M p1[2]=T p2[-2]=pl p2[-1]=mu p2[0]=by p2[1]=Me p2[2]=Tr p3[-2]=pla p3[-1]=mus p3[0]= p3[1]=Meg p3[2]=Tra p4[-2]=play p4[-1]=musi p4[0]= p4[1]=Mega p4[2]=Trai s1[-2]=y s1[-1]=c s1[0]=y s1[1]=n s1[2]=r s2[-2]=ay s2[-1]=ic s2[0]=by s2[1]=an s2[2]=er s3[-2]=lay s3[-1]=sic s3[0]= s3[1]=gan s3[2]=ner s4[-2]=play s4[-1]=usic s4[0]= s4[1]=egan s4[2]=iner 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|music w[-1]|w[0]=music|by w[0]|w[1]=by|Megan w[1]|w[2]=Megan|Trainer pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[1..4]=Megan w[1..4]=Trainer +artist w[-2]=music w[-1]=by w[0]=Megan w[1]=Trainer wl[-2]=music wl[-1]=by wl[0]=megan wl[1]=trainer pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=m p1[-1]=b p1[0]=M p1[1]=T p2[-2]=mu p2[-1]=by p2[0]=Me p2[1]=Tr p3[-2]=mus p3[-1]= p3[0]=Meg p3[1]=Tra p4[-2]=musi p4[-1]= p4[0]=Mega p4[1]=Trai s1[-2]=c s1[-1]=y s1[0]=n s1[1]=r s2[-2]=ic s2[-1]=by s2[0]=an s2[1]=er s3[-2]=sic s3[-1]= s3[0]=gan s3[1]=ner s4[-2]=usic s4[-1]= s4[0]=egan s4[1]=iner 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=music|by w[-1]|w[0]=by|Megan w[0]|w[1]=Megan|Trainer pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[-4..-1]=by w[1..4]=Trainer +artist w[-2]=by w[-1]=Megan w[0]=Trainer wl[-2]=by wl[-1]=megan wl[0]=trainer pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=M p1[0]=T p2[-2]=by p2[-1]=Me p2[0]=Tr p3[-2]= p3[-1]=Meg p3[0]=Tra p4[-2]= p4[-1]=Mega p4[0]=Trai s1[-2]=y s1[-1]=n s1[0]=r s2[-2]=by s2[-1]=an s2[0]=er s3[-2]= s3[-1]=gan s3[0]=ner s4[-2]= s4[-1]=egan s4[0]=iner 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Megan w[-1]|w[0]=Megan|Trainer pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[-4..-1]=by w[-4..-1]=Megan __EOS__ + +O w[0]=play w[1]=End w[2]=of wl[0]=play wl[1]=end wl[2]=of pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=E p1[2]=o p2[0]=pl p2[1]=En p2[2]=of p3[0]=pla p3[1]=End p3[2]= p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=d s1[2]=f s2[0]=ay s2[1]=nd s2[2]=of s3[0]=lay s3[1]=End s3[2]= s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|End w[1]|w[2]=End|of pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=End w[1..4]=of w[1..4]=the w[1..4]=World __BOS__ +song w[-1]=play w[0]=End w[1]=of w[2]=the wl[-1]=play wl[0]=end wl[1]=of wl[2]=the pos[-1]=VB pos[0]=NN pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULL shape[1]=LL shape[2]=LLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=E p1[1]=o p1[2]=t p2[-1]=pl p2[0]=En p2[1]=of p2[2]=th p3[-1]=pla p3[0]=End p3[1]= p3[2]=the p4[-1]=play p4[0]= p4[1]= p4[2]= s1[-1]=y s1[0]=d s1[1]=f s1[2]=e s2[-1]=ay s2[0]=nd s2[1]=of s2[2]=he s3[-1]=lay s3[0]=End s3[1]= s3[2]=the s4[-1]=play s4[0]= s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|End w[0]|w[1]=End|of w[1]|w[2]=of|the pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=of w[1..4]=the w[1..4]=World w[1..4]=by +song w[-2]=play w[-1]=End w[0]=of w[1]=the w[2]=World wl[-2]=play wl[-1]=end wl[0]=of wl[1]=the wl[2]=world pos[-2]=VB pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=LL shape[1]=LLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=E p1[0]=o p1[1]=t p1[2]=W p2[-2]=pl p2[-1]=En p2[0]=of p2[1]=th p2[2]=Wo p3[-2]=pla p3[-1]=End p3[0]= p3[1]=the p3[2]=Wor p4[-2]=play p4[-1]= p4[0]= p4[1]= p4[2]=Worl s1[-2]=y s1[-1]=d s1[0]=f s1[1]=e s1[2]=d s2[-2]=ay s2[-1]=nd s2[0]=of s2[1]=he s2[2]=ld s3[-2]=lay s3[-1]=End s3[0]= s3[1]=the s3[2]=rld s4[-2]=play s4[-1]= s4[0]= s4[1]= s4[2]=orld 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|End w[-1]|w[0]=End|of w[0]|w[1]=of|the w[1]|w[2]=the|World pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=End w[1..4]=the w[1..4]=World w[1..4]=by w[1..4]=The +song w[-2]=End w[-1]=of w[0]=the w[1]=World w[2]=by wl[-2]=end wl[-1]=of wl[0]=the wl[1]=world wl[2]=by pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULL shape[-1]=LL shape[0]=LLL shape[1]=ULLLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=E p1[-1]=o p1[0]=t p1[1]=W p1[2]=b p2[-2]=En p2[-1]=of p2[0]=th p2[1]=Wo p2[2]=by p3[-2]=End p3[-1]= p3[0]=the p3[1]=Wor p3[2]= p4[-2]= p4[-1]= p4[0]= p4[1]=Worl p4[2]= s1[-2]=d s1[-1]=f s1[0]=e s1[1]=d s1[2]=y s2[-2]=nd s2[-1]=of s2[0]=he s2[1]=ld s2[2]=by s3[-2]=End s3[-1]= s3[0]=the s3[1]=rld s3[2]= s4[-2]= s4[-1]= s4[0]= s4[1]=orld s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=End|of w[-1]|w[0]=of|the w[0]|w[1]=the|World w[1]|w[2]=World|by pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=End w[-4..-1]=of w[1..4]=World w[1..4]=by w[1..4]=The w[1..4]=living +song w[-2]=of w[-1]=the w[0]=World w[1]=by w[2]=The wl[-2]=of wl[-1]=the wl[0]=world wl[1]=by wl[2]=the pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=IN pos[2]=DT chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=LLL shape[0]=ULLLL shape[1]=LL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=o p1[-1]=t p1[0]=W p1[1]=b p1[2]=T p2[-2]=of p2[-1]=th p2[0]=Wo p2[1]=by p2[2]=Th p3[-2]= p3[-1]=the p3[0]=Wor p3[1]= p3[2]=The p4[-2]= p4[-1]= p4[0]=Worl p4[1]= p4[2]= s1[-2]=f s1[-1]=e s1[0]=d s1[1]=y s1[2]=e s2[-2]=of s2[-1]=he s2[0]=ld s2[1]=by s2[2]=he s3[-2]= s3[-1]=the s3[0]=rld s3[1]= s3[2]=The s4[-2]= s4[-1]= s4[0]=orld s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=of|the w[-1]|w[0]=the|World w[0]|w[1]=World|by w[1]|w[2]=by|The pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=End w[-4..-1]=of w[-4..-1]=the w[1..4]=by w[1..4]=The w[1..4]=living w[1..4]=end +O w[-2]=the w[-1]=World w[0]=by w[1]=The w[2]=living wl[-2]=the wl[-1]=world wl[0]=by wl[1]=the wl[2]=living pos[-2]=NN pos[-1]=NN pos[0]=IN pos[1]=DT pos[2]=DT chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=ULLLL shape[0]=LL shape[1]=ULL shape[2]=LLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=t p1[-1]=W p1[0]=b p1[1]=T p1[2]=l p2[-2]=th p2[-1]=Wo p2[0]=by p2[1]=Th p2[2]=li p3[-2]=the p3[-1]=Wor p3[0]= p3[1]=The p3[2]=liv p4[-2]= p4[-1]=Worl p4[0]= p4[1]= p4[2]=livi s1[-2]=e s1[-1]=d s1[0]=y s1[1]=e s1[2]=g s2[-2]=he s2[-1]=ld s2[0]=by s2[1]=he s2[2]=ng s3[-2]=the s3[-1]=rld s3[0]= s3[1]=The s3[2]=ing s4[-2]= s4[-1]=orld s4[0]= s4[1]= s4[2]=ving 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|World w[-1]|w[0]=World|by w[0]|w[1]=by|The w[1]|w[2]=The|living pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=End w[-4..-1]=of w[-4..-1]=the w[-4..-1]=World w[1..4]=The w[1..4]=living w[1..4]=end +artist w[-2]=World w[-1]=by w[0]=The w[1]=living w[2]=end wl[-2]=world wl[-1]=by wl[0]=the wl[1]=living wl[2]=end pos[-2]=NN pos[-1]=IN pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULL shape[1]=LLLLLL shape[2]=LLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=W p1[-1]=b p1[0]=T p1[1]=l p1[2]=e p2[-2]=Wo p2[-1]=by p2[0]=Th p2[1]=li p2[2]=en p3[-2]=Wor p3[-1]= p3[0]=The p3[1]=liv p3[2]=end p4[-2]=Worl p4[-1]= p4[0]= p4[1]=livi p4[2]= s1[-2]=d s1[-1]=y s1[0]=e s1[1]=g s1[2]=d s2[-2]=ld s2[-1]=by s2[0]=he s2[1]=ng s2[2]=nd s3[-2]=rld s3[-1]= s3[0]=The s3[1]=ing s3[2]=end s4[-2]=orld s4[-1]= s4[0]= s4[1]=ving s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=World|by w[-1]|w[0]=by|The w[0]|w[1]=The|living w[1]|w[2]=living|end pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=of w[-4..-1]=the w[-4..-1]=World w[-4..-1]=by w[1..4]=living w[1..4]=end +artist w[-2]=by w[-1]=The w[0]=living w[1]=end wl[-2]=by wl[-1]=the wl[0]=living wl[1]=end pos[-2]=IN pos[-1]=DT pos[0]=DT pos[1]=DT chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LL shape[-1]=ULL shape[0]=LLLLLL shape[1]=LLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter p1[-2]=b p1[-1]=T p1[0]=l p1[1]=e p2[-2]=by p2[-1]=Th p2[0]=li p2[1]=en p3[-2]= p3[-1]=The p3[0]=liv p3[1]=end p4[-2]= p4[-1]= p4[0]=livi p4[1]= s1[-2]=y s1[-1]=e s1[0]=g s1[1]=d s2[-2]=by s2[-1]=he s2[0]=ng s2[1]=nd s3[-2]= s3[-1]=The s3[0]=ing s3[1]=end s4[-2]= s4[-1]= s4[0]=ving s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=by|The w[-1]|w[0]=The|living w[0]|w[1]=living|end pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=the w[-4..-1]=World w[-4..-1]=by w[-4..-1]=The w[1..4]=end +artist w[-2]=The w[-1]=living w[0]=end wl[-2]=the wl[-1]=living wl[0]=end pos[-2]=DT pos[-1]=DT pos[0]=DT chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=LLLLLL shape[0]=LLL shaped[-2]=UL shaped[-1]=L shaped[0]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter p1[-2]=T p1[-1]=l p1[0]=e p2[-2]=Th p2[-1]=li p2[0]=en p3[-2]=The p3[-1]=liv p3[0]=end p4[-2]= p4[-1]=livi p4[0]= s1[-2]=e s1[-1]=g s1[0]=d s2[-2]=he s2[-1]=ng s2[0]=nd s3[-2]=The s3[-1]=ing s3[0]=end s4[-2]= s4[-1]=ving s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=The|living w[-1]|w[0]=living|end pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=World w[-4..-1]=by w[-4..-1]=The w[-4..-1]=living __EOS__ + +O w[0]=play w[1]=Metallica wl[0]=play wl[1]=metallica pos[0]=VB pos[1]=NNP chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=ULLLLLLLL shaped[0]=L shaped[1]=UL type[0]=AllLetter type[1]=InitUpper p1[0]=p p1[1]=M p2[0]=pl p2[1]=Me p3[0]=pla p3[1]=Met p4[0]=play p4[1]=Meta s1[0]=y s1[1]=a s2[0]=ay s2[1]=ca s3[0]=lay s3[1]=ica s4[0]=play s4[1]=lica 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|Metallica pos[0]|pos[1]=VB|NNP chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|UL type[0]|type[1]=AllLetter|InitUpper w[1..4]=Metallica __BOS__ +artist w[-1]=play w[0]=Metallica wl[-1]=play wl[0]=metallica pos[-1]=VB pos[0]=NNP chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=ULLLLLLLL shaped[-1]=L shaped[0]=UL type[-1]=AllLetter type[0]=InitUpper p1[-1]=p p1[0]=M p2[-1]=pl p2[0]=Me p3[-1]=pla p3[0]=Met p4[-1]=play p4[0]=Meta s1[-1]=y s1[0]=a s2[-1]=ay s2[0]=ca s3[-1]=lay s3[0]=ica s4[-1]=play s4[0]=lica 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|Metallica pos[-1]|pos[0]=VB|NNP chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|UL type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play __EOS__ + +O w[0]=play w[1]=song w[2]=from wl[0]=play wl[1]=song wl[2]=from pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=f p2[0]=pl p2[1]=so p2[2]=fr p3[0]=pla p3[1]=son p3[2]=fro p4[0]=play p4[1]=song p4[2]=from s1[0]=y s1[1]=g s1[2]=m s2[0]=ay s2[1]=ng s2[2]=om s3[0]=lay s3[1]=ong s3[2]=rom s4[0]=play s4[1]=song s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|from pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=song w[1..4]=from w[1..4]=Rihanna __BOS__ +O w[-1]=play w[0]=song w[1]=from w[2]=Rihanna wl[-1]=play wl[0]=song wl[1]=from wl[2]=rihanna pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=f p1[2]=R p2[-1]=pl p2[0]=so p2[1]=fr p2[2]=Ri p3[-1]=pla p3[0]=son p3[1]=fro p3[2]=Rih p4[-1]=play p4[0]=song p4[1]=from p4[2]=Riha s1[-1]=y s1[0]=g s1[1]=m s1[2]=a s2[-1]=ay s2[0]=ng s2[1]=om s2[2]=na s3[-1]=lay s3[0]=ong s3[1]=rom s3[2]=nna s4[-1]=play s4[0]=song s4[1]=from s4[2]=anna 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|from w[1]|w[2]=from|Rihanna pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=from w[1..4]=Rihanna +O w[-2]=play w[-1]=song w[0]=from w[1]=Rihanna wl[-2]=play wl[-1]=song wl[0]=from wl[1]=rihanna pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=s p1[0]=f p1[1]=R p2[-2]=pl p2[-1]=so p2[0]=fr p2[1]=Ri p3[-2]=pla p3[-1]=son p3[0]=fro p3[1]=Rih p4[-2]=play p4[-1]=song p4[0]=from p4[1]=Riha s1[-2]=y s1[-1]=g s1[0]=m s1[1]=a s2[-2]=ay s2[-1]=ng s2[0]=om s2[1]=na s3[-2]=lay s3[-1]=ong s3[0]=rom s3[1]=nna s4[-2]=play s4[-1]=song s4[0]=from s4[1]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|from w[0]|w[1]=from|Rihanna pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=Rihanna +artist w[-2]=song w[-1]=from w[0]=Rihanna wl[-2]=song wl[-1]=from wl[0]=rihanna pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=f p1[0]=R p2[-2]=so p2[-1]=fr p2[0]=Ri p3[-2]=son p3[-1]=fro p3[0]=Rih p4[-2]=song p4[-1]=from p4[0]=Riha s1[-2]=g s1[-1]=m s1[0]=a s2[-2]=ng s2[-1]=om s2[0]=na s3[-2]=ong s3[-1]=rom s3[0]=nna s4[-2]=song s4[-1]=from s4[0]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|from w[-1]|w[0]=from|Rihanna pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=from __EOS__ + +O w[0]=play w[1]=a w[2]=U2 wl[0]=play wl[1]=a wl[2]=u2 pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=L shape[2]=UD shaped[0]=L shaped[1]=L shaped[2]=UD type[0]=AllLetter type[1]=AllLetter type[2]=AllUpperDigit p1[0]=p p1[1]=a p1[2]=U p2[0]=pl p2[1]= p2[2]=U2 p3[0]=pla p3[1]= p3[2]= p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=a s1[2]=2 s2[0]=ay s2[1]= s2[2]=U2 s3[0]=lay s3[1]= s3[2]= s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=yes d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=yes al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|U2 pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UD type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllUpperDigit w[1..4]=a w[1..4]=U2 w[1..4]=song __BOS__ +O w[-1]=play w[0]=a w[1]=U2 w[2]=song wl[-1]=play wl[0]=a wl[1]=u2 wl[2]=song pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=L shape[1]=UD shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=UD shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllUpperDigit type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=U p1[2]=s p2[-1]=pl p2[0]= p2[1]=U2 p2[2]=so p3[-1]=pla p3[0]= p3[1]= p3[2]=son p4[-1]=play p4[0]= p4[1]= p4[2]=song s1[-1]=y s1[0]=a s1[1]=2 s1[2]=g s2[-1]=ay s2[0]= s2[1]=U2 s2[2]=ng s3[-1]=lay s3[0]= s3[1]= s3[2]=ong s4[-1]=play s4[0]= s4[1]= s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=yes d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=yes au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|U2 w[1]|w[2]=U2|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UD shaped[1]|shaped[2]=UD|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllUpperDigit type[1]|type[2]=AllUpperDigit|AllLetter w[-4..-1]=play w[1..4]=U2 w[1..4]=song +artist w[-2]=play w[-1]=a w[0]=U2 w[1]=song wl[-2]=play wl[-1]=a wl[0]=u2 wl[1]=song pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=L shape[0]=UD shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UD shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllUpperDigit type[1]=AllLetter p1[-2]=p p1[-1]=a p1[0]=U p1[1]=s p2[-2]=pl p2[-1]= p2[0]=U2 p2[1]=so p3[-2]=pla p3[-1]= p3[0]= p3[1]=son p4[-2]=play p4[-1]= p4[0]= p4[1]=song s1[-2]=y s1[-1]=a s1[0]=2 s1[1]=g s2[-2]=ay s2[-1]= s2[0]=U2 s2[1]=ng s3[-2]=lay s3[-1]= s3[0]= s3[1]=ong s4[-2]=play s4[-1]= s4[0]= s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=yes d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=yes au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|U2 w[0]|w[1]=U2|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UD shaped[0]|shaped[1]=UD|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllUpperDigit type[0]|type[1]=AllUpperDigit|AllLetter w[-4..-1]=play w[-4..-1]=a w[1..4]=song +O w[-2]=a w[-1]=U2 w[0]=song wl[-2]=a wl[-1]=u2 wl[0]=song pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=L shape[-1]=UD shape[0]=LLLL shaped[-2]=L shaped[-1]=UD shaped[0]=L type[-2]=AllLetter type[-1]=AllUpperDigit type[0]=AllLetter p1[-2]=a p1[-1]=U p1[0]=s p2[-2]= p2[-1]=U2 p2[0]=so p3[-2]= p3[-1]= p3[0]=son p4[-2]= p4[-1]= p4[0]=song s1[-2]=a s1[-1]=2 s1[0]=g s2[-2]= s2[-1]=U2 s2[0]=ng s3[-2]= s3[-1]= s3[0]=ong s4[-2]= s4[-1]= s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=yes d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=yes au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=no cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=yes cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=a|U2 w[-1]|w[0]=U2|song pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|UD shaped[-1]|shaped[0]=UD|L type[-2]|type[-1]=AllLetter|AllUpperDigit type[-1]|type[0]=AllUpperDigit|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=U2 __EOS__ + +O w[0]=play w[1]=a w[2]=song wl[0]=play wl[1]=a wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=s p2[0]=pl p2[1]= p2[2]=so p3[0]=pla p3[1]= p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=a s1[2]=g s2[0]=ay s2[1]= s2[2]=ng s3[0]=lay s3[1]= s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=song w[1..4]=from w[1..4]=Spotify __BOS__ +O w[-1]=play w[0]=a w[1]=song w[2]=from wl[-1]=play wl[0]=a wl[1]=song wl[2]=from pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=L shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=s p1[2]=f p2[-1]=pl p2[0]= p2[1]=so p2[2]=fr p3[-1]=pla p3[0]= p3[1]=son p3[2]=fro p4[-1]=play p4[0]= p4[1]=song p4[2]=from s1[-1]=y s1[0]=a s1[1]=g s1[2]=m s2[-1]=ay s2[0]= s2[1]=ng s2[2]=om s3[-1]=lay s3[0]= s3[1]=ong s3[2]=rom s4[-1]=play s4[0]= s4[1]=song s4[2]=from 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|song w[1]|w[2]=song|from pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=song w[1..4]=from w[1..4]=Spotify +O w[-2]=play w[-1]=a w[0]=song w[1]=from w[2]=Spotify wl[-2]=play wl[-1]=a wl[0]=song wl[1]=from wl[2]=spotify pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=s p1[1]=f p1[2]=S p2[-2]=pl p2[-1]= p2[0]=so p2[1]=fr p2[2]=Sp p3[-2]=pla p3[-1]= p3[0]=son p3[1]=fro p3[2]=Spo p4[-2]=play p4[-1]= p4[0]=song p4[1]=from p4[2]=Spot s1[-2]=y s1[-1]=a s1[0]=g s1[1]=m s1[2]=y s2[-2]=ay s2[-1]= s2[0]=ng s2[1]=om s2[2]=fy s3[-2]=lay s3[-1]= s3[0]=ong s3[1]=rom s3[2]=ify s4[-2]=play s4[-1]= s4[0]=song s4[1]=from s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|song w[0]|w[1]=song|from w[1]|w[2]=from|Spotify pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=a w[1..4]=from w[1..4]=Spotify +O w[-2]=a w[-1]=song w[0]=from w[1]=Spotify wl[-2]=a wl[-1]=song wl[0]=from wl[1]=spotify pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=L shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=a p1[-1]=s p1[0]=f p1[1]=S p2[-2]= p2[-1]=so p2[0]=fr p2[1]=Sp p3[-2]= p3[-1]=son p3[0]=fro p3[1]=Spo p4[-2]= p4[-1]=song p4[0]=from p4[1]=Spot s1[-2]=a s1[-1]=g s1[0]=m s1[1]=y s2[-2]= s2[-1]=ng s2[0]=om s2[1]=fy s3[-2]= s3[-1]=ong s3[0]=rom s3[1]=ify s4[-2]= s4[-1]=song s4[0]=from s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=a|song w[-1]|w[0]=song|from w[0]|w[1]=from|Spotify pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=from w[0]=Spotify wl[-2]=song wl[-1]=from wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=f p1[0]=S p2[-2]=so p2[-1]=fr p2[0]=Sp p3[-2]=son p3[-1]=fro p3[0]=Spo p4[-2]=song p4[-1]=from p4[0]=Spot s1[-2]=g s1[-1]=m s1[0]=y s2[-2]=ng s2[-1]=om s2[0]=fy s3[-2]=ong s3[-1]=rom s3[0]=ify s4[-2]=song s4[-1]=from s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|from w[-1]|w[0]=from|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[-4..-1]=from __EOS__ + +O w[0]=play w[1]=Tears w[2]=in wl[0]=play wl[1]=tears wl[2]=in pos[0]=VB pos[1]=NNS pos[2]=NNS chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=T p1[2]=i p2[0]=pl p2[1]=Te p2[2]=in p3[0]=pla p3[1]=Tea p3[2]= p4[0]=play p4[1]=Tear p4[2]= s1[0]=y s1[1]=s s1[2]=n s2[0]=ay s2[1]=rs s2[2]=in s3[0]=lay s3[1]=ars s3[2]= s4[0]=play s4[1]=ears s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Tears w[1]|w[2]=Tears|in pos[0]|pos[1]=VB|NNS pos[1]|pos[2]=NNS|NNS chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Tears w[1..4]=in w[1..4]=Heaven w[1..4]=by __BOS__ +album w[-1]=play w[0]=Tears w[1]=in w[2]=Heaven wl[-1]=play wl[0]=tears wl[1]=in wl[2]=heaven pos[-1]=VB pos[0]=NNS pos[1]=NNS pos[2]=NNS chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLL shape[1]=LL shape[2]=ULLLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=T p1[1]=i p1[2]=H p2[-1]=pl p2[0]=Te p2[1]=in p2[2]=He p3[-1]=pla p3[0]=Tea p3[1]= p3[2]=Hea p4[-1]=play p4[0]=Tear p4[1]= p4[2]=Heav s1[-1]=y s1[0]=s s1[1]=n s1[2]=n s2[-1]=ay s2[0]=rs s2[1]=in s2[2]=en s3[-1]=lay s3[0]=ars s3[1]= s3[2]=ven s4[-1]=play s4[0]=ears s4[1]= s4[2]=aven 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Tears w[0]|w[1]=Tears|in w[1]|w[2]=in|Heaven pos[-1]|pos[0]=VB|NNS pos[0]|pos[1]=NNS|NNS pos[1]|pos[2]=NNS|NNS chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=in w[1..4]=Heaven w[1..4]=by w[1..4]=Eric +album w[-2]=play w[-1]=Tears w[0]=in w[1]=Heaven w[2]=by wl[-2]=play wl[-1]=tears wl[0]=in wl[1]=heaven wl[2]=by pos[-2]=VB pos[-1]=NNS pos[0]=NNS pos[1]=NNS pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=T p1[0]=i p1[1]=H p1[2]=b p2[-2]=pl p2[-1]=Te p2[0]=in p2[1]=He p2[2]=by p3[-2]=pla p3[-1]=Tea p3[0]= p3[1]=Hea p3[2]= p4[-2]=play p4[-1]=Tear p4[0]= p4[1]=Heav p4[2]= s1[-2]=y s1[-1]=s s1[0]=n s1[1]=n s1[2]=y s2[-2]=ay s2[-1]=rs s2[0]=in s2[1]=en s2[2]=by s3[-2]=lay s3[-1]=ars s3[0]= s3[1]=ven s3[2]= s4[-2]=play s4[-1]=ears s4[0]= s4[1]=aven s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Tears w[-1]|w[0]=Tears|in w[0]|w[1]=in|Heaven w[1]|w[2]=Heaven|by pos[-2]|pos[-1]=VB|NNS pos[-1]|pos[0]=NNS|NNS pos[0]|pos[1]=NNS|NNS pos[1]|pos[2]=NNS|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Tears w[1..4]=Heaven w[1..4]=by w[1..4]=Eric w[1..4]=Clapton +album w[-2]=Tears w[-1]=in w[0]=Heaven w[1]=by w[2]=Eric wl[-2]=tears wl[-1]=in wl[0]=heaven wl[1]=by wl[2]=eric pos[-2]=NNS pos[-1]=NNS pos[0]=NNS pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=LL shape[2]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=T p1[-1]=i p1[0]=H p1[1]=b p1[2]=E p2[-2]=Te p2[-1]=in p2[0]=He p2[1]=by p2[2]=Er p3[-2]=Tea p3[-1]= p3[0]=Hea p3[1]= p3[2]=Eri p4[-2]=Tear p4[-1]= p4[0]=Heav p4[1]= p4[2]=Eric s1[-2]=s s1[-1]=n s1[0]=n s1[1]=y s1[2]=c s2[-2]=rs s2[-1]=in s2[0]=en s2[1]=by s2[2]=ic s3[-2]=ars s3[-1]= s3[0]=ven s3[1]= s3[2]=ric s4[-2]=ears s4[-1]= s4[0]=aven s4[1]= s4[2]=Eric 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Tears|in w[-1]|w[0]=in|Heaven w[0]|w[1]=Heaven|by w[1]|w[2]=by|Eric pos[-2]|pos[-1]=NNS|NNS pos[-1]|pos[0]=NNS|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Tears w[-4..-1]=in w[1..4]=by w[1..4]=Eric w[1..4]=Clapton +O w[-2]=in w[-1]=Heaven w[0]=by w[1]=Eric w[2]=Clapton wl[-2]=in wl[-1]=heaven wl[0]=by wl[1]=eric wl[2]=clapton pos[-2]=NNS pos[-1]=NNS pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=LL shape[1]=ULLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=i p1[-1]=H p1[0]=b p1[1]=E p1[2]=C p2[-2]=in p2[-1]=He p2[0]=by p2[1]=Er p2[2]=Cl p3[-2]= p3[-1]=Hea p3[0]= p3[1]=Eri p3[2]=Cla p4[-2]= p4[-1]=Heav p4[0]= p4[1]=Eric p4[2]=Clap s1[-2]=n s1[-1]=n s1[0]=y s1[1]=c s1[2]=n s2[-2]=in s2[-1]=en s2[0]=by s2[1]=ic s2[2]=on s3[-2]= s3[-1]=ven s3[0]= s3[1]=ric s3[2]=ton s4[-2]= s4[-1]=aven s4[0]= s4[1]=Eric s4[2]=pton 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=in|Heaven w[-1]|w[0]=Heaven|by w[0]|w[1]=by|Eric w[1]|w[2]=Eric|Clapton pos[-2]|pos[-1]=NNS|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Tears w[-4..-1]=in w[-4..-1]=Heaven w[1..4]=Eric w[1..4]=Clapton +artist w[-2]=Heaven w[-1]=by w[0]=Eric w[1]=Clapton wl[-2]=heaven wl[-1]=by wl[0]=eric wl[1]=clapton pos[-2]=NNS pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=ULLL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=H p1[-1]=b p1[0]=E p1[1]=C p2[-2]=He p2[-1]=by p2[0]=Er p2[1]=Cl p3[-2]=Hea p3[-1]= p3[0]=Eri p3[1]=Cla p4[-2]=Heav p4[-1]= p4[0]=Eric p4[1]=Clap s1[-2]=n s1[-1]=y s1[0]=c s1[1]=n s2[-2]=en s2[-1]=by s2[0]=ic s2[1]=on s3[-2]=ven s3[-1]= s3[0]=ric s3[1]=ton s4[-2]=aven s4[-1]= s4[0]=Eric s4[1]=pton 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Heaven|by w[-1]|w[0]=by|Eric w[0]|w[1]=Eric|Clapton pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Tears w[-4..-1]=in w[-4..-1]=Heaven w[-4..-1]=by w[1..4]=Clapton +artist w[-2]=by w[-1]=Eric w[0]=Clapton wl[-2]=by wl[-1]=eric wl[0]=clapton pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=E p1[0]=C p2[-2]=by p2[-1]=Er p2[0]=Cl p3[-2]= p3[-1]=Eri p3[0]=Cla p4[-2]= p4[-1]=Eric p4[0]=Clap s1[-2]=y s1[-1]=c s1[0]=n s2[-2]=by s2[-1]=ic s2[0]=on s3[-2]= s3[-1]=ric s3[0]=ton s4[-2]= s4[-1]=Eric s4[0]=pton 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Eric w[-1]|w[0]=Eric|Clapton pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=in w[-4..-1]=Heaven w[-4..-1]=by w[-4..-1]=Eric __EOS__ + +O w[0]=play w[1]=song w[2]=by wl[0]=play wl[1]=song wl[2]=by pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=son p3[2]= p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=y s2[0]=ay s2[1]=ng s2[2]=by s3[0]=lay s3[1]=ong s3[2]= s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|by pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=song w[1..4]=by w[1..4]=Eminem w[1..4]=and __BOS__ +O w[-1]=play w[0]=song w[1]=by w[2]=Eminem wl[-1]=play wl[0]=song wl[1]=by wl[2]=eminem pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=E p2[-1]=pl p2[0]=so p2[1]=by p2[2]=Em p3[-1]=pla p3[0]=son p3[1]= p3[2]=Emi p4[-1]=play p4[0]=song p4[1]= p4[2]=Emin s1[-1]=y s1[0]=g s1[1]=y s1[2]=m s2[-1]=ay s2[0]=ng s2[1]=by s2[2]=em s3[-1]=lay s3[0]=ong s3[1]= s3[2]=nem s4[-1]=play s4[0]=song s4[1]= s4[2]=inem 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|by w[1]|w[2]=by|Eminem pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Eminem w[1..4]=and w[1..4]=Rihanna +O w[-2]=play w[-1]=song w[0]=by w[1]=Eminem w[2]=and wl[-2]=play wl[-1]=song wl[0]=by wl[1]=eminem wl[2]=and pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=CC chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=s p1[0]=b p1[1]=E p1[2]=a p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=Em p2[2]=an p3[-2]=pla p3[-1]=son p3[0]= p3[1]=Emi p3[2]=and p4[-2]=play p4[-1]=song p4[0]= p4[1]=Emin p4[2]= s1[-2]=y s1[-1]=g s1[0]=y s1[1]=m s1[2]=d s2[-2]=ay s2[-1]=ng s2[0]=by s2[1]=em s2[2]=nd s3[-2]=lay s3[-1]=ong s3[0]= s3[1]=nem s3[2]=and s4[-2]=play s4[-1]=song s4[0]= s4[1]=inem s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|by w[0]|w[1]=by|Eminem w[1]|w[2]=Eminem|and pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|CC chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=song w[1..4]=Eminem w[1..4]=and w[1..4]=Rihanna +artist w[-2]=song w[-1]=by w[0]=Eminem w[1]=and w[2]=Rihanna wl[-2]=song wl[-1]=by wl[0]=eminem wl[1]=and wl[2]=rihanna pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=CC pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=LLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=b p1[0]=E p1[1]=a p1[2]=R p2[-2]=so p2[-1]=by p2[0]=Em p2[1]=an p2[2]=Ri p3[-2]=son p3[-1]= p3[0]=Emi p3[1]=and p3[2]=Rih p4[-2]=song p4[-1]= p4[0]=Emin p4[1]= p4[2]=Riha s1[-2]=g s1[-1]=y s1[0]=m s1[1]=d s1[2]=a s2[-2]=ng s2[-1]=by s2[0]=em s2[1]=nd s2[2]=na s3[-2]=ong s3[-1]= s3[0]=nem s3[1]=and s3[2]=nna s4[-2]=song s4[-1]= s4[0]=inem s4[1]= s4[2]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|by w[-1]|w[0]=by|Eminem w[0]|w[1]=Eminem|and w[1]|w[2]=and|Rihanna pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|CC pos[1]|pos[2]=CC|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by w[1..4]=and w[1..4]=Rihanna +O w[-2]=by w[-1]=Eminem w[0]=and w[1]=Rihanna wl[-2]=by wl[-1]=eminem wl[0]=and wl[1]=rihanna pos[-2]=IN pos[-1]=NNP pos[0]=CC pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=LLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=b p1[-1]=E p1[0]=a p1[1]=R p2[-2]=by p2[-1]=Em p2[0]=an p2[1]=Ri p3[-2]= p3[-1]=Emi p3[0]=and p3[1]=Rih p4[-2]= p4[-1]=Emin p4[0]= p4[1]=Riha s1[-2]=y s1[-1]=m s1[0]=d s1[1]=a s2[-2]=by s2[-1]=em s2[0]=nd s2[1]=na s3[-2]= s3[-1]=nem s3[0]=and s3[1]=nna s4[-2]= s4[-1]=inem s4[0]= s4[1]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=by|Eminem w[-1]|w[0]=Eminem|and w[0]|w[1]=and|Rihanna pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|CC pos[0]|pos[1]=CC|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by w[-4..-1]=Eminem w[1..4]=Rihanna +artist w[-2]=Eminem w[-1]=and w[0]=Rihanna wl[-2]=eminem wl[-1]=and wl[0]=rihanna pos[-2]=NNP pos[-1]=CC pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLL shape[-1]=LLL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=E p1[-1]=a p1[0]=R p2[-2]=Em p2[-1]=an p2[0]=Ri p3[-2]=Emi p3[-1]=and p3[0]=Rih p4[-2]=Emin p4[-1]= p4[0]=Riha s1[-2]=m s1[-1]=d s1[0]=a s2[-2]=em s2[-1]=nd s2[0]=na s3[-2]=nem s3[-1]=and s3[0]=nna s4[-2]=inem s4[-1]= s4[0]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Eminem|and w[-1]|w[0]=and|Rihanna pos[-2]|pos[-1]=NNP|CC pos[-1]|pos[0]=CC|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=song w[-4..-1]=by w[-4..-1]=Eminem w[-4..-1]=and __EOS__ + +O w[0]=play w[1]=Miracles w[2]=from wl[0]=play wl[1]=miracles wl[2]=from pos[0]=VB pos[1]=NNS pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=LLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=M p1[2]=f p2[0]=pl p2[1]=Mi p2[2]=fr p3[0]=pla p3[1]=Mir p3[2]=fro p4[0]=play p4[1]=Mira p4[2]=from s1[0]=y s1[1]=s s1[2]=m s2[0]=ay s2[1]=es s2[2]=om s3[0]=lay s3[1]=les s3[2]=rom s4[0]=play s4[1]=cles s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Miracles w[1]|w[2]=Miracles|from pos[0]|pos[1]=VB|NNS pos[1]|pos[2]=NNS|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Miracles w[1..4]=from w[1..4]=phone __BOS__ +song w[-1]=play w[0]=Miracles w[1]=from w[2]=phone wl[-1]=play wl[0]=miracles wl[1]=from wl[2]=phone pos[-1]=VB pos[0]=NNS pos[1]=IN pos[2]=NN chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=LLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=M p1[1]=f p1[2]=p p2[-1]=pl p2[0]=Mi p2[1]=fr p2[2]=ph p3[-1]=pla p3[0]=Mir p3[1]=fro p3[2]=pho p4[-1]=play p4[0]=Mira p4[1]=from p4[2]=phon s1[-1]=y s1[0]=s s1[1]=m s1[2]=e s2[-1]=ay s2[0]=es s2[1]=om s2[2]=ne s3[-1]=lay s3[0]=les s3[1]=rom s3[2]=one s4[-1]=play s4[0]=cles s4[1]=from s4[2]=hone 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Miracles w[0]|w[1]=Miracles|from w[1]|w[2]=from|phone pos[-1]|pos[0]=VB|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=from w[1..4]=phone +O w[-2]=play w[-1]=Miracles w[0]=from w[1]=phone wl[-2]=play wl[-1]=miracles wl[0]=from wl[1]=phone pos[-2]=VB pos[-1]=NNS pos[0]=IN pos[1]=NN chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=M p1[0]=f p1[1]=p p2[-2]=pl p2[-1]=Mi p2[0]=fr p2[1]=ph p3[-2]=pla p3[-1]=Mir p3[0]=fro p3[1]=pho p4[-2]=play p4[-1]=Mira p4[0]=from p4[1]=phon s1[-2]=y s1[-1]=s s1[0]=m s1[1]=e s2[-2]=ay s2[-1]=es s2[0]=om s2[1]=ne s3[-2]=lay s3[-1]=les s3[0]=rom s3[1]=one s4[-2]=play s4[-1]=cles s4[0]=from s4[1]=hone 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Miracles w[-1]|w[0]=Miracles|from w[0]|w[1]=from|phone pos[-2]|pos[-1]=VB|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Miracles w[1..4]=phone +O w[-2]=Miracles w[-1]=from w[0]=phone wl[-2]=miracles wl[-1]=from wl[0]=phone pos[-2]=NNS pos[-1]=IN pos[0]=NN chk[-2]=I chk[-1]=O chk[0]=O shape[-2]=ULLLLLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter p1[-2]=M p1[-1]=f p1[0]=p p2[-2]=Mi p2[-1]=fr p2[0]=ph p3[-2]=Mir p3[-1]=fro p3[0]=pho p4[-2]=Mira p4[-1]=from p4[0]=phon s1[-2]=s s1[-1]=m s1[0]=e s2[-2]=es s2[-1]=om s2[0]=ne s3[-2]=les s3[-1]=rom s3[0]=one s4[-2]=cles s4[-1]=from s4[0]=hone 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Miracles|from w[-1]|w[0]=from|phone pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Miracles w[-4..-1]=from __EOS__ + +O w[0]=switch w[1]=to w[2]=workout wl[0]=switch wl[1]=to wl[2]=workout pos[0]=VB pos[1]=TO pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLLLL shape[1]=LL shape[2]=LLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=w p2[0]=sw p2[1]=to p2[2]=wo p3[0]=swi p3[1]= p3[2]=wor p4[0]=swit p4[1]= p4[2]=work s1[0]=h s1[1]=o s1[2]=t s2[0]=ch s2[1]=to s2[2]=ut s3[0]=tch s3[1]= s3[2]=out s4[0]=itch s4[1]= s4[2]=kout 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=switch|to w[1]|w[2]=to|workout pos[0]|pos[1]=VB|TO pos[1]|pos[2]=TO|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=workout w[1..4]=music __BOS__ +O w[-1]=switch w[0]=to w[1]=workout w[2]=music wl[-1]=switch wl[0]=to wl[1]=workout wl[2]=music pos[-1]=VB pos[0]=TO pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLLLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=s p1[0]=t p1[1]=w p1[2]=m p2[-1]=sw p2[0]=to p2[1]=wo p2[2]=mu p3[-1]=swi p3[0]= p3[1]=wor p3[2]=mus p4[-1]=swit p4[0]= p4[1]=work p4[2]=musi s1[-1]=h s1[0]=o s1[1]=t s1[2]=c s2[-1]=ch s2[0]=to s2[1]=ut s2[2]=ic s3[-1]=tch s3[0]= s3[1]=out s3[2]=sic s4[-1]=itch s4[0]= s4[1]=kout s4[2]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=switch|to w[0]|w[1]=to|workout w[1]|w[2]=workout|music pos[-1]|pos[0]=VB|TO pos[0]|pos[1]=TO|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=switch w[1..4]=workout w[1..4]=music +playlist w[-2]=switch w[-1]=to w[0]=workout w[1]=music wl[-2]=switch wl[-1]=to wl[0]=workout wl[1]=music pos[-2]=VB pos[-1]=TO pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=s p1[-1]=t p1[0]=w p1[1]=m p2[-2]=sw p2[-1]=to p2[0]=wo p2[1]=mu p3[-2]=swi p3[-1]= p3[0]=wor p3[1]=mus p4[-2]=swit p4[-1]= p4[0]=work p4[1]=musi s1[-2]=h s1[-1]=o s1[0]=t s1[1]=c s2[-2]=ch s2[-1]=to s2[0]=ut s2[1]=ic s3[-2]=tch s3[-1]= s3[0]=out s3[1]=sic s4[-2]=itch s4[-1]= s4[0]=kout s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=switch|to w[-1]|w[0]=to|workout w[0]|w[1]=workout|music pos[-2]|pos[-1]=VB|TO pos[-1]|pos[0]=TO|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=switch w[-4..-1]=to w[1..4]=music +O w[-2]=to w[-1]=workout w[0]=music wl[-2]=to wl[-1]=workout wl[0]=music pos[-2]=TO pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LL shape[-1]=LLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=w p1[0]=m p2[-2]=to p2[-1]=wo p2[0]=mu p3[-2]= p3[-1]=wor p3[0]=mus p4[-2]= p4[-1]=work p4[0]=musi s1[-2]=o s1[-1]=t s1[0]=c s2[-2]=to s2[-1]=ut s2[0]=ic s3[-2]= s3[-1]=out s3[0]=sic s4[-2]= s4[-1]=kout s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|workout w[-1]|w[0]=workout|music pos[-2]|pos[-1]=TO|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=switch w[-4..-1]=to w[-4..-1]=workout __EOS__ + +O w[0]=play w[1]=song w[2]=from wl[0]=play wl[1]=song wl[2]=from pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=f p2[0]=pl p2[1]=so p2[2]=fr p3[0]=pla p3[1]=son p3[2]=fro p4[0]=play p4[1]=song p4[2]=from s1[0]=y s1[1]=g s1[2]=m s2[0]=ay s2[1]=ng s2[2]=om s3[0]=lay s3[1]=ong s3[2]=rom s4[0]=play s4[1]=song s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|from pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=song w[1..4]=from w[1..4]=the w[1..4]=album __BOS__ +O w[-1]=play w[0]=song w[1]=from w[2]=the wl[-1]=play wl[0]=song wl[1]=from wl[2]=the pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=f p1[2]=t p2[-1]=pl p2[0]=so p2[1]=fr p2[2]=th p3[-1]=pla p3[0]=son p3[1]=fro p3[2]=the p4[-1]=play p4[0]=song p4[1]=from p4[2]= s1[-1]=y s1[0]=g s1[1]=m s1[2]=e s2[-1]=ay s2[0]=ng s2[1]=om s2[2]=he s3[-1]=lay s3[0]=ong s3[1]=rom s3[2]=the s4[-1]=play s4[0]=song s4[1]=from s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|from w[1]|w[2]=from|the pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=from w[1..4]=the w[1..4]=album w[1..4]=Address +O w[-2]=play w[-1]=song w[0]=from w[1]=the w[2]=album wl[-2]=play wl[-1]=song wl[0]=from wl[1]=the wl[2]=album pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=s p1[0]=f p1[1]=t p1[2]=a p2[-2]=pl p2[-1]=so p2[0]=fr p2[1]=th p2[2]=al p3[-2]=pla p3[-1]=son p3[0]=fro p3[1]=the p3[2]=alb p4[-2]=play p4[-1]=song p4[0]=from p4[1]= p4[2]=albu s1[-2]=y s1[-1]=g s1[0]=m s1[1]=e s1[2]=m s2[-2]=ay s2[-1]=ng s2[0]=om s2[1]=he s2[2]=um s3[-2]=lay s3[-1]=ong s3[0]=rom s3[1]=the s3[2]=bum s4[-2]=play s4[-1]=song s4[0]=from s4[1]= s4[2]=lbum 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|from w[0]|w[1]=from|the w[1]|w[2]=the|album pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=song w[1..4]=the w[1..4]=album w[1..4]=Address +O w[-2]=song w[-1]=from w[0]=the w[1]=album w[2]=Address wl[-2]=song wl[-1]=from wl[0]=the wl[1]=album wl[2]=address pos[-2]=NN pos[-1]=IN pos[0]=DT pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=f p1[0]=t p1[1]=a p1[2]=A p2[-2]=so p2[-1]=fr p2[0]=th p2[1]=al p2[2]=Ad p3[-2]=son p3[-1]=fro p3[0]=the p3[1]=alb p3[2]=Add p4[-2]=song p4[-1]=from p4[0]= p4[1]=albu p4[2]=Addr s1[-2]=g s1[-1]=m s1[0]=e s1[1]=m s1[2]=s s2[-2]=ng s2[-1]=om s2[0]=he s2[1]=um s2[2]=ss s3[-2]=ong s3[-1]=rom s3[0]=the s3[1]=bum s3[2]=ess s4[-2]=song s4[-1]=from s4[0]= s4[1]=lbum s4[2]=ress 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|from w[-1]|w[0]=from|the w[0]|w[1]=the|album w[1]|w[2]=album|Address pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=from w[1..4]=album w[1..4]=Address +O w[-2]=from w[-1]=the w[0]=album w[1]=Address wl[-2]=from wl[-1]=the wl[0]=album wl[1]=address pos[-2]=IN pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=f p1[-1]=t p1[0]=a p1[1]=A p2[-2]=fr p2[-1]=th p2[0]=al p2[1]=Ad p3[-2]=fro p3[-1]=the p3[0]=alb p3[1]=Add p4[-2]=from p4[-1]= p4[0]=albu p4[1]=Addr s1[-2]=m s1[-1]=e s1[0]=m s1[1]=s s2[-2]=om s2[-1]=he s2[0]=um s2[1]=ss s3[-2]=rom s3[-1]=the s3[0]=bum s3[1]=ess s4[-2]=from s4[-1]= s4[0]=lbum s4[1]=ress 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=from|the w[-1]|w[0]=the|album w[0]|w[1]=album|Address pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=from w[-4..-1]=the w[1..4]=Address +album w[-2]=the w[-1]=album w[0]=Address wl[-2]=the wl[-1]=album wl[0]=address pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL shape[-1]=LLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=a p1[0]=A p2[-2]=th p2[-1]=al p2[0]=Ad p3[-2]=the p3[-1]=alb p3[0]=Add p4[-2]= p4[-1]=albu p4[0]=Addr s1[-2]=e s1[-1]=m s1[0]=s s2[-2]=he s2[-1]=um s2[0]=ss s3[-2]=the s3[-1]=bum s3[0]=ess s4[-2]= s4[-1]=lbum s4[0]=ress 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|album w[-1]|w[0]=album|Address pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=song w[-4..-1]=from w[-4..-1]=the w[-4..-1]=album __EOS__ + +O w[0]=play w[1]=some w[2]=good wl[0]=play wl[1]=some wl[2]=good pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=g p2[0]=pl p2[1]=so p2[2]=go p3[0]=pla p3[1]=som p3[2]=goo p4[0]=play p4[1]=some p4[2]=good s1[0]=y s1[1]=e s1[2]=d s2[0]=ay s2[1]=me s2[2]=od s3[0]=lay s3[1]=ome s3[2]=ood s4[0]=play s4[1]=some s4[2]=good 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|some w[1]|w[2]=some|good pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=some w[1..4]=good w[1..4]=music __BOS__ +O w[-1]=play w[0]=some w[1]=good w[2]=music wl[-1]=play wl[0]=some wl[1]=good wl[2]=music pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=g p1[2]=m p2[-1]=pl p2[0]=so p2[1]=go p2[2]=mu p3[-1]=pla p3[0]=som p3[1]=goo p3[2]=mus p4[-1]=play p4[0]=some p4[1]=good p4[2]=musi s1[-1]=y s1[0]=e s1[1]=d s1[2]=c s2[-1]=ay s2[0]=me s2[1]=od s2[2]=ic s3[-1]=lay s3[0]=ome s3[1]=ood s3[2]=sic s4[-1]=play s4[0]=some s4[1]=good s4[2]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|some w[0]|w[1]=some|good w[1]|w[2]=good|music pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=good w[1..4]=music +O w[-2]=play w[-1]=some w[0]=good w[1]=music wl[-2]=play wl[-1]=some wl[0]=good wl[1]=music pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=s p1[0]=g p1[1]=m p2[-2]=pl p2[-1]=so p2[0]=go p2[1]=mu p3[-2]=pla p3[-1]=som p3[0]=goo p3[1]=mus p4[-2]=play p4[-1]=some p4[0]=good p4[1]=musi s1[-2]=y s1[-1]=e s1[0]=d s1[1]=c s2[-2]=ay s2[-1]=me s2[0]=od s2[1]=ic s3[-2]=lay s3[-1]=ome s3[0]=ood s3[1]=sic s4[-2]=play s4[-1]=some s4[0]=good s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|some w[-1]|w[0]=some|good w[0]|w[1]=good|music pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[1..4]=music +O w[-2]=some w[-1]=good w[0]=music wl[-2]=some wl[-1]=good wl[0]=music pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=g p1[0]=m p2[-2]=so p2[-1]=go p2[0]=mu p3[-2]=som p3[-1]=goo p3[0]=mus p4[-2]=some p4[-1]=good p4[0]=musi s1[-2]=e s1[-1]=d s1[0]=c s2[-2]=me s2[-1]=od s2[0]=ic s3[-2]=ome s3[-1]=ood s3[0]=sic s4[-2]=some s4[-1]=good s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|good w[-1]|w[0]=good|music pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=good __EOS__ + +O w[0]=play w[1]=Black w[2]=Widow wl[0]=play wl[1]=black wl[2]=widow pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLL shape[2]=ULLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=B p1[2]=W p2[0]=pl p2[1]=Bl p2[2]=Wi p3[0]=pla p3[1]=Bla p3[2]=Wid p4[0]=play p4[1]=Blac p4[2]=Wido s1[0]=y s1[1]=k s1[2]=w s2[0]=ay s2[1]=ck s2[2]=ow s3[0]=lay s3[1]=ack s3[2]=dow s4[0]=play s4[1]=lack s4[2]=idow 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Black w[1]|w[2]=Black|Widow pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Black w[1..4]=Widow w[1..4]=by w[1..4]=Iggy __BOS__ +song w[-1]=play w[0]=Black w[1]=Widow w[2]=by wl[-1]=play wl[0]=black wl[1]=widow wl[2]=by pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULLLL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=B p1[1]=W p1[2]=b p2[-1]=pl p2[0]=Bl p2[1]=Wi p2[2]=by p3[-1]=pla p3[0]=Bla p3[1]=Wid p3[2]= p4[-1]=play p4[0]=Blac p4[1]=Wido p4[2]= s1[-1]=y s1[0]=k s1[1]=w s1[2]=y s2[-1]=ay s2[0]=ck s2[1]=ow s2[2]=by s3[-1]=lay s3[0]=ack s3[1]=dow s3[2]= s4[-1]=play s4[0]=lack s4[1]=idow s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Black w[0]|w[1]=Black|Widow w[1]|w[2]=Widow|by pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Widow w[1..4]=by w[1..4]=Iggy w[1..4]=Azalea +song w[-2]=play w[-1]=Black w[0]=Widow w[1]=by w[2]=Iggy wl[-2]=play wl[-1]=black wl[0]=widow wl[1]=by wl[2]=iggy pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULLLL shape[1]=LL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=B p1[0]=W p1[1]=b p1[2]=I p2[-2]=pl p2[-1]=Bl p2[0]=Wi p2[1]=by p2[2]=Ig p3[-2]=pla p3[-1]=Bla p3[0]=Wid p3[1]= p3[2]=Igg p4[-2]=play p4[-1]=Blac p4[0]=Wido p4[1]= p4[2]=Iggy s1[-2]=y s1[-1]=k s1[0]=w s1[1]=y s1[2]=y s2[-2]=ay s2[-1]=ck s2[0]=ow s2[1]=by s2[2]=gy s3[-2]=lay s3[-1]=ack s3[0]=dow s3[1]= s3[2]=ggy s4[-2]=play s4[-1]=lack s4[0]=idow s4[1]= s4[2]=Iggy 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Black w[-1]|w[0]=Black|Widow w[0]|w[1]=Widow|by w[1]|w[2]=by|Iggy pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Black w[1..4]=by w[1..4]=Iggy w[1..4]=Azalea w[1..4]=song +O w[-2]=Black w[-1]=Widow w[0]=by w[1]=Iggy w[2]=Azalea wl[-2]=black wl[-1]=widow wl[0]=by wl[1]=iggy wl[2]=azalea pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=B p1[-1]=W p1[0]=b p1[1]=I p1[2]=A p2[-2]=Bl p2[-1]=Wi p2[0]=by p2[1]=Ig p2[2]=Az p3[-2]=Bla p3[-1]=Wid p3[0]= p3[1]=Igg p3[2]=Aza p4[-2]=Blac p4[-1]=Wido p4[0]= p4[1]=Iggy p4[2]=Azal s1[-2]=k s1[-1]=w s1[0]=y s1[1]=y s1[2]=a s2[-2]=ck s2[-1]=ow s2[0]=by s2[1]=gy s2[2]=ea s3[-2]=ack s3[-1]=dow s3[0]= s3[1]=ggy s3[2]=lea s4[-2]=lack s4[-1]=idow s4[0]= s4[1]=Iggy s4[2]=alea 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Black|Widow w[-1]|w[0]=Widow|by w[0]|w[1]=by|Iggy w[1]|w[2]=Iggy|Azalea pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Black w[-4..-1]=Widow w[1..4]=Iggy w[1..4]=Azalea w[1..4]=song w[1..4]=on +artist w[-2]=Widow w[-1]=by w[0]=Iggy w[1]=Azalea w[2]=song wl[-2]=widow wl[-1]=by wl[0]=iggy wl[1]=azalea wl[2]=song pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NNP pos[2]=NN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLL shape[1]=ULLLLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=W p1[-1]=b p1[0]=I p1[1]=A p1[2]=s p2[-2]=Wi p2[-1]=by p2[0]=Ig p2[1]=Az p2[2]=so p3[-2]=Wid p3[-1]= p3[0]=Igg p3[1]=Aza p3[2]=son p4[-2]=Wido p4[-1]= p4[0]=Iggy p4[1]=Azal p4[2]=song s1[-2]=w s1[-1]=y s1[0]=y s1[1]=a s1[2]=g s2[-2]=ow s2[-1]=by s2[0]=gy s2[1]=ea s2[2]=ng s3[-2]=dow s3[-1]= s3[0]=ggy s3[1]=lea s3[2]=ong s4[-2]=idow s4[-1]= s4[0]=Iggy s4[1]=alea s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Widow|by w[-1]|w[0]=by|Iggy w[0]|w[1]=Iggy|Azalea w[1]|w[2]=Azalea|song pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Black w[-4..-1]=Widow w[-4..-1]=by w[1..4]=Azalea w[1..4]=song w[1..4]=on w[1..4]=Spotify +artist w[-2]=by w[-1]=Iggy w[0]=Azalea w[1]=song w[2]=on wl[-2]=by wl[-1]=iggy wl[0]=azalea wl[1]=song wl[2]=on pos[-2]=IN pos[-1]=NNP pos[0]=NNP pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=ULLL shape[0]=ULLLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=b p1[-1]=I p1[0]=A p1[1]=s p1[2]=o p2[-2]=by p2[-1]=Ig p2[0]=Az p2[1]=so p2[2]=on p3[-2]= p3[-1]=Igg p3[0]=Aza p3[1]=son p3[2]= p4[-2]= p4[-1]=Iggy p4[0]=Azal p4[1]=song p4[2]= s1[-2]=y s1[-1]=y s1[0]=a s1[1]=g s1[2]=n s2[-2]=by s2[-1]=gy s2[0]=ea s2[1]=ng s2[2]=on s3[-2]= s3[-1]=ggy s3[0]=lea s3[1]=ong s3[2]= s4[-2]= s4[-1]=Iggy s4[0]=alea s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Iggy w[-1]|w[0]=Iggy|Azalea w[0]|w[1]=Azalea|song w[1]|w[2]=song|on pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=Black w[-4..-1]=Widow w[-4..-1]=by w[-4..-1]=Iggy w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=Iggy w[-1]=Azalea w[0]=song w[1]=on w[2]=Spotify wl[-2]=iggy wl[-1]=azalea wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=NNP pos[-1]=NNP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=ULLL shape[-1]=ULLLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=I p1[-1]=A p1[0]=s p1[1]=o p1[2]=S p2[-2]=Ig p2[-1]=Az p2[0]=so p2[1]=on p2[2]=Sp p3[-2]=Igg p3[-1]=Aza p3[0]=son p3[1]= p3[2]=Spo p4[-2]=Iggy p4[-1]=Azal p4[0]=song p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=a s1[0]=g s1[1]=n s1[2]=y s2[-2]=gy s2[-1]=ea s2[0]=ng s2[1]=on s2[2]=fy s3[-2]=ggy s3[-1]=lea s3[0]=ong s3[1]= s3[2]=ify s4[-2]=Iggy s4[-1]=alea s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Iggy|Azalea w[-1]|w[0]=Azalea|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Widow w[-4..-1]=by w[-4..-1]=Iggy w[-4..-1]=Azalea w[1..4]=on w[1..4]=Spotify +O w[-2]=Azalea w[-1]=song w[0]=on w[1]=Spotify wl[-2]=azalea wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=A p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Az p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=Aza p3[-1]=son p3[0]= p3[1]=Spo p4[-2]=Azal p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=a s1[-1]=g s1[0]=n s1[1]=y s2[-2]=ea s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]=lea s3[-1]=ong s3[0]= s3[1]=ify s4[-2]=alea s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Azalea|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Iggy w[-4..-1]=Azalea w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Iggy w[-4..-1]=Azalea w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=the w[2]=song wl[0]=play wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=the p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=he s2[2]=ng s3[0]=lay s3[1]=the s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song w[1..4]=Love w[1..4]=Me __BOS__ +O w[-1]=play w[0]=the w[1]=song w[2]=Love wl[-1]=play wl[0]=the wl[1]=song wl[2]=love pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=s p1[2]=L p2[-1]=pl p2[0]=th p2[1]=so p2[2]=Lo p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Lov p4[-1]=play p4[0]= p4[1]=song p4[2]=Love s1[-1]=y s1[0]=e s1[1]=g s1[2]=e s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=ve s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ove s4[-1]=play s4[0]= s4[1]=song s4[2]=Love 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Love pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Love w[1..4]=Me w[1..4]=Like +O w[-2]=play w[-1]=the w[0]=song w[1]=Love w[2]=Me wl[-2]=play wl[-1]=the wl[0]=song wl[1]=love wl[2]=me pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=VB pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLL shape[2]=UL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=t p1[0]=s p1[1]=L p1[2]=M p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=Lo p2[2]=Me p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Lov p3[2]= p4[-2]=play p4[-1]= p4[0]=song p4[1]=Love p4[2]= s1[-2]=y s1[-1]=e s1[0]=g s1[1]=e s1[2]=e s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=ve s2[2]=Me s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ove s3[2]= s4[-2]=play s4[-1]= s4[0]=song s4[1]=Love s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Love w[1]|w[2]=Love|Me pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|VB pos[1]|pos[2]=VB|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[1..4]=Love w[1..4]=Me w[1..4]=Like w[1..4]=You +song w[-2]=the w[-1]=song w[0]=Love w[1]=Me w[2]=Like wl[-2]=the wl[-1]=song wl[0]=love wl[1]=me wl[2]=like pos[-2]=DT pos[-1]=NN pos[0]=VB pos[1]=VB pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLL shape[1]=UL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=t p1[-1]=s p1[0]=L p1[1]=M p1[2]=L p2[-2]=th p2[-1]=so p2[0]=Lo p2[1]=Me p2[2]=Li p3[-2]=the p3[-1]=son p3[0]=Lov p3[1]= p3[2]=Lik p4[-2]= p4[-1]=song p4[0]=Love p4[1]= p4[2]=Like s1[-2]=e s1[-1]=g s1[0]=e s1[1]=e s1[2]=e s2[-2]=he s2[-1]=ng s2[0]=ve s2[1]=Me s2[2]=ke s3[-2]=the s3[-1]=ong s3[0]=ove s3[1]= s3[2]=ike s4[-2]= s4[-1]=song s4[0]=Love s4[1]= s4[2]=Like 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Love w[0]|w[1]=Love|Me w[1]|w[2]=Me|Like pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[1..4]=Me w[1..4]=Like w[1..4]=You w[1..4]=Do +song w[-2]=song w[-1]=Love w[0]=Me w[1]=Like w[2]=You wl[-2]=song wl[-1]=love wl[0]=me wl[1]=like wl[2]=you pos[-2]=NN pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=VB chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=UL shape[1]=ULLL shape[2]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=s p1[-1]=L p1[0]=M p1[1]=L p1[2]=Y p2[-2]=so p2[-1]=Lo p2[0]=Me p2[1]=Li p2[2]=Yo p3[-2]=son p3[-1]=Lov p3[0]= p3[1]=Lik p3[2]=You p4[-2]=song p4[-1]=Love p4[0]= p4[1]=Like p4[2]= s1[-2]=g s1[-1]=e s1[0]=e s1[1]=e s1[2]=u s2[-2]=ng s2[-1]=ve s2[0]=Me s2[1]=ke s2[2]=ou s3[-2]=ong s3[-1]=ove s3[0]= s3[1]=ike s3[2]=You s4[-2]=song s4[-1]=Love s4[0]= s4[1]=Like s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Love w[-1]|w[0]=Love|Me w[0]|w[1]=Me|Like w[1]|w[2]=Like|You pos[-2]|pos[-1]=NN|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Love w[1..4]=Like w[1..4]=You w[1..4]=Do +song w[-2]=Love w[-1]=Me w[0]=Like w[1]=You w[2]=Do wl[-2]=love wl[-1]=me wl[0]=like wl[1]=you wl[2]=do pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=VB chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=UL shape[0]=ULLL shape[1]=ULL shape[2]=UL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=L p1[-1]=M p1[0]=L p1[1]=Y p1[2]=D p2[-2]=Lo p2[-1]=Me p2[0]=Li p2[1]=Yo p2[2]=Do p3[-2]=Lov p3[-1]= p3[0]=Lik p3[1]=You p3[2]= p4[-2]=Love p4[-1]= p4[0]=Like p4[1]= p4[2]= s1[-2]=e s1[-1]=e s1[0]=e s1[1]=u s1[2]=o s2[-2]=ve s2[-1]=Me s2[0]=ke s2[1]=ou s2[2]=Do s3[-2]=ove s3[-1]= s3[0]=ike s3[1]=You s3[2]= s4[-2]=Love s4[-1]= s4[0]=Like s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Love|Me w[-1]|w[0]=Me|Like w[0]|w[1]=Like|You w[1]|w[2]=You|Do pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Love w[-4..-1]=Me w[1..4]=You w[1..4]=Do +song w[-2]=Me w[-1]=Like w[0]=You w[1]=Do wl[-2]=me wl[-1]=like wl[0]=you wl[1]=do pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=VB chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=UL shape[-1]=ULLL shape[0]=ULL shape[1]=UL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=M p1[-1]=L p1[0]=Y p1[1]=D p2[-2]=Me p2[-1]=Li p2[0]=Yo p2[1]=Do p3[-2]= p3[-1]=Lik p3[0]=You p3[1]= p4[-2]= p4[-1]=Like p4[0]= p4[1]= s1[-2]=e s1[-1]=e s1[0]=u s1[1]=o s2[-2]=Me s2[-1]=ke s2[0]=ou s2[1]=Do s3[-2]= s3[-1]=ike s3[0]=You s3[1]= s4[-2]= s4[-1]=Like s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Me|Like w[-1]|w[0]=Like|You w[0]|w[1]=You|Do pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=song w[-4..-1]=Love w[-4..-1]=Me w[-4..-1]=Like w[1..4]=Do +song w[-2]=Like w[-1]=You w[0]=Do wl[-2]=like wl[-1]=you wl[0]=do pos[-2]=VB pos[-1]=VB pos[0]=VB chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=ULL shape[0]=UL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=L p1[-1]=Y p1[0]=D p2[-2]=Li p2[-1]=Yo p2[0]=Do p3[-2]=Lik p3[-1]=You p3[0]= p4[-2]=Like p4[-1]= p4[0]= s1[-2]=e s1[-1]=u s1[0]=o s2[-2]=ke s2[-1]=ou s2[0]=Do s3[-2]=ike s3[-1]=You s3[0]= s4[-2]=Like s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Like|You w[-1]|w[0]=You|Do pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Love w[-4..-1]=Me w[-4..-1]=Like w[-4..-1]=You __EOS__ + +O w[0]=play w[1]=some w[2]=rock wl[0]=play wl[1]=some wl[2]=rock pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=r p2[0]=pl p2[1]=so p2[2]=ro p3[0]=pla p3[1]=som p3[2]=roc p4[0]=play p4[1]=some p4[2]=rock s1[0]=y s1[1]=e s1[2]=k s2[0]=ay s2[1]=me s2[2]=ck s3[0]=lay s3[1]=ome s3[2]=ock s4[0]=play s4[1]=some s4[2]=rock 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|some w[1]|w[2]=some|rock pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=some w[1..4]=rock w[1..4]=n w[1..4]=roll __BOS__ +O w[-1]=play w[0]=some w[1]=rock w[2]=n wl[-1]=play wl[0]=some wl[1]=rock wl[2]=n pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=r p1[2]=n p2[-1]=pl p2[0]=so p2[1]=ro p2[2]= p3[-1]=pla p3[0]=som p3[1]=roc p3[2]= p4[-1]=play p4[0]=some p4[1]=rock p4[2]= s1[-1]=y s1[0]=e s1[1]=k s1[2]=n s2[-1]=ay s2[0]=me s2[1]=ck s2[2]= s3[-1]=lay s3[0]=ome s3[1]=ock s3[2]= s4[-1]=play s4[0]=some s4[1]=rock s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|some w[0]|w[1]=some|rock w[1]|w[2]=rock|n pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=rock w[1..4]=n w[1..4]=roll w[1..4]=music +genre w[-2]=play w[-1]=some w[0]=rock w[1]=n w[2]=roll wl[-2]=play wl[-1]=some wl[0]=rock wl[1]=n wl[2]=roll pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=s p1[0]=r p1[1]=n p1[2]=r p2[-2]=pl p2[-1]=so p2[0]=ro p2[1]= p2[2]=ro p3[-2]=pla p3[-1]=som p3[0]=roc p3[1]= p3[2]=rol p4[-2]=play p4[-1]=some p4[0]=rock p4[1]= p4[2]=roll s1[-2]=y s1[-1]=e s1[0]=k s1[1]=n s1[2]=l s2[-2]=ay s2[-1]=me s2[0]=ck s2[1]= s2[2]=ll s3[-2]=lay s3[-1]=ome s3[0]=ock s3[1]= s3[2]=oll s4[-2]=play s4[-1]=some s4[0]=rock s4[1]= s4[2]=roll 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|some w[-1]|w[0]=some|rock w[0]|w[1]=rock|n w[1]|w[2]=n|roll pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[1..4]=n w[1..4]=roll w[1..4]=music +genre w[-2]=some w[-1]=rock w[0]=n w[1]=roll w[2]=music wl[-2]=some wl[-1]=rock wl[0]=n wl[1]=roll wl[2]=music pos[-2]=DT pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=L shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=r p1[0]=n p1[1]=r p1[2]=m p2[-2]=so p2[-1]=ro p2[0]= p2[1]=ro p2[2]=mu p3[-2]=som p3[-1]=roc p3[0]= p3[1]=rol p3[2]=mus p4[-2]=some p4[-1]=rock p4[0]= p4[1]=roll p4[2]=musi s1[-2]=e s1[-1]=k s1[0]=n s1[1]=l s1[2]=c s2[-2]=me s2[-1]=ck s2[0]= s2[1]=ll s2[2]=ic s3[-2]=ome s3[-1]=ock s3[0]= s3[1]=oll s3[2]=sic s4[-2]=some s4[-1]=rock s4[0]= s4[1]=roll s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=some|rock w[-1]|w[0]=rock|n w[0]|w[1]=n|roll w[1]|w[2]=roll|music pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=rock w[1..4]=roll w[1..4]=music +genre w[-2]=rock w[-1]=n w[0]=roll w[1]=music wl[-2]=rock wl[-1]=n wl[0]=roll wl[1]=music pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=r p1[-1]=n p1[0]=r p1[1]=m p2[-2]=ro p2[-1]= p2[0]=ro p2[1]=mu p3[-2]=roc p3[-1]= p3[0]=rol p3[1]=mus p4[-2]=rock p4[-1]= p4[0]=roll p4[1]=musi s1[-2]=k s1[-1]=n s1[0]=l s1[1]=c s2[-2]=ck s2[-1]= s2[0]=ll s2[1]=ic s3[-2]=ock s3[-1]= s3[0]=oll s3[1]=sic s4[-2]=rock s4[-1]= s4[0]=roll s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=rock|n w[-1]|w[0]=n|roll w[0]|w[1]=roll|music pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=rock w[-4..-1]=n w[1..4]=music +O w[-2]=n w[-1]=roll w[0]=music wl[-2]=n wl[-1]=roll wl[0]=music pos[-2]=NN pos[-1]=NN pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=L shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=n p1[-1]=r p1[0]=m p2[-2]= p2[-1]=ro p2[0]=mu p3[-2]= p3[-1]=rol p3[0]=mus p4[-2]= p4[-1]=roll p4[0]=musi s1[-2]=n s1[-1]=l s1[0]=c s2[-2]= s2[-1]=ll s2[0]=ic s3[-2]= s3[-1]=oll s3[0]=sic s4[-2]= s4[-1]=roll s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=n|roll w[-1]|w[0]=roll|music pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=some w[-4..-1]=rock w[-4..-1]=n w[-4..-1]=roll __EOS__ + +O w[0]=play w[1]=Drake wl[0]=play wl[1]=drake pos[0]=VB pos[1]=NNP chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=ULLLL shaped[0]=L shaped[1]=UL type[0]=AllLetter type[1]=InitUpper p1[0]=p p1[1]=D p2[0]=pl p2[1]=Dr p3[0]=pla p3[1]=Dra p4[0]=play p4[1]=Drak s1[0]=y s1[1]=e s2[0]=ay s2[1]=ke s3[0]=lay s3[1]=ake s4[0]=play s4[1]=rake 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|Drake pos[0]|pos[1]=VB|NNP chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|UL type[0]|type[1]=AllLetter|InitUpper w[1..4]=Drake __BOS__ +artist w[-1]=play w[0]=Drake wl[-1]=play wl[0]=drake pos[-1]=VB pos[0]=NNP chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=ULLLL shaped[-1]=L shaped[0]=UL type[-1]=AllLetter type[0]=InitUpper p1[-1]=p p1[0]=D p2[-1]=pl p2[0]=Dr p3[-1]=pla p3[0]=Dra p4[-1]=play p4[0]=Drak s1[-1]=y s1[0]=e s2[-1]=ay s2[0]=ke s3[-1]=lay s3[0]=ake s4[-1]=play s4[0]=rake 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|Drake pos[-1]|pos[0]=VB|NNP chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|UL type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play __EOS__ + +O w[0]=start w[1]=playing w[2]=The wl[0]=start wl[1]=playing wl[2]=the pos[0]=VB pos[1]=VBG pos[2]=DT chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLLL shape[1]=LLLLLLL shape[2]=ULL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=s p1[1]=p p1[2]=T p2[0]=st p2[1]=pl p2[2]=Th p3[0]=sta p3[1]=pla p3[2]=The p4[0]=star p4[1]=play p4[2]= s1[0]=t s1[1]=g s1[2]=e s2[0]=rt s2[1]=ng s2[2]=he s3[0]=art s3[1]=ing s3[2]=The s4[0]=tart s4[1]=ying s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=start|playing w[1]|w[2]=playing|The pos[0]|pos[1]=VB|VBG pos[1]|pos[2]=VBG|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=playing w[1..4]=The w[1..4]=Lost w[1..4]=song __BOS__ +O w[-1]=start w[0]=playing w[1]=The w[2]=Lost wl[-1]=start wl[0]=playing wl[1]=the wl[2]=lost pos[-1]=VB pos[0]=VBG pos[1]=DT pos[2]=DT chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLLL shape[0]=LLLLLLL shape[1]=ULL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=s p1[0]=p p1[1]=T p1[2]=L p2[-1]=st p2[0]=pl p2[1]=Th p2[2]=Lo p3[-1]=sta p3[0]=pla p3[1]=The p3[2]=Los p4[-1]=star p4[0]=play p4[1]= p4[2]=Lost s1[-1]=t s1[0]=g s1[1]=e s1[2]=t s2[-1]=rt s2[0]=ng s2[1]=he s2[2]=st s3[-1]=art s3[0]=ing s3[1]=The s3[2]=ost s4[-1]=tart s4[0]=ying s4[1]= s4[2]=Lost 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=start|playing w[0]|w[1]=playing|The w[1]|w[2]=The|Lost pos[-1]|pos[0]=VB|VBG pos[0]|pos[1]=VBG|DT pos[1]|pos[2]=DT|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=start w[1..4]=The w[1..4]=Lost w[1..4]=song +song w[-2]=start w[-1]=playing w[0]=The w[1]=Lost w[2]=song wl[-2]=start wl[-1]=playing wl[0]=the wl[1]=lost wl[2]=song pos[-2]=VB pos[-1]=VBG pos[0]=DT pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLL shape[-1]=LLLLLLL shape[0]=ULL shape[1]=ULLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=s p1[-1]=p p1[0]=T p1[1]=L p1[2]=s p2[-2]=st p2[-1]=pl p2[0]=Th p2[1]=Lo p2[2]=so p3[-2]=sta p3[-1]=pla p3[0]=The p3[1]=Los p3[2]=son p4[-2]=star p4[-1]=play p4[0]= p4[1]=Lost p4[2]=song s1[-2]=t s1[-1]=g s1[0]=e s1[1]=t s1[2]=g s2[-2]=rt s2[-1]=ng s2[0]=he s2[1]=st s2[2]=ng s3[-2]=art s3[-1]=ing s3[0]=The s3[1]=ost s3[2]=ong s4[-2]=tart s4[-1]=ying s4[0]= s4[1]=Lost s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=start|playing w[-1]|w[0]=playing|The w[0]|w[1]=The|Lost w[1]|w[2]=Lost|song pos[-2]|pos[-1]=VB|VBG pos[-1]|pos[0]=VBG|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=start w[-4..-1]=playing w[1..4]=Lost w[1..4]=song +song w[-2]=playing w[-1]=The w[0]=Lost w[1]=song wl[-2]=playing wl[-1]=the wl[0]=lost wl[1]=song pos[-2]=VBG pos[-1]=DT pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O shape[-2]=LLLLLLL shape[-1]=ULL shape[0]=ULLL shape[1]=LLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-2]=p p1[-1]=T p1[0]=L p1[1]=s p2[-2]=pl p2[-1]=Th p2[0]=Lo p2[1]=so p3[-2]=pla p3[-1]=The p3[0]=Los p3[1]=son p4[-2]=play p4[-1]= p4[0]=Lost p4[1]=song s1[-2]=g s1[-1]=e s1[0]=t s1[1]=g s2[-2]=ng s2[-1]=he s2[0]=st s2[1]=ng s3[-2]=ing s3[-1]=The s3[0]=ost s3[1]=ong s4[-2]=ying s4[-1]= s4[0]=Lost s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=playing|The w[-1]|w[0]=The|Lost w[0]|w[1]=Lost|song pos[-2]|pos[-1]=VBG|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=start w[-4..-1]=playing w[-4..-1]=The w[1..4]=song +O w[-2]=The w[-1]=Lost w[0]=song wl[-2]=the wl[-1]=lost wl[0]=song pos[-2]=DT pos[-1]=DT pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULL shape[-1]=ULLL shape[0]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=T p1[-1]=L p1[0]=s p2[-2]=Th p2[-1]=Lo p2[0]=so p3[-2]=The p3[-1]=Los p3[0]=son p4[-2]= p4[-1]=Lost p4[0]=song s1[-2]=e s1[-1]=t s1[0]=g s2[-2]=he s2[-1]=st s2[0]=ng s3[-2]=The s3[-1]=ost s3[0]=ong s4[-2]= s4[-1]=Lost s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=The|Lost w[-1]|w[0]=Lost|song pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=start w[-4..-1]=playing w[-4..-1]=The w[-4..-1]=Lost __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=a +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=a w[1..4]=song +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=a wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=a pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=L shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=a p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]= p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]= p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]= s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=a s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]= s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]= s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|a pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=a w[1..4]=song +O w[-2]=to w[-1]=listen w[0]=to w[1]=a w[2]=song wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=a wl[2]=song pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=L shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=a p1[2]=s p2[-2]=to p2[-1]=li p2[0]=to p2[1]= p2[2]=so p3[-2]= p3[-1]=lis p3[0]= p3[1]= p3[2]=son p4[-2]= p4[-1]=list p4[0]= p4[1]= p4[2]=song s1[-2]=o s1[-1]=n s1[0]=o s1[1]=a s1[2]=g s2[-2]=to s2[-1]=en s2[0]=to s2[1]= s2[2]=ng s3[-2]= s3[-1]=ten s3[0]= s3[1]= s3[2]=ong s4[-2]= s4[-1]=sten s4[0]= s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|a w[1]|w[2]=a|song pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=a w[1..4]=song +O w[-2]=listen w[-1]=to w[0]=a w[1]=song wl[-2]=listen wl[-1]=to wl[0]=a wl[1]=song pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=L shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=l p1[-1]=t p1[0]=a p1[1]=s p2[-2]=li p2[-1]=to p2[0]= p2[1]=so p3[-2]=lis p3[-1]= p3[0]= p3[1]=son p4[-2]=list p4[-1]= p4[0]= p4[1]=song s1[-2]=n s1[-1]=o s1[0]=a s1[1]=g s2[-2]=en s2[-1]=to s2[0]= s2[1]=ng s3[-2]=ten s3[-1]= s3[0]= s3[1]=ong s4[-2]=sten s4[-1]= s4[0]= s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|a w[0]|w[1]=a|song pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=song +O w[-2]=to w[-1]=a w[0]=song wl[-2]=to wl[-1]=a wl[0]=song pos[-2]=IN pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=L shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=a p1[0]=s p2[-2]=to p2[-1]= p2[0]=so p3[-2]= p3[-1]= p3[0]=son p4[-2]= p4[-1]= p4[0]=song s1[-2]=o s1[-1]=a s1[0]=g s2[-2]=to s2[-1]= s2[0]=ng s3[-2]= s3[-1]= s3[0]=ong s4[-2]= s4[-1]= s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|a w[-1]|w[0]=a|song pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=a __EOS__ + +O w[0]=play w[1]=album w[2]=Songs wl[0]=play wl[1]=album wl[2]=songs pos[0]=VBP pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=S p2[0]=pl p2[1]=al p2[2]=So p3[0]=pla p3[1]=alb p3[2]=Son p4[0]=play p4[1]=albu p4[2]=Song s1[0]=y s1[1]=m s1[2]=s s2[0]=ay s2[1]=um s2[2]=gs s3[0]=lay s3[1]=bum s3[2]=ngs s4[0]=play s4[1]=lbum s4[2]=ongs 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Songs pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Songs w[1..4]=for w[1..4]=the __BOS__ +O w[-1]=play w[0]=album w[1]=Songs w[2]=for wl[-1]=play wl[0]=album wl[1]=songs wl[2]=for pos[-1]=VBP pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=S p1[2]=f p2[-1]=pl p2[0]=al p2[1]=So p2[2]=fo p3[-1]=pla p3[0]=alb p3[1]=Son p3[2]=for p4[-1]=play p4[0]=albu p4[1]=Song p4[2]= s1[-1]=y s1[0]=m s1[1]=s s1[2]=r s2[-1]=ay s2[0]=um s2[1]=gs s2[2]=or s3[-1]=lay s3[0]=bum s3[1]=ngs s3[2]=for s4[-1]=play s4[0]=lbum s4[1]=ongs s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Songs w[1]|w[2]=Songs|for pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Songs w[1..4]=for w[1..4]=the w[1..4]=Deaf +album w[-2]=play w[-1]=album w[0]=Songs w[1]=for w[2]=the wl[-2]=play wl[-1]=album wl[0]=songs wl[1]=for wl[2]=the pos[-2]=VBP pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLL shape[1]=LLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=S p1[1]=f p1[2]=t p2[-2]=pl p2[-1]=al p2[0]=So p2[1]=fo p2[2]=th p3[-2]=pla p3[-1]=alb p3[0]=Son p3[1]=for p3[2]=the p4[-2]=play p4[-1]=albu p4[0]=Song p4[1]= p4[2]= s1[-2]=y s1[-1]=m s1[0]=s s1[1]=r s1[2]=e s2[-2]=ay s2[-1]=um s2[0]=gs s2[1]=or s2[2]=he s3[-2]=lay s3[-1]=bum s3[0]=ngs s3[1]=for s3[2]=the s4[-2]=play s4[-1]=lbum s4[0]=ongs s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Songs w[0]|w[1]=Songs|for w[1]|w[2]=for|the pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[1..4]=for w[1..4]=the w[1..4]=Deaf w[1..4]=by +album w[-2]=album w[-1]=Songs w[0]=for w[1]=the w[2]=Deaf wl[-2]=album wl[-1]=songs wl[0]=for wl[1]=the wl[2]=deaf pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLLL shape[-1]=ULLLL shape[0]=LLL shape[1]=LLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=a p1[-1]=S p1[0]=f p1[1]=t p1[2]=D p2[-2]=al p2[-1]=So p2[0]=fo p2[1]=th p2[2]=De p3[-2]=alb p3[-1]=Son p3[0]=for p3[1]=the p3[2]=Dea p4[-2]=albu p4[-1]=Song p4[0]= p4[1]= p4[2]=Deaf s1[-2]=m s1[-1]=s s1[0]=r s1[1]=e s1[2]=f s2[-2]=um s2[-1]=gs s2[0]=or s2[1]=he s2[2]=af s3[-2]=bum s3[-1]=ngs s3[0]=for s3[1]=the s3[2]=eaf s4[-2]=lbum s4[-1]=ongs s4[0]= s4[1]= s4[2]=Deaf 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Songs w[-1]|w[0]=Songs|for w[0]|w[1]=for|the w[1]|w[2]=the|Deaf pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Songs w[1..4]=the w[1..4]=Deaf w[1..4]=by w[1..4]=Queens +album w[-2]=Songs w[-1]=for w[0]=the w[1]=Deaf w[2]=by wl[-2]=songs wl[-1]=for wl[0]=the wl[1]=deaf wl[2]=by pos[-2]=NNP pos[-1]=NNP pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLLL shape[-1]=LLL shape[0]=LLL shape[1]=ULLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=S p1[-1]=f p1[0]=t p1[1]=D p1[2]=b p2[-2]=So p2[-1]=fo p2[0]=th p2[1]=De p2[2]=by p3[-2]=Son p3[-1]=for p3[0]=the p3[1]=Dea p3[2]= p4[-2]=Song p4[-1]= p4[0]= p4[1]=Deaf p4[2]= s1[-2]=s s1[-1]=r s1[0]=e s1[1]=f s1[2]=y s2[-2]=gs s2[-1]=or s2[0]=he s2[1]=af s2[2]=by s3[-2]=ngs s3[-1]=for s3[0]=the s3[1]=eaf s3[2]= s4[-2]=ongs s4[-1]= s4[0]= s4[1]=Deaf s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Songs|for w[-1]|w[0]=for|the w[0]|w[1]=the|Deaf w[1]|w[2]=Deaf|by pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Songs w[-4..-1]=for w[1..4]=Deaf w[1..4]=by w[1..4]=Queens w[1..4]=of +album w[-2]=for w[-1]=the w[0]=Deaf w[1]=by w[2]=Queens wl[-2]=for wl[-1]=the wl[0]=deaf wl[1]=by wl[2]=queens pos[-2]=NNP pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNPS chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=f p1[-1]=t p1[0]=D p1[1]=b p1[2]=Q p2[-2]=fo p2[-1]=th p2[0]=De p2[1]=by p2[2]=Qu p3[-2]=for p3[-1]=the p3[0]=Dea p3[1]= p3[2]=Que p4[-2]= p4[-1]= p4[0]=Deaf p4[1]= p4[2]=Quee s1[-2]=r s1[-1]=e s1[0]=f s1[1]=y s1[2]=s s2[-2]=or s2[-1]=he s2[0]=af s2[1]=by s2[2]=ns s3[-2]=for s3[-1]=the s3[0]=eaf s3[1]= s3[2]=ens s4[-2]= s4[-1]= s4[0]=Deaf s4[1]= s4[2]=eens 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=for|the w[-1]|w[0]=the|Deaf w[0]|w[1]=Deaf|by w[1]|w[2]=by|Queens pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=album w[-4..-1]=Songs w[-4..-1]=for w[-4..-1]=the w[1..4]=by w[1..4]=Queens w[1..4]=of w[1..4]=the +O w[-2]=the w[-1]=Deaf w[0]=by w[1]=Queens w[2]=of wl[-2]=the wl[-1]=deaf wl[0]=by wl[1]=queens wl[2]=of pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNPS pos[2]=NNPS chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=t p1[-1]=D p1[0]=b p1[1]=Q p1[2]=o p2[-2]=th p2[-1]=De p2[0]=by p2[1]=Qu p2[2]=of p3[-2]=the p3[-1]=Dea p3[0]= p3[1]=Que p3[2]= p4[-2]= p4[-1]=Deaf p4[0]= p4[1]=Quee p4[2]= s1[-2]=e s1[-1]=f s1[0]=y s1[1]=s s1[2]=f s2[-2]=he s2[-1]=af s2[0]=by s2[1]=ns s2[2]=of s3[-2]=the s3[-1]=eaf s3[0]= s3[1]=ens s3[2]= s4[-2]= s4[-1]=Deaf s4[0]= s4[1]=eens s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|Deaf w[-1]|w[0]=Deaf|by w[0]|w[1]=by|Queens w[1]|w[2]=Queens|of pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Songs w[-4..-1]=for w[-4..-1]=the w[-4..-1]=Deaf w[1..4]=Queens w[1..4]=of w[1..4]=the w[1..4]=stone +artist w[-2]=Deaf w[-1]=by w[0]=Queens w[1]=of w[2]=the wl[-2]=deaf wl[-1]=by wl[0]=queens wl[1]=of wl[2]=the pos[-2]=NNP pos[-1]=IN pos[0]=NNPS pos[1]=NNPS pos[2]=NNPS chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLL shape[1]=LL shape[2]=LLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=D p1[-1]=b p1[0]=Q p1[1]=o p1[2]=t p2[-2]=De p2[-1]=by p2[0]=Qu p2[1]=of p2[2]=th p3[-2]=Dea p3[-1]= p3[0]=Que p3[1]= p3[2]=the p4[-2]=Deaf p4[-1]= p4[0]=Quee p4[1]= p4[2]= s1[-2]=f s1[-1]=y s1[0]=s s1[1]=f s1[2]=e s2[-2]=af s2[-1]=by s2[0]=ns s2[1]=of s2[2]=he s3[-2]=eaf s3[-1]= s3[0]=ens s3[1]= s3[2]=the s4[-2]=Deaf s4[-1]= s4[0]=eens s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Deaf|by w[-1]|w[0]=by|Queens w[0]|w[1]=Queens|of w[1]|w[2]=of|the pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNPS pos[0]|pos[1]=NNPS|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=for w[-4..-1]=the w[-4..-1]=Deaf w[-4..-1]=by w[1..4]=of w[1..4]=the w[1..4]=stone w[1..4]=age +artist w[-2]=by w[-1]=Queens w[0]=of w[1]=the w[2]=stone wl[-2]=by wl[-1]=queens wl[0]=of wl[1]=the wl[2]=stone pos[-2]=IN pos[-1]=NNPS pos[0]=NNPS pos[1]=NNPS pos[2]=NNPS chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=LL shape[1]=LLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=b p1[-1]=Q p1[0]=o p1[1]=t p1[2]=s p2[-2]=by p2[-1]=Qu p2[0]=of p2[1]=th p2[2]=st p3[-2]= p3[-1]=Que p3[0]= p3[1]=the p3[2]=sto p4[-2]= p4[-1]=Quee p4[0]= p4[1]= p4[2]=ston s1[-2]=y s1[-1]=s s1[0]=f s1[1]=e s1[2]=e s2[-2]=by s2[-1]=ns s2[0]=of s2[1]=he s2[2]=ne s3[-2]= s3[-1]=ens s3[0]= s3[1]=the s3[2]=one s4[-2]= s4[-1]=eens s4[0]= s4[1]= s4[2]=tone 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Queens w[-1]|w[0]=Queens|of w[0]|w[1]=of|the w[1]|w[2]=the|stone pos[-2]|pos[-1]=IN|NNPS pos[-1]|pos[0]=NNPS|NNPS pos[0]|pos[1]=NNPS|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=the w[-4..-1]=Deaf w[-4..-1]=by w[-4..-1]=Queens w[1..4]=the w[1..4]=stone w[1..4]=age +artist w[-2]=Queens w[-1]=of w[0]=the w[1]=stone w[2]=age wl[-2]=queens wl[-1]=of wl[0]=the wl[1]=stone wl[2]=age pos[-2]=NNPS pos[-1]=NNPS pos[0]=NNPS pos[1]=NNPS pos[2]=NNPS chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLLL shape[2]=LLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=Q p1[-1]=o p1[0]=t p1[1]=s p1[2]=a p2[-2]=Qu p2[-1]=of p2[0]=th p2[1]=st p2[2]=ag p3[-2]=Que p3[-1]= p3[0]=the p3[1]=sto p3[2]=age p4[-2]=Quee p4[-1]= p4[0]= p4[1]=ston p4[2]= s1[-2]=s s1[-1]=f s1[0]=e s1[1]=e s1[2]=e s2[-2]=ns s2[-1]=of s2[0]=he s2[1]=ne s2[2]=ge s3[-2]=ens s3[-1]= s3[0]=the s3[1]=one s3[2]=age s4[-2]=eens s4[-1]= s4[0]= s4[1]=tone s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Queens|of w[-1]|w[0]=of|the w[0]|w[1]=the|stone w[1]|w[2]=stone|age pos[-2]|pos[-1]=NNPS|NNPS pos[-1]|pos[0]=NNPS|NNPS pos[0]|pos[1]=NNPS|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=Deaf w[-4..-1]=by w[-4..-1]=Queens w[-4..-1]=of w[1..4]=stone w[1..4]=age +artist w[-2]=of w[-1]=the w[0]=stone w[1]=age wl[-2]=of wl[-1]=the wl[0]=stone wl[1]=age pos[-2]=NNPS pos[-1]=NNPS pos[0]=NNPS pos[1]=NNPS chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LL shape[-1]=LLL shape[0]=LLLLL shape[1]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=o p1[-1]=t p1[0]=s p1[1]=a p2[-2]=of p2[-1]=th p2[0]=st p2[1]=ag p3[-2]= p3[-1]=the p3[0]=sto p3[1]=age p4[-2]= p4[-1]= p4[0]=ston p4[1]= s1[-2]=f s1[-1]=e s1[0]=e s1[1]=e s2[-2]=of s2[-1]=he s2[0]=ne s2[1]=ge s3[-2]= s3[-1]=the s3[0]=one s3[1]=age s4[-2]= s4[-1]= s4[0]=tone s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=of|the w[-1]|w[0]=the|stone w[0]|w[1]=stone|age pos[-2]|pos[-1]=NNPS|NNPS pos[-1]|pos[0]=NNPS|NNPS pos[0]|pos[1]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=by w[-4..-1]=Queens w[-4..-1]=of w[-4..-1]=the w[1..4]=age +artist w[-2]=the w[-1]=stone w[0]=age wl[-2]=the wl[-1]=stone wl[0]=age pos[-2]=NNPS pos[-1]=NNPS pos[0]=NNPS chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLL shape[-1]=LLLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=s p1[0]=a p2[-2]=th p2[-1]=st p2[0]=ag p3[-2]=the p3[-1]=sto p3[0]=age p4[-2]= p4[-1]=ston p4[0]= s1[-2]=e s1[-1]=e s1[0]=e s2[-2]=he s2[-1]=ne s2[0]=ge s3[-2]=the s3[-1]=one s3[0]=age s4[-2]= s4[-1]=tone s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|stone w[-1]|w[0]=stone|age pos[-2]|pos[-1]=NNPS|NNPS pos[-1]|pos[0]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=Queens w[-4..-1]=of w[-4..-1]=the w[-4..-1]=stone __EOS__ + +artist w[0]=Tom w[1]=Waits w[2]=songs wl[0]=tom wl[1]=waits wl[2]=songs pos[0]=NNP pos[1]=NNP pos[2]=NNS chk[0]=I chk[1]=I chk[2]=O shape[0]=ULL shape[1]=ULLLL shape[2]=LLLLL shaped[0]=UL shaped[1]=UL shaped[2]=L type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[0]=T p1[1]=W p1[2]=s p2[0]=To p2[1]=Wa p2[2]=so p3[0]=Tom p3[1]=Wai p3[2]=son p4[0]= p4[1]=Wait p4[2]=song s1[0]=m s1[1]=s s1[2]=s s2[0]=om s2[1]=ts s2[2]=gs s3[0]=Tom s3[1]=its s3[2]=ngs s4[0]= s4[1]=aits s4[2]=ongs 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=Tom|Waits w[1]|w[2]=Waits|songs pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNS chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Waits w[1..4]=songs __BOS__ +artist w[-1]=Tom w[0]=Waits w[1]=songs wl[-1]=tom wl[0]=waits wl[1]=songs pos[-1]=NNP pos[0]=NNP pos[1]=NNS chk[-1]=I chk[0]=I chk[1]=O shape[-1]=ULL shape[0]=ULLLL shape[1]=LLLLL shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-1]=T p1[0]=W p1[1]=s p2[-1]=To p2[0]=Wa p2[1]=so p3[-1]=Tom p3[0]=Wai p3[1]=son p4[-1]= p4[0]=Wait p4[1]=song s1[-1]=m s1[0]=s s1[1]=s s2[-1]=om s2[0]=ts s2[1]=gs s3[-1]=Tom s3[0]=its s3[1]=ngs s4[-1]= s4[0]=aits s4[1]=ongs 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=no al[0]=no al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=Tom|Waits w[0]|w[1]=Waits|songs pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNS chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=Tom w[1..4]=songs +O w[-2]=Tom w[-1]=Waits w[0]=songs wl[-2]=tom wl[-1]=waits wl[0]=songs pos[-2]=NNP pos[-1]=NNP pos[0]=NNS chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULL shape[-1]=ULLLL shape[0]=LLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=T p1[-1]=W p1[0]=s p2[-2]=To p2[-1]=Wa p2[0]=so p3[-2]=Tom p3[-1]=Wai p3[0]=son p4[-2]= p4[-1]=Wait p4[0]=song s1[-2]=m s1[-1]=s s1[0]=s s2[-2]=om s2[-1]=ts s2[0]=gs s3[-2]=Tom s3[-1]=its s3[0]=ngs s4[-2]= s4[-1]=aits s4[0]=ongs 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Tom|Waits w[-1]|w[0]=Waits|songs pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=Tom w[-4..-1]=Waits __EOS__ + +O w[0]=play w[1]=a w[2]=country wl[0]=play wl[1]=a wl[2]=country pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=L shape[2]=LLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=c p2[0]=pl p2[1]= p2[2]=co p3[0]=pla p3[1]= p3[2]=cou p4[0]=play p4[1]= p4[2]=coun s1[0]=y s1[1]=a s1[2]=y s2[0]=ay s2[1]= s2[2]=ry s3[0]=lay s3[1]= s3[2]=try s4[0]=play s4[1]= s4[2]=ntry 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|country pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=country w[1..4]=song __BOS__ +O w[-1]=play w[0]=a w[1]=country w[2]=song wl[-1]=play wl[0]=a wl[1]=country wl[2]=song pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=L shape[1]=LLLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=c p1[2]=s p2[-1]=pl p2[0]= p2[1]=co p2[2]=so p3[-1]=pla p3[0]= p3[1]=cou p3[2]=son p4[-1]=play p4[0]= p4[1]=coun p4[2]=song s1[-1]=y s1[0]=a s1[1]=y s1[2]=g s2[-1]=ay s2[0]= s2[1]=ry s2[2]=ng s3[-1]=lay s3[0]= s3[1]=try s3[2]=ong s4[-1]=play s4[0]= s4[1]=ntry s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|country w[1]|w[2]=country|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=country w[1..4]=song +genre w[-2]=play w[-1]=a w[0]=country w[1]=song wl[-2]=play wl[-1]=a wl[0]=country wl[1]=song pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=a p1[0]=c p1[1]=s p2[-2]=pl p2[-1]= p2[0]=co p2[1]=so p3[-2]=pla p3[-1]= p3[0]=cou p3[1]=son p4[-2]=play p4[-1]= p4[0]=coun p4[1]=song s1[-2]=y s1[-1]=a s1[0]=y s1[1]=g s2[-2]=ay s2[-1]= s2[0]=ry s2[1]=ng s3[-2]=lay s3[-1]= s3[0]=try s3[1]=ong s4[-2]=play s4[-1]= s4[0]=ntry s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|country w[0]|w[1]=country|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[1..4]=song +O w[-2]=a w[-1]=country w[0]=song wl[-2]=a wl[-1]=country wl[0]=song pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=L shape[-1]=LLLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=a p1[-1]=c p1[0]=s p2[-2]= p2[-1]=co p2[0]=so p3[-2]= p3[-1]=cou p3[0]=son p4[-2]= p4[-1]=coun p4[0]=song s1[-2]=a s1[-1]=y s1[0]=g s2[-2]= s2[-1]=ry s2[0]=ng s3[-2]= s3[-1]=try s3[0]=ong s4[-2]= s4[-1]=ntry s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=a|country w[-1]|w[0]=country|song pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=country __EOS__ + +O w[0]=play w[1]=the w[2]=album wl[0]=play wl[1]=the wl[2]=album pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=a p2[0]=pl p2[1]=th p2[2]=al p3[0]=pla p3[1]=the p3[2]=alb p4[0]=play p4[1]= p4[2]=albu s1[0]=y s1[1]=e s1[2]=m s2[0]=ay s2[1]=he s2[2]=um s3[0]=lay s3[1]=the s3[2]=bum s4[0]=play s4[1]= s4[2]=lbum 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|album pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=album w[1..4]=Un w[1..4]=monde __BOS__ +O w[-1]=play w[0]=the w[1]=album w[2]=Un wl[-1]=play wl[0]=the wl[1]=album wl[2]=un pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLL shape[2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=a p1[2]=U p2[-1]=pl p2[0]=th p2[1]=al p2[2]=Un p3[-1]=pla p3[0]=the p3[1]=alb p3[2]= p4[-1]=play p4[0]= p4[1]=albu p4[2]= s1[-1]=y s1[0]=e s1[1]=m s1[2]=n s2[-1]=ay s2[0]=he s2[1]=um s2[2]=Un s3[-1]=lay s3[0]=the s3[1]=bum s3[2]= s4[-1]=play s4[0]= s4[1]=lbum s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|album w[1]|w[2]=album|Un pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=album w[1..4]=Un w[1..4]=monde w[1..4]=meilleur +O w[-2]=play w[-1]=the w[0]=album w[1]=Un w[2]=monde wl[-2]=play wl[-1]=the wl[0]=album wl[1]=un wl[2]=monde pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLL shape[1]=UL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=a p1[1]=U p1[2]=m p2[-2]=pl p2[-1]=th p2[0]=al p2[1]=Un p2[2]=mo p3[-2]=pla p3[-1]=the p3[0]=alb p3[1]= p3[2]=mon p4[-2]=play p4[-1]= p4[0]=albu p4[1]= p4[2]=mond s1[-2]=y s1[-1]=e s1[0]=m s1[1]=n s1[2]=e s2[-2]=ay s2[-1]=he s2[0]=um s2[1]=Un s2[2]=de s3[-2]=lay s3[-1]=the s3[0]=bum s3[1]= s3[2]=nde s4[-2]=play s4[-1]= s4[0]=lbum s4[1]= s4[2]=onde 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|album w[0]|w[1]=album|Un w[1]|w[2]=Un|monde pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=Un w[1..4]=monde w[1..4]=meilleur w[1..4]=by +album w[-2]=the w[-1]=album w[0]=Un w[1]=monde w[2]=meilleur wl[-2]=the wl[-1]=album wl[0]=un wl[1]=monde wl[2]=meilleur pos[-2]=DT pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLLL shape[0]=UL shape[1]=LLLLL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=a p1[0]=U p1[1]=m p1[2]=m p2[-2]=th p2[-1]=al p2[0]=Un p2[1]=mo p2[2]=me p3[-2]=the p3[-1]=alb p3[0]= p3[1]=mon p3[2]=mei p4[-2]= p4[-1]=albu p4[0]= p4[1]=mond p4[2]=meil s1[-2]=e s1[-1]=m s1[0]=n s1[1]=e s1[2]=r s2[-2]=he s2[-1]=um s2[0]=Un s2[1]=de s2[2]=ur s3[-2]=the s3[-1]=bum s3[0]= s3[1]=nde s3[2]=eur s4[-2]= s4[-1]=lbum s4[0]= s4[1]=onde s4[2]=leur 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|album w[-1]|w[0]=album|Un w[0]|w[1]=Un|monde w[1]|w[2]=monde|meilleur pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=album w[1..4]=monde w[1..4]=meilleur w[1..4]=by w[1..4]=Kids +album w[-2]=album w[-1]=Un w[0]=monde w[1]=meilleur w[2]=by wl[-2]=album wl[-1]=un wl[0]=monde wl[1]=meilleur wl[2]=by pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLL shape[-1]=UL shape[0]=LLLLL shape[1]=LLLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=U p1[0]=m p1[1]=m p1[2]=b p2[-2]=al p2[-1]=Un p2[0]=mo p2[1]=me p2[2]=by p3[-2]=alb p3[-1]= p3[0]=mon p3[1]=mei p3[2]= p4[-2]=albu p4[-1]= p4[0]=mond p4[1]=meil p4[2]= s1[-2]=m s1[-1]=n s1[0]=e s1[1]=r s1[2]=y s2[-2]=um s2[-1]=Un s2[0]=de s2[1]=ur s2[2]=by s3[-2]=bum s3[-1]= s3[0]=nde s3[1]=eur s3[2]= s4[-2]=lbum s4[-1]= s4[0]=onde s4[1]=leur s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Un w[-1]|w[0]=Un|monde w[0]|w[1]=monde|meilleur w[1]|w[2]=meilleur|by pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=album w[-4..-1]=Un w[1..4]=meilleur w[1..4]=by w[1..4]=Kids w[1..4]=United +album w[-2]=Un w[-1]=monde w[0]=meilleur w[1]=by w[2]=Kids wl[-2]=un wl[-1]=monde wl[0]=meilleur wl[1]=by wl[2]=kids pos[-2]=NNP pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNPS chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=UL shape[-1]=LLLLL shape[0]=LLLLLLLL shape[1]=LL shape[2]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=U p1[-1]=m p1[0]=m p1[1]=b p1[2]=K p2[-2]=Un p2[-1]=mo p2[0]=me p2[1]=by p2[2]=Ki p3[-2]= p3[-1]=mon p3[0]=mei p3[1]= p3[2]=Kid p4[-2]= p4[-1]=mond p4[0]=meil p4[1]= p4[2]=Kids s1[-2]=n s1[-1]=e s1[0]=r s1[1]=y s1[2]=s s2[-2]=Un s2[-1]=de s2[0]=ur s2[1]=by s2[2]=ds s3[-2]= s3[-1]=nde s3[0]=eur s3[1]= s3[2]=ids s4[-2]= s4[-1]=onde s4[0]=leur s4[1]= s4[2]=Kids 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Un|monde w[-1]|w[0]=monde|meilleur w[0]|w[1]=meilleur|by w[1]|w[2]=by|Kids pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=album w[-4..-1]=Un w[-4..-1]=monde w[1..4]=by w[1..4]=Kids w[1..4]=United +O w[-2]=monde w[-1]=meilleur w[0]=by w[1]=Kids w[2]=United wl[-2]=monde wl[-1]=meilleur wl[0]=by wl[1]=kids wl[2]=united pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNPS pos[2]=NNPS chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLLL shape[-1]=LLLLLLLL shape[0]=LL shape[1]=ULLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=m p1[-1]=m p1[0]=b p1[1]=K p1[2]=U p2[-2]=mo p2[-1]=me p2[0]=by p2[1]=Ki p2[2]=Un p3[-2]=mon p3[-1]=mei p3[0]= p3[1]=Kid p3[2]=Uni p4[-2]=mond p4[-1]=meil p4[0]= p4[1]=Kids p4[2]=Unit s1[-2]=e s1[-1]=r s1[0]=y s1[1]=s s1[2]=d s2[-2]=de s2[-1]=ur s2[0]=by s2[1]=ds s2[2]=ed s3[-2]=nde s3[-1]=eur s3[0]= s3[1]=ids s3[2]=ted s4[-2]=onde s4[-1]=leur s4[0]= s4[1]=Kids s4[2]=ited 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=monde|meilleur w[-1]|w[0]=meilleur|by w[0]|w[1]=by|Kids w[1]|w[2]=Kids|United pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=album w[-4..-1]=Un w[-4..-1]=monde w[-4..-1]=meilleur w[1..4]=Kids w[1..4]=United +artist w[-2]=meilleur w[-1]=by w[0]=Kids w[1]=United wl[-2]=meilleur wl[-1]=by wl[0]=kids wl[1]=united pos[-2]=NNP pos[-1]=IN pos[0]=NNPS pos[1]=NNPS chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLLLL shape[-1]=LL shape[0]=ULLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=m p1[-1]=b p1[0]=K p1[1]=U p2[-2]=me p2[-1]=by p2[0]=Ki p2[1]=Un p3[-2]=mei p3[-1]= p3[0]=Kid p3[1]=Uni p4[-2]=meil p4[-1]= p4[0]=Kids p4[1]=Unit s1[-2]=r s1[-1]=y s1[0]=s s1[1]=d s2[-2]=ur s2[-1]=by s2[0]=ds s2[1]=ed s3[-2]=eur s3[-1]= s3[0]=ids s3[1]=ted s4[-2]=leur s4[-1]= s4[0]=Kids s4[1]=ited 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=meilleur|by w[-1]|w[0]=by|Kids w[0]|w[1]=Kids|United pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNPS pos[0]|pos[1]=NNPS|NNPS chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Un w[-4..-1]=monde w[-4..-1]=meilleur w[-4..-1]=by w[1..4]=United +artist w[-2]=by w[-1]=Kids w[0]=United wl[-2]=by wl[-1]=kids wl[0]=united pos[-2]=IN pos[-1]=NNPS pos[0]=NNPS chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=K p1[0]=U p2[-2]=by p2[-1]=Ki p2[0]=Un p3[-2]= p3[-1]=Kid p3[0]=Uni p4[-2]= p4[-1]=Kids p4[0]=Unit s1[-2]=y s1[-1]=s s1[0]=d s2[-2]=by s2[-1]=ds s2[0]=ed s3[-2]= s3[-1]=ids s3[0]=ted s4[-2]= s4[-1]=Kids s4[0]=ited 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Kids w[-1]|w[0]=Kids|United pos[-2]|pos[-1]=IN|NNPS pos[-1]|pos[0]=NNPS|NNPS chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=monde w[-4..-1]=meilleur w[-4..-1]=by w[-4..-1]=Kids __EOS__ + +O w[0]=play w[1]=Red w[2]=Hot wl[0]=play wl[1]=red wl[2]=hot pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=ULL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=R p1[2]=H p2[0]=pl p2[1]=Re p2[2]=Ho p3[0]=pla p3[1]=Red p3[2]=Hot p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=d s1[2]=t s2[0]=ay s2[1]=ed s2[2]=ot s3[0]=lay s3[1]=Red s3[2]=Hot s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Red w[1]|w[2]=Red|Hot pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Red w[1..4]=Hot w[1..4]=Chili w[1..4]=Peppers __BOS__ +artist w[-1]=play w[0]=Red w[1]=Hot w[2]=Chili wl[-1]=play wl[0]=red wl[1]=hot wl[2]=chili pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULL shape[1]=ULL shape[2]=ULLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=R p1[1]=H p1[2]=C p2[-1]=pl p2[0]=Re p2[1]=Ho p2[2]=Ch p3[-1]=pla p3[0]=Red p3[1]=Hot p3[2]=Chi p4[-1]=play p4[0]= p4[1]= p4[2]=Chil s1[-1]=y s1[0]=d s1[1]=t s1[2]=i s2[-1]=ay s2[0]=ed s2[1]=ot s2[2]=li s3[-1]=lay s3[0]=Red s3[1]=Hot s3[2]=ili s4[-1]=play s4[0]= s4[1]= s4[2]=hili 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Red w[0]|w[1]=Red|Hot w[1]|w[2]=Hot|Chili pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Hot w[1..4]=Chili w[1..4]=Peppers +artist w[-2]=play w[-1]=Red w[0]=Hot w[1]=Chili w[2]=Peppers wl[-2]=play wl[-1]=red wl[0]=hot wl[1]=chili wl[2]=peppers pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULL shape[1]=ULLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=R p1[0]=H p1[1]=C p1[2]=P p2[-2]=pl p2[-1]=Re p2[0]=Ho p2[1]=Ch p2[2]=Pe p3[-2]=pla p3[-1]=Red p3[0]=Hot p3[1]=Chi p3[2]=Pep p4[-2]=play p4[-1]= p4[0]= p4[1]=Chil p4[2]=Pepp s1[-2]=y s1[-1]=d s1[0]=t s1[1]=i s1[2]=s s2[-2]=ay s2[-1]=ed s2[0]=ot s2[1]=li s2[2]=rs s3[-2]=lay s3[-1]=Red s3[0]=Hot s3[1]=ili s3[2]=ers s4[-2]=play s4[-1]= s4[0]= s4[1]=hili s4[2]=pers 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Red w[-1]|w[0]=Red|Hot w[0]|w[1]=Hot|Chili w[1]|w[2]=Chili|Peppers pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Red w[1..4]=Chili w[1..4]=Peppers +artist w[-2]=Red w[-1]=Hot w[0]=Chili w[1]=Peppers wl[-2]=red wl[-1]=hot wl[0]=chili wl[1]=peppers pos[-2]=NNP pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=ULL shape[0]=ULLLL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=R p1[-1]=H p1[0]=C p1[1]=P p2[-2]=Re p2[-1]=Ho p2[0]=Ch p2[1]=Pe p3[-2]=Red p3[-1]=Hot p3[0]=Chi p3[1]=Pep p4[-2]= p4[-1]= p4[0]=Chil p4[1]=Pepp s1[-2]=d s1[-1]=t s1[0]=i s1[1]=s s2[-2]=ed s2[-1]=ot s2[0]=li s2[1]=rs s3[-2]=Red s3[-1]=Hot s3[0]=ili s3[1]=ers s4[-2]= s4[-1]= s4[0]=hili s4[1]=pers 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Red|Hot w[-1]|w[0]=Hot|Chili w[0]|w[1]=Chili|Peppers pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Red w[-4..-1]=Hot w[1..4]=Peppers +artist w[-2]=Hot w[-1]=Chili w[0]=Peppers wl[-2]=hot wl[-1]=chili wl[0]=peppers pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=ULLLL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=H p1[-1]=C p1[0]=P p2[-2]=Ho p2[-1]=Ch p2[0]=Pe p3[-2]=Hot p3[-1]=Chi p3[0]=Pep p4[-2]= p4[-1]=Chil p4[0]=Pepp s1[-2]=t s1[-1]=i s1[0]=s s2[-2]=ot s2[-1]=li s2[0]=rs s3[-2]=Hot s3[-1]=ili s3[0]=ers s4[-2]= s4[-1]=hili s4[0]=pers 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Hot|Chili w[-1]|w[0]=Chili|Peppers pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Red w[-4..-1]=Hot w[-4..-1]=Chili __EOS__ + +O w[0]=play w[1]=song w[2]=by wl[0]=play wl[1]=song wl[2]=by pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=son p3[2]= p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=y s2[0]=ay s2[1]=ng s2[2]=by s3[0]=lay s3[1]=ong s3[2]= s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|by pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=song w[1..4]=by w[1..4]=Willie w[1..4]=Nelson __BOS__ +O w[-1]=play w[0]=song w[1]=by w[2]=Willie wl[-1]=play wl[0]=song wl[1]=by wl[2]=willie pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=W p2[-1]=pl p2[0]=so p2[1]=by p2[2]=Wi p3[-1]=pla p3[0]=son p3[1]= p3[2]=Wil p4[-1]=play p4[0]=song p4[1]= p4[2]=Will s1[-1]=y s1[0]=g s1[1]=y s1[2]=e s2[-1]=ay s2[0]=ng s2[1]=by s2[2]=ie s3[-1]=lay s3[0]=ong s3[1]= s3[2]=lie s4[-1]=play s4[0]=song s4[1]= s4[2]=llie 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|by w[1]|w[2]=by|Willie pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Willie w[1..4]=Nelson +O w[-2]=play w[-1]=song w[0]=by w[1]=Willie w[2]=Nelson wl[-2]=play wl[-1]=song wl[0]=by wl[1]=willie wl[2]=nelson pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=b p1[1]=W p1[2]=N p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=Wi p2[2]=Ne p3[-2]=pla p3[-1]=son p3[0]= p3[1]=Wil p3[2]=Nel p4[-2]=play p4[-1]=song p4[0]= p4[1]=Will p4[2]=Nels s1[-2]=y s1[-1]=g s1[0]=y s1[1]=e s1[2]=n s2[-2]=ay s2[-1]=ng s2[0]=by s2[1]=ie s2[2]=on s3[-2]=lay s3[-1]=ong s3[0]= s3[1]=lie s3[2]=son s4[-2]=play s4[-1]=song s4[0]= s4[1]=llie s4[2]=lson 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|by w[0]|w[1]=by|Willie w[1]|w[2]=Willie|Nelson pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=Willie w[1..4]=Nelson +artist w[-2]=song w[-1]=by w[0]=Willie w[1]=Nelson wl[-2]=song wl[-1]=by wl[0]=willie wl[1]=nelson pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=b p1[0]=W p1[1]=N p2[-2]=so p2[-1]=by p2[0]=Wi p2[1]=Ne p3[-2]=son p3[-1]= p3[0]=Wil p3[1]=Nel p4[-2]=song p4[-1]= p4[0]=Will p4[1]=Nels s1[-2]=g s1[-1]=y s1[0]=e s1[1]=n s2[-2]=ng s2[-1]=by s2[0]=ie s2[1]=on s3[-2]=ong s3[-1]= s3[0]=lie s3[1]=son s4[-2]=song s4[-1]= s4[0]=llie s4[1]=lson 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|by w[-1]|w[0]=by|Willie w[0]|w[1]=Willie|Nelson pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by w[1..4]=Nelson +artist w[-2]=by w[-1]=Willie w[0]=Nelson wl[-2]=by wl[-1]=willie wl[0]=nelson pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=W p1[0]=N p2[-2]=by p2[-1]=Wi p2[0]=Ne p3[-2]= p3[-1]=Wil p3[0]=Nel p4[-2]= p4[-1]=Will p4[0]=Nels s1[-2]=y s1[-1]=e s1[0]=n s2[-2]=by s2[-1]=ie s2[0]=on s3[-2]= s3[-1]=lie s3[0]=son s4[-2]= s4[-1]=llie s4[0]=lson 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Willie w[-1]|w[0]=Willie|Nelson pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by w[-4..-1]=Willie __EOS__ + +O w[0]=play w[1]=something w[2]=by wl[0]=play wl[1]=something wl[2]=by pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLLLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=som p3[2]= p4[0]=play p4[1]=some p4[2]= s1[0]=y s1[1]=g s1[2]=y s2[0]=ay s2[1]=ng s2[2]=by s3[0]=lay s3[1]=ing s3[2]= s4[0]=play s4[1]=hing s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|something w[1]|w[2]=something|by pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=something w[1..4]=by w[1..4]=Rihanna __BOS__ +O w[-1]=play w[0]=something w[1]=by w[2]=Rihanna wl[-1]=play wl[0]=something wl[1]=by wl[2]=rihanna pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLLLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=R p2[-1]=pl p2[0]=so p2[1]=by p2[2]=Ri p3[-1]=pla p3[0]=som p3[1]= p3[2]=Rih p4[-1]=play p4[0]=some p4[1]= p4[2]=Riha s1[-1]=y s1[0]=g s1[1]=y s1[2]=a s2[-1]=ay s2[0]=ng s2[1]=by s2[2]=na s3[-1]=lay s3[0]=ing s3[1]= s3[2]=nna s4[-1]=play s4[0]=hing s4[1]= s4[2]=anna 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|something w[0]|w[1]=something|by w[1]|w[2]=by|Rihanna pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Rihanna +O w[-2]=play w[-1]=something w[0]=by w[1]=Rihanna wl[-2]=play wl[-1]=something wl[0]=by wl[1]=rihanna pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLLLLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=s p1[0]=b p1[1]=R p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=Ri p3[-2]=pla p3[-1]=som p3[0]= p3[1]=Rih p4[-2]=play p4[-1]=some p4[0]= p4[1]=Riha s1[-2]=y s1[-1]=g s1[0]=y s1[1]=a s2[-2]=ay s2[-1]=ng s2[0]=by s2[1]=na s3[-2]=lay s3[-1]=ing s3[0]= s3[1]=nna s4[-2]=play s4[-1]=hing s4[0]= s4[1]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|something w[-1]|w[0]=something|by w[0]|w[1]=by|Rihanna pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=something w[1..4]=Rihanna +artist w[-2]=something w[-1]=by w[0]=Rihanna wl[-2]=something wl[-1]=by wl[0]=rihanna pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=b p1[0]=R p2[-2]=so p2[-1]=by p2[0]=Ri p3[-2]=som p3[-1]= p3[0]=Rih p4[-2]=some p4[-1]= p4[0]=Riha s1[-2]=g s1[-1]=y s1[0]=a s2[-2]=ng s2[-1]=by s2[0]=na s3[-2]=ing s3[-1]= s3[0]=nna s4[-2]=hing s4[-1]= s4[0]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=something|by w[-1]|w[0]=by|Rihanna pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=something w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=some w[2]=rock wl[0]=play wl[1]=some wl[2]=rock pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=r p2[0]=pl p2[1]=so p2[2]=ro p3[0]=pla p3[1]=som p3[2]=roc p4[0]=play p4[1]=some p4[2]=rock s1[0]=y s1[1]=e s1[2]=k s2[0]=ay s2[1]=me s2[2]=ck s3[0]=lay s3[1]=ome s3[2]=ock s4[0]=play s4[1]=some s4[2]=rock 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|some w[1]|w[2]=some|rock pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=some w[1..4]=rock w[1..4]=and w[1..4]=roll __BOS__ +O w[-1]=play w[0]=some w[1]=rock w[2]=and wl[-1]=play wl[0]=some wl[1]=rock wl[2]=and pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=r p1[2]=a p2[-1]=pl p2[0]=so p2[1]=ro p2[2]=an p3[-1]=pla p3[0]=som p3[1]=roc p3[2]=and p4[-1]=play p4[0]=some p4[1]=rock p4[2]= s1[-1]=y s1[0]=e s1[1]=k s1[2]=d s2[-1]=ay s2[0]=me s2[1]=ck s2[2]=nd s3[-1]=lay s3[0]=ome s3[1]=ock s3[2]=and s4[-1]=play s4[0]=some s4[1]=rock s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|some w[0]|w[1]=some|rock w[1]|w[2]=rock|and pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=rock w[1..4]=and w[1..4]=roll +genre w[-2]=play w[-1]=some w[0]=rock w[1]=and w[2]=roll wl[-2]=play wl[-1]=some wl[0]=rock wl[1]=and wl[2]=roll pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=s p1[0]=r p1[1]=a p1[2]=r p2[-2]=pl p2[-1]=so p2[0]=ro p2[1]=an p2[2]=ro p3[-2]=pla p3[-1]=som p3[0]=roc p3[1]=and p3[2]=rol p4[-2]=play p4[-1]=some p4[0]=rock p4[1]= p4[2]=roll s1[-2]=y s1[-1]=e s1[0]=k s1[1]=d s1[2]=l s2[-2]=ay s2[-1]=me s2[0]=ck s2[1]=nd s2[2]=ll s3[-2]=lay s3[-1]=ome s3[0]=ock s3[1]=and s3[2]=oll s4[-2]=play s4[-1]=some s4[0]=rock s4[1]= s4[2]=roll 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|some w[-1]|w[0]=some|rock w[0]|w[1]=rock|and w[1]|w[2]=and|roll pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[1..4]=and w[1..4]=roll +genre w[-2]=some w[-1]=rock w[0]=and w[1]=roll wl[-2]=some wl[-1]=rock wl[0]=and wl[1]=roll pos[-2]=DT pos[-1]=NN pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=s p1[-1]=r p1[0]=a p1[1]=r p2[-2]=so p2[-1]=ro p2[0]=an p2[1]=ro p3[-2]=som p3[-1]=roc p3[0]=and p3[1]=rol p4[-2]=some p4[-1]=rock p4[0]= p4[1]=roll s1[-2]=e s1[-1]=k s1[0]=d s1[1]=l s2[-2]=me s2[-1]=ck s2[0]=nd s2[1]=ll s3[-2]=ome s3[-1]=ock s3[0]=and s3[1]=oll s4[-2]=some s4[-1]=rock s4[0]= s4[1]=roll 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=some|rock w[-1]|w[0]=rock|and w[0]|w[1]=and|roll pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=rock w[1..4]=roll +genre w[-2]=rock w[-1]=and w[0]=roll wl[-2]=rock wl[-1]=and wl[0]=roll pos[-2]=NN pos[-1]=NN pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=r p1[-1]=a p1[0]=r p2[-2]=ro p2[-1]=an p2[0]=ro p3[-2]=roc p3[-1]=and p3[0]=rol p4[-2]=rock p4[-1]= p4[0]=roll s1[-2]=k s1[-1]=d s1[0]=l s2[-2]=ck s2[-1]=nd s2[0]=ll s3[-2]=ock s3[-1]=and s3[0]=oll s4[-2]=rock s4[-1]= s4[0]=roll 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=rock|and w[-1]|w[0]=and|roll pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=rock w[-4..-1]=and __EOS__ + +O w[0]=play w[1]=song w[2]=Roxanne wl[0]=play wl[1]=song wl[2]=roxanne pos[0]=VBP pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=R p2[0]=pl p2[1]=so p2[2]=Ro p3[0]=pla p3[1]=son p3[2]=Rox p4[0]=play p4[1]=song p4[2]=Roxa s1[0]=y s1[1]=g s1[2]=e s2[0]=ay s2[1]=ng s2[2]=ne s3[0]=lay s3[1]=ong s3[2]=nne s4[0]=play s4[1]=song s4[2]=anne 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|Roxanne pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=Roxanne __BOS__ +O w[-1]=play w[0]=song w[1]=Roxanne wl[-1]=play wl[0]=song wl[1]=roxanne pos[-1]=VBP pos[0]=NN pos[1]=NNP chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-1]=p p1[0]=s p1[1]=R p2[-1]=pl p2[0]=so p2[1]=Ro p3[-1]=pla p3[0]=son p3[1]=Rox p4[-1]=play p4[0]=song p4[1]=Roxa s1[-1]=y s1[0]=g s1[1]=e s2[-1]=ay s2[0]=ng s2[1]=ne s3[-1]=lay s3[0]=ong s3[1]=nne s4[-1]=play s4[0]=song s4[1]=anne 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|song w[0]|w[1]=song|Roxanne pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=Roxanne +song w[-2]=play w[-1]=song w[0]=Roxanne wl[-2]=play wl[-1]=song wl[0]=roxanne pos[-2]=VBP pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=s p1[0]=R p2[-2]=pl p2[-1]=so p2[0]=Ro p3[-2]=pla p3[-1]=son p3[0]=Rox p4[-2]=play p4[-1]=song p4[0]=Roxa s1[-2]=y s1[-1]=g s1[0]=e s2[-2]=ay s2[-1]=ng s2[0]=ne s3[-2]=lay s3[-1]=ong s3[0]=nne s4[-2]=play s4[-1]=song s4[0]=anne 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Roxanne pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song __EOS__ + +O w[0]=play w[1]=Madonna's w[2]=Like wl[0]=play wl[1]=madonna's wl[2]=like pos[0]=VB pos[1]=NNP pos[2]=POS chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=ULLLLLL'L shape[2]=ULLL shaped[0]=L shaped[1]=UL'L shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=M p1[2]=L p2[0]=pl p2[1]=Ma p2[2]=Li p3[0]=pla p3[1]=Mad p3[2]=Lik p4[0]=play p4[1]=Mado p4[2]=Like s1[0]=y s1[1]=s s1[2]=e s2[0]=ay s2[1]='s s2[2]=ke s3[0]=lay s3[1]=a's s3[2]=ike s4[0]=play s4[1]=na's s4[2]=Like 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=yes cs[2]=no w[0]|w[1]=play|Madonna's w[1]|w[2]=Madonna's|Like pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|POS chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|UL'L shaped[1]|shaped[2]=UL'L|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Madonna's w[1..4]=Like w[1..4]=a w[1..4]=Virgin __BOS__ +O w[-1]=play w[0]=Madonna's w[1]=Like w[2]=a wl[-1]=play wl[0]=madonna's wl[1]=like wl[2]=a pos[-1]=VB pos[0]=NNP pos[1]=POS pos[2]=POS chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLL'L shape[1]=ULLL shape[2]=L shaped[-1]=L shaped[0]=UL'L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=M p1[1]=L p1[2]=a p2[-1]=pl p2[0]=Ma p2[1]=Li p2[2]= p3[-1]=pla p3[0]=Mad p3[1]=Lik p3[2]= p4[-1]=play p4[0]=Mado p4[1]=Like p4[2]= s1[-1]=y s1[0]=s s1[1]=e s1[2]=a s2[-1]=ay s2[0]='s s2[1]=ke s2[2]= s3[-1]=lay s3[0]=a's s3[1]=ike s3[2]= s4[-1]=play s4[0]=na's s4[1]=Like s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=yes cs[1]=no cs[2]=no w[-1]|w[0]=play|Madonna's w[0]|w[1]=Madonna's|Like w[1]|w[2]=Like|a pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|POS pos[1]|pos[2]=POS|POS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL'L shaped[0]|shaped[1]=UL'L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Like w[1..4]=a w[1..4]=Virgin +song w[-2]=play w[-1]=Madonna's w[0]=Like w[1]=a w[2]=Virgin wl[-2]=play wl[-1]=madonna's wl[0]=like wl[1]=a wl[2]=virgin pos[-2]=VB pos[-1]=NNP pos[0]=POS pos[1]=POS pos[2]=POS chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLL'L shape[0]=ULLL shape[1]=L shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL'L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=M p1[0]=L p1[1]=a p1[2]=V p2[-2]=pl p2[-1]=Ma p2[0]=Li p2[1]= p2[2]=Vi p3[-2]=pla p3[-1]=Mad p3[0]=Lik p3[1]= p3[2]=Vir p4[-2]=play p4[-1]=Mado p4[0]=Like p4[1]= p4[2]=Virg s1[-2]=y s1[-1]=s s1[0]=e s1[1]=a s1[2]=n s2[-2]=ay s2[-1]='s s2[0]=ke s2[1]= s2[2]=in s3[-2]=lay s3[-1]=a's s3[0]=ike s3[1]= s3[2]=gin s4[-2]=play s4[-1]=na's s4[0]=Like s4[1]= s4[2]=rgin 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Madonna's w[-1]|w[0]=Madonna's|Like w[0]|w[1]=Like|a w[1]|w[2]=a|Virgin pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|POS pos[0]|pos[1]=POS|POS pos[1]|pos[2]=POS|POS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL'L shaped[-1]|shaped[0]=UL'L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Madonna's w[1..4]=a w[1..4]=Virgin +song w[-2]=Madonna's w[-1]=Like w[0]=a w[1]=Virgin wl[-2]=madonna's wl[-1]=like wl[0]=a wl[1]=virgin pos[-2]=NNP pos[-1]=POS pos[0]=POS pos[1]=POS chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLLLLL'L shape[-1]=ULLL shape[0]=L shape[1]=ULLLLL shaped[-2]=UL'L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=M p1[-1]=L p1[0]=a p1[1]=V p2[-2]=Ma p2[-1]=Li p2[0]= p2[1]=Vi p3[-2]=Mad p3[-1]=Lik p3[0]= p3[1]=Vir p4[-2]=Mado p4[-1]=Like p4[0]= p4[1]=Virg s1[-2]=s s1[-1]=e s1[0]=a s1[1]=n s2[-2]='s s2[-1]=ke s2[0]= s2[1]=in s3[-2]=a's s3[-1]=ike s3[0]= s3[1]=gin s4[-2]=na's s4[-1]=Like s4[0]= s4[1]=rgin 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Madonna's|Like w[-1]|w[0]=Like|a w[0]|w[1]=a|Virgin pos[-2]|pos[-1]=NNP|POS pos[-1]|pos[0]=POS|POS pos[0]|pos[1]=POS|POS chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL'L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Madonna's w[-4..-1]=Like w[1..4]=Virgin +song w[-2]=Like w[-1]=a w[0]=Virgin wl[-2]=like wl[-1]=a wl[0]=virgin pos[-2]=POS pos[-1]=POS pos[0]=POS chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=L shape[0]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=L p1[-1]=a p1[0]=V p2[-2]=Li p2[-1]= p2[0]=Vi p3[-2]=Lik p3[-1]= p3[0]=Vir p4[-2]=Like p4[-1]= p4[0]=Virg s1[-2]=e s1[-1]=a s1[0]=n s2[-2]=ke s2[-1]= s2[0]=in s3[-2]=ike s3[-1]= s3[0]=gin s4[-2]=Like s4[-1]= s4[0]=rgin 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Like|a w[-1]|w[0]=a|Virgin pos[-2]|pos[-1]=POS|POS pos[-1]|pos[0]=POS|POS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Madonna's w[-4..-1]=Like w[-4..-1]=a __EOS__ + +O w[0]=play w[1]=song w[2]=How wl[0]=play wl[1]=song wl[2]=how pos[0]=VBP pos[1]=NN pos[2]=WRB chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=H p2[0]=pl p2[1]=so p2[2]=Ho p3[0]=pla p3[1]=son p3[2]=How p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=w s2[0]=ay s2[1]=ng s2[2]=ow s3[0]=lay s3[1]=ong s3[2]=How s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|How pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|WRB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=How w[1..4]=do w[1..4]=I __BOS__ +O w[-1]=play w[0]=song w[1]=How w[2]=do wl[-1]=play wl[0]=song wl[1]=how wl[2]=do pos[-1]=VBP pos[0]=NN pos[1]=WRB pos[2]=WRB chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=H p1[2]=d p2[-1]=pl p2[0]=so p2[1]=Ho p2[2]=do p3[-1]=pla p3[0]=son p3[1]=How p3[2]= p4[-1]=play p4[0]=song p4[1]= p4[2]= s1[-1]=y s1[0]=g s1[1]=w s1[2]=o s2[-1]=ay s2[0]=ng s2[1]=ow s2[2]=do s3[-1]=lay s3[0]=ong s3[1]=How s3[2]= s4[-1]=play s4[0]=song s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|How w[1]|w[2]=How|do pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|WRB pos[1]|pos[2]=WRB|WRB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=How w[1..4]=do w[1..4]=I w[1..4]=Live +song w[-2]=play w[-1]=song w[0]=How w[1]=do w[2]=I wl[-2]=play wl[-1]=song wl[0]=how wl[1]=do wl[2]=i pos[-2]=VBP pos[-1]=NN pos[0]=WRB pos[1]=WRB pos[2]=WRB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULL shape[1]=LL shape[2]=U shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=U type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllUpper p1[-2]=p p1[-1]=s p1[0]=H p1[1]=d p1[2]=I p2[-2]=pl p2[-1]=so p2[0]=Ho p2[1]=do p2[2]= p3[-2]=pla p3[-1]=son p3[0]=How p3[1]= p3[2]= p4[-2]=play p4[-1]=song p4[0]= p4[1]= p4[2]= s1[-2]=y s1[-1]=g s1[0]=w s1[1]=o s1[2]=I s2[-2]=ay s2[-1]=ng s2[0]=ow s2[1]=do s2[2]= s3[-2]=lay s3[-1]=ong s3[0]=How s3[1]= s3[2]= s4[-2]=play s4[-1]=song s4[0]= s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=yes al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|How w[0]|w[1]=How|do w[1]|w[2]=do|I pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|WRB pos[0]|pos[1]=WRB|WRB pos[1]|pos[2]=WRB|WRB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|U type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=do w[1..4]=I w[1..4]=Live +song w[-2]=song w[-1]=How w[0]=do w[1]=I w[2]=Live wl[-2]=song wl[-1]=how wl[0]=do wl[1]=i wl[2]=live pos[-2]=NN pos[-1]=WRB pos[0]=WRB pos[1]=WRB pos[2]=WRB chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=LL shape[1]=U shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=U shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllUpper type[2]=InitUpper p1[-2]=s p1[-1]=H p1[0]=d p1[1]=I p1[2]=L p2[-2]=so p2[-1]=Ho p2[0]=do p2[1]= p2[2]=Li p3[-2]=son p3[-1]=How p3[0]= p3[1]= p3[2]=Liv p4[-2]=song p4[-1]= p4[0]= p4[1]= p4[2]=Live s1[-2]=g s1[-1]=w s1[0]=o s1[1]=I s1[2]=e s2[-2]=ng s2[-1]=ow s2[0]=do s2[1]= s2[2]=ve s3[-2]=ong s3[-1]=How s3[0]= s3[1]= s3[2]=ive s4[-2]=song s4[-1]= s4[0]= s4[1]= s4[2]=Live 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=yes au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|How w[-1]|w[0]=How|do w[0]|w[1]=do|I w[1]|w[2]=I|Live pos[-2]|pos[-1]=NN|WRB pos[-1]|pos[0]=WRB|WRB pos[0]|pos[1]=WRB|WRB pos[1]|pos[2]=WRB|WRB chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=How w[1..4]=I w[1..4]=Live +song w[-2]=How w[-1]=do w[0]=I w[1]=Live wl[-2]=how wl[-1]=do wl[0]=i wl[1]=live pos[-2]=WRB pos[-1]=WRB pos[0]=WRB pos[1]=WRB chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=LL shape[0]=U shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=U shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllUpper type[1]=InitUpper p1[-2]=H p1[-1]=d p1[0]=I p1[1]=L p2[-2]=Ho p2[-1]=do p2[0]= p2[1]=Li p3[-2]=How p3[-1]= p3[0]= p3[1]=Liv p4[-2]= p4[-1]= p4[0]= p4[1]=Live s1[-2]=w s1[-1]=o s1[0]=I s1[1]=e s2[-2]=ow s2[-1]=do s2[0]= s2[1]=ve s3[-2]=How s3[-1]= s3[0]= s3[1]=ive s4[-2]= s4[-1]= s4[0]= s4[1]=Live 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=yes au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=How|do w[-1]|w[0]=do|I w[0]|w[1]=I|Live pos[-2]|pos[-1]=WRB|WRB pos[-1]|pos[0]=WRB|WRB pos[0]|pos[1]=WRB|WRB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=How w[-4..-1]=do w[1..4]=Live +song w[-2]=do w[-1]=I w[0]=Live wl[-2]=do wl[-1]=i wl[0]=live pos[-2]=WRB pos[-1]=WRB pos[0]=WRB chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=U shape[0]=ULLL shaped[-2]=L shaped[-1]=U shaped[0]=UL type[-2]=AllLetter type[-1]=AllUpper type[0]=InitUpper p1[-2]=d p1[-1]=I p1[0]=L p2[-2]=do p2[-1]= p2[0]=Li p3[-2]= p3[-1]= p3[0]=Liv p4[-2]= p4[-1]= p4[0]=Live s1[-2]=o s1[-1]=I s1[0]=e s2[-2]=do s2[-1]= s2[0]=ve s3[-2]= s3[-1]= s3[0]=ive s4[-2]= s4[-1]= s4[0]=Live 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=yes au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=no cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=do|I w[-1]|w[0]=I|Live pos[-2]|pos[-1]=WRB|WRB pos[-1]|pos[0]=WRB|WRB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|UL type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|InitUpper w[-4..-1]=song w[-4..-1]=How w[-4..-1]=do w[-4..-1]=I __EOS__ + +O w[0]=play w[1]=album w[2]=Madonna wl[0]=play wl[1]=album wl[2]=madonna pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=M p2[0]=pl p2[1]=al p2[2]=Ma p3[0]=pla p3[1]=alb p3[2]=Mad p4[0]=play p4[1]=albu p4[2]=Mado s1[0]=y s1[1]=m s1[2]=a s2[0]=ay s2[1]=um s2[2]=na s3[0]=lay s3[1]=bum s3[2]=nna s4[0]=play s4[1]=lbum s4[2]=onna 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Madonna pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Madonna __BOS__ +O w[-1]=play w[0]=album w[1]=Madonna wl[-1]=play wl[0]=album wl[1]=madonna pos[-1]=VB pos[0]=NN pos[1]=NNP chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-1]=p p1[0]=a p1[1]=M p2[-1]=pl p2[0]=al p2[1]=Ma p3[-1]=pla p3[0]=alb p3[1]=Mad p4[-1]=play p4[0]=albu p4[1]=Mado s1[-1]=y s1[0]=m s1[1]=a s2[-1]=ay s2[0]=um s2[1]=na s3[-1]=lay s3[0]=bum s3[1]=nna s4[-1]=play s4[0]=lbum s4[1]=onna 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Madonna pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=Madonna +album w[-2]=play w[-1]=album w[0]=Madonna wl[-2]=play wl[-1]=album wl[0]=madonna pos[-2]=VB pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=a p1[0]=M p2[-2]=pl p2[-1]=al p2[0]=Ma p3[-2]=pla p3[-1]=alb p3[0]=Mad p4[-2]=play p4[-1]=albu p4[0]=Mado s1[-2]=y s1[-1]=m s1[0]=a s2[-2]=ay s2[-1]=um s2[0]=na s3[-2]=lay s3[-1]=bum s3[0]=nna s4[-2]=play s4[-1]=lbum s4[0]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Madonna pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album __EOS__ + +O w[0]=play w[1]=country w[2]=blues wl[0]=play wl[1]=country wl[2]=blues pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=LLLLLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=c p1[2]=b p2[0]=pl p2[1]=co p2[2]=bl p3[0]=pla p3[1]=cou p3[2]=blu p4[0]=play p4[1]=coun p4[2]=blue s1[0]=y s1[1]=y s1[2]=s s2[0]=ay s2[1]=ry s2[2]=es s3[0]=lay s3[1]=try s3[2]=ues s4[0]=play s4[1]=ntry s4[2]=lues 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|country w[1]|w[2]=country|blues pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=country w[1..4]=blues __BOS__ +genre w[-1]=play w[0]=country w[1]=blues wl[-1]=play wl[0]=country wl[1]=blues pos[-1]=VB pos[0]=NN pos[1]=NN chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=LLLLLLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=c p1[1]=b p2[-1]=pl p2[0]=co p2[1]=bl p3[-1]=pla p3[0]=cou p3[1]=blu p4[-1]=play p4[0]=coun p4[1]=blue s1[-1]=y s1[0]=y s1[1]=s s2[-1]=ay s2[0]=ry s2[1]=es s3[-1]=lay s3[0]=try s3[1]=ues s4[-1]=play s4[0]=ntry s4[1]=lues 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|country w[0]|w[1]=country|blues pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=blues +genre w[-2]=play w[-1]=country w[0]=blues wl[-2]=play wl[-1]=country wl[0]=blues pos[-2]=VB pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=LLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=c p1[0]=b p2[-2]=pl p2[-1]=co p2[0]=bl p3[-2]=pla p3[-1]=cou p3[0]=blu p4[-2]=play p4[-1]=coun p4[0]=blue s1[-2]=y s1[-1]=y s1[0]=s s2[-2]=ay s2[-1]=ry s2[0]=es s3[-2]=lay s3[-1]=try s3[0]=ues s4[-2]=play s4[-1]=ntry s4[0]=lues 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|country w[-1]|w[0]=country|blues pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=country __EOS__ + +O w[0]=music w[1]=play w[2]=Addicted wl[0]=music wl[1]=play wl[2]=addicted pos[0]=NN pos[1]=NN pos[2]=VBN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLLL shape[1]=LLLL shape[2]=ULLLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=m p1[1]=p p1[2]=A p2[0]=mu p2[1]=pl p2[2]=Ad p3[0]=mus p3[1]=pla p3[2]=Add p4[0]=musi p4[1]=play p4[2]=Addi s1[0]=c s1[1]=y s1[2]=d s2[0]=ic s2[1]=ay s2[2]=ed s3[0]=sic s3[1]=lay s3[2]=ted s4[0]=usic s4[1]=play s4[2]=cted 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=music|play w[1]|w[2]=play|Addicted pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|VBN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=play w[1..4]=Addicted w[1..4]=to w[1..4]=Love __BOS__ +O w[-1]=music w[0]=play w[1]=Addicted w[2]=to wl[-1]=music wl[0]=play wl[1]=addicted wl[2]=to pos[-1]=NN pos[0]=NN pos[1]=VBN pos[2]=VBN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLLL shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=m p1[0]=p p1[1]=A p1[2]=t p2[-1]=mu p2[0]=pl p2[1]=Ad p2[2]=to p3[-1]=mus p3[0]=pla p3[1]=Add p3[2]= p4[-1]=musi p4[0]=play p4[1]=Addi p4[2]= s1[-1]=c s1[0]=y s1[1]=d s1[2]=o s2[-1]=ic s2[0]=ay s2[1]=ed s2[2]=to s3[-1]=sic s3[0]=lay s3[1]=ted s3[2]= s4[-1]=usic s4[0]=play s4[1]=cted s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=music|play w[0]|w[1]=play|Addicted w[1]|w[2]=Addicted|to pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|VBN pos[1]|pos[2]=VBN|VBN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=music w[1..4]=Addicted w[1..4]=to w[1..4]=Love +song w[-2]=music w[-1]=play w[0]=Addicted w[1]=to w[2]=Love wl[-2]=music wl[-1]=play wl[0]=addicted wl[1]=to wl[2]=love pos[-2]=NN pos[-1]=NN pos[0]=VBN pos[1]=VBN pos[2]=VBN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLLL shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=LL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=m p1[-1]=p p1[0]=A p1[1]=t p1[2]=L p2[-2]=mu p2[-1]=pl p2[0]=Ad p2[1]=to p2[2]=Lo p3[-2]=mus p3[-1]=pla p3[0]=Add p3[1]= p3[2]=Lov p4[-2]=musi p4[-1]=play p4[0]=Addi p4[1]= p4[2]=Love s1[-2]=c s1[-1]=y s1[0]=d s1[1]=o s1[2]=e s2[-2]=ic s2[-1]=ay s2[0]=ed s2[1]=to s2[2]=ve s3[-2]=sic s3[-1]=lay s3[0]=ted s3[1]= s3[2]=ove s4[-2]=usic s4[-1]=play s4[0]=cted s4[1]= s4[2]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=music|play w[-1]|w[0]=play|Addicted w[0]|w[1]=Addicted|to w[1]|w[2]=to|Love pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|VBN pos[0]|pos[1]=VBN|VBN pos[1]|pos[2]=VBN|VBN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=music w[-4..-1]=play w[1..4]=to w[1..4]=Love +song w[-2]=play w[-1]=Addicted w[0]=to w[1]=Love wl[-2]=play wl[-1]=addicted wl[0]=to wl[1]=love pos[-2]=NN pos[-1]=VBN pos[0]=VBN pos[1]=VBN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=LL shape[1]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=A p1[0]=t p1[1]=L p2[-2]=pl p2[-1]=Ad p2[0]=to p2[1]=Lo p3[-2]=pla p3[-1]=Add p3[0]= p3[1]=Lov p4[-2]=play p4[-1]=Addi p4[0]= p4[1]=Love s1[-2]=y s1[-1]=d s1[0]=o s1[1]=e s2[-2]=ay s2[-1]=ed s2[0]=to s2[1]=ve s3[-2]=lay s3[-1]=ted s3[0]= s3[1]=ove s4[-2]=play s4[-1]=cted s4[0]= s4[1]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Addicted w[-1]|w[0]=Addicted|to w[0]|w[1]=to|Love pos[-2]|pos[-1]=NN|VBN pos[-1]|pos[0]=VBN|VBN pos[0]|pos[1]=VBN|VBN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=music w[-4..-1]=play w[-4..-1]=Addicted w[1..4]=Love +song w[-2]=Addicted w[-1]=to w[0]=Love wl[-2]=addicted wl[-1]=to wl[0]=love pos[-2]=VBN pos[-1]=VBN pos[0]=VBN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLLLL shape[-1]=LL shape[0]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=A p1[-1]=t p1[0]=L p2[-2]=Ad p2[-1]=to p2[0]=Lo p3[-2]=Add p3[-1]= p3[0]=Lov p4[-2]=Addi p4[-1]= p4[0]=Love s1[-2]=d s1[-1]=o s1[0]=e s2[-2]=ed s2[-1]=to s2[0]=ve s3[-2]=ted s3[-1]= s3[0]=ove s4[-2]=cted s4[-1]= s4[0]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Addicted|to w[-1]|w[0]=to|Love pos[-2]|pos[-1]=VBN|VBN pos[-1]|pos[0]=VBN|VBN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=music w[-4..-1]=play w[-4..-1]=Addicted w[-4..-1]=to __EOS__ + +O w[0]=play w[1]=hip w[2]=hop wl[0]=play wl[1]=hip wl[2]=hop pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=LLL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=h p1[2]=h p2[0]=pl p2[1]=hi p2[2]=ho p3[0]=pla p3[1]=hip p3[2]=hop p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=p s1[2]=p s2[0]=ay s2[1]=ip s2[2]=op s3[0]=lay s3[1]=hip s3[2]=hop s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|hip w[1]|w[2]=hip|hop pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=hip w[1..4]=hop __BOS__ +genre w[-1]=play w[0]=hip w[1]=hop wl[-1]=play wl[0]=hip wl[1]=hop pos[-1]=VB pos[0]=NN pos[1]=NN chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=h p1[1]=h p2[-1]=pl p2[0]=hi p2[1]=ho p3[-1]=pla p3[0]=hip p3[1]=hop p4[-1]=play p4[0]= p4[1]= s1[-1]=y s1[0]=p s1[1]=p s2[-1]=ay s2[0]=ip s2[1]=op s3[-1]=lay s3[0]=hip s3[1]=hop s4[-1]=play s4[0]= s4[1]= 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|hip w[0]|w[1]=hip|hop pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=hop +genre w[-2]=play w[-1]=hip w[0]=hop wl[-2]=play wl[-1]=hip wl[0]=hop pos[-2]=VB pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=h p1[0]=h p2[-2]=pl p2[-1]=hi p2[0]=ho p3[-2]=pla p3[-1]=hip p3[0]=hop p4[-2]=play p4[-1]= p4[0]= s1[-2]=y s1[-1]=p s1[0]=p s2[-2]=ay s2[-1]=ip s2[0]=op s3[-2]=lay s3[-1]=hip s3[0]=hop s4[-2]=play s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|hip w[-1]|w[0]=hip|hop pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=hip __EOS__ + +O w[0]=put w[1]=on w[2]=my wl[0]=put wl[1]=on wl[2]=my pos[0]=VB pos[1]=RP pos[2]=PRP$ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=o p1[2]=m p2[0]=pu p2[1]=on p2[2]=my p3[0]=put p3[1]= p3[2]= p4[0]= p4[1]= p4[2]= s1[0]=t s1[1]=n s1[2]=y s2[0]=ut s2[1]=on s2[2]=my s3[0]=put s3[1]= s3[2]= s4[0]= s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|on w[1]|w[2]=on|my pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|PRP$ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=my w[1..4]=late w[1..4]=night __BOS__ +O w[-1]=put w[0]=on w[1]=my w[2]=late wl[-1]=put wl[0]=on wl[1]=my wl[2]=late pos[-1]=VB pos[0]=RP pos[1]=PRP$ pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LL shape[1]=LL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=o p1[1]=m p1[2]=l p2[-1]=pu p2[0]=on p2[1]=my p2[2]=la p3[-1]=put p3[0]= p3[1]= p3[2]=lat p4[-1]= p4[0]= p4[1]= p4[2]=late s1[-1]=t s1[0]=n s1[1]=y s1[2]=e s2[-1]=ut s2[0]=on s2[1]=my s2[2]=te s3[-1]=put s3[0]= s3[1]= s3[2]=ate s4[-1]= s4[0]= s4[1]= s4[2]=late 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|on w[0]|w[1]=on|my w[1]|w[2]=my|late pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|PRP$ pos[1]|pos[2]=PRP$|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=my w[1..4]=late w[1..4]=night w[1..4]=playlist +O w[-2]=put w[-1]=on w[0]=my w[1]=late w[2]=night wl[-2]=put wl[-1]=on wl[0]=my wl[1]=late wl[2]=night pos[-2]=VB pos[-1]=RP pos[0]=PRP$ pos[1]=JJ pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LL shape[0]=LL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=o p1[0]=m p1[1]=l p1[2]=n p2[-2]=pu p2[-1]=on p2[0]=my p2[1]=la p2[2]=ni p3[-2]=put p3[-1]= p3[0]= p3[1]=lat p3[2]=nig p4[-2]= p4[-1]= p4[0]= p4[1]=late p4[2]=nigh s1[-2]=t s1[-1]=n s1[0]=y s1[1]=e s1[2]=t s2[-2]=ut s2[-1]=on s2[0]=my s2[1]=te s2[2]=ht s3[-2]=put s3[-1]= s3[0]= s3[1]=ate s3[2]=ght s4[-2]= s4[-1]= s4[0]= s4[1]=late s4[2]=ight 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=put|on w[-1]|w[0]=on|my w[0]|w[1]=my|late w[1]|w[2]=late|night pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|PRP$ pos[0]|pos[1]=PRP$|JJ pos[1]|pos[2]=JJ|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=on w[1..4]=late w[1..4]=night w[1..4]=playlist +playlist w[-2]=on w[-1]=my w[0]=late w[1]=night w[2]=playlist wl[-2]=on wl[-1]=my wl[0]=late wl[1]=night wl[2]=playlist pos[-2]=RP pos[-1]=PRP$ pos[0]=JJ pos[1]=JJ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=o p1[-1]=m p1[0]=l p1[1]=n p1[2]=p p2[-2]=on p2[-1]=my p2[0]=la p2[1]=ni p2[2]=pl p3[-2]= p3[-1]= p3[0]=lat p3[1]=nig p3[2]=pla p4[-2]= p4[-1]= p4[0]=late p4[1]=nigh p4[2]=play s1[-2]=n s1[-1]=y s1[0]=e s1[1]=t s1[2]=t s2[-2]=on s2[-1]=my s2[0]=te s2[1]=ht s2[2]=st s3[-2]= s3[-1]= s3[0]=ate s3[1]=ght s3[2]=ist s4[-2]= s4[-1]= s4[0]=late s4[1]=ight s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=on|my w[-1]|w[0]=my|late w[0]|w[1]=late|night w[1]|w[2]=night|playlist pos[-2]|pos[-1]=RP|PRP$ pos[-1]|pos[0]=PRP$|JJ pos[0]|pos[1]=JJ|JJ pos[1]|pos[2]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=on w[-4..-1]=my w[1..4]=night w[1..4]=playlist +playlist w[-2]=my w[-1]=late w[0]=night w[1]=playlist wl[-2]=my wl[-1]=late wl[0]=night wl[1]=playlist pos[-2]=PRP$ pos[-1]=JJ pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=m p1[-1]=l p1[0]=n p1[1]=p p2[-2]=my p2[-1]=la p2[0]=ni p2[1]=pl p3[-2]= p3[-1]=lat p3[0]=nig p3[1]=pla p4[-2]= p4[-1]=late p4[0]=nigh p4[1]=play s1[-2]=y s1[-1]=e s1[0]=t s1[1]=t s2[-2]=my s2[-1]=te s2[0]=ht s2[1]=st s3[-2]= s3[-1]=ate s3[0]=ght s3[1]=ist s4[-2]= s4[-1]=late s4[0]=ight s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=my|late w[-1]|w[0]=late|night w[0]|w[1]=night|playlist pos[-2]|pos[-1]=PRP$|JJ pos[-1]|pos[0]=JJ|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=on w[-4..-1]=my w[-4..-1]=late w[1..4]=playlist +O w[-2]=late w[-1]=night w[0]=playlist wl[-2]=late wl[-1]=night wl[0]=playlist pos[-2]=JJ pos[-1]=JJ pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=l p1[-1]=n p1[0]=p p2[-2]=la p2[-1]=ni p2[0]=pl p3[-2]=lat p3[-1]=nig p3[0]=pla p4[-2]=late p4[-1]=nigh p4[0]=play s1[-2]=e s1[-1]=t s1[0]=t s2[-2]=te s2[-1]=ht s2[0]=st s3[-2]=ate s3[-1]=ght s3[0]=ist s4[-2]=late s4[-1]=ight s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=late|night w[-1]|w[0]=night|playlist pos[-2]|pos[-1]=JJ|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=on w[-4..-1]=my w[-4..-1]=late w[-4..-1]=night __EOS__ + +O w[0]=play w[1]=genre w[2]=party wl[0]=play wl[1]=genre wl[2]=party pos[0]=VBP pos[1]=NN pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=g p1[2]=p p2[0]=pl p2[1]=ge p2[2]=pa p3[0]=pla p3[1]=gen p3[2]=par p4[0]=play p4[1]=genr p4[2]=part s1[0]=y s1[1]=e s1[2]=y s2[0]=ay s2[1]=re s2[2]=ty s3[0]=lay s3[1]=nre s3[2]=rty s4[0]=play s4[1]=enre s4[2]=arty 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|genre w[1]|w[2]=genre|party pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=genre w[1..4]=party __BOS__ +O w[-1]=play w[0]=genre w[1]=party wl[-1]=play wl[0]=genre wl[1]=party pos[-1]=VBP pos[0]=NN pos[1]=NN chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=g p1[1]=p p2[-1]=pl p2[0]=ge p2[1]=pa p3[-1]=pla p3[0]=gen p3[1]=par p4[-1]=play p4[0]=genr p4[1]=part s1[-1]=y s1[0]=e s1[1]=y s2[-1]=ay s2[0]=re s2[1]=ty s3[-1]=lay s3[0]=nre s3[1]=rty s4[-1]=play s4[0]=enre s4[1]=arty 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|genre w[0]|w[1]=genre|party pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=party +genre w[-2]=play w[-1]=genre w[0]=party wl[-2]=play wl[-1]=genre wl[0]=party pos[-2]=VBP pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=g p1[0]=p p2[-2]=pl p2[-1]=ge p2[0]=pa p3[-2]=pla p3[-1]=gen p3[0]=par p4[-2]=play p4[-1]=genr p4[0]=part s1[-2]=y s1[-1]=e s1[0]=y s2[-2]=ay s2[-1]=re s2[0]=ty s3[-2]=lay s3[-1]=nre s3[0]=rty s4[-2]=play s4[-1]=enre s4[0]=arty 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|genre w[-1]|w[0]=genre|party pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=genre __EOS__ + +O w[0]=play w[1]=genre w[2]=blues wl[0]=play wl[1]=genre wl[2]=blues pos[0]=VBP pos[1]=NN pos[2]=NNS chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=g p1[2]=b p2[0]=pl p2[1]=ge p2[2]=bl p3[0]=pla p3[1]=gen p3[2]=blu p4[0]=play p4[1]=genr p4[2]=blue s1[0]=y s1[1]=e s1[2]=s s2[0]=ay s2[1]=re s2[2]=es s3[0]=lay s3[1]=nre s3[2]=ues s4[0]=play s4[1]=enre s4[2]=lues 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|genre w[1]|w[2]=genre|blues pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNS chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=genre w[1..4]=blues __BOS__ +O w[-1]=play w[0]=genre w[1]=blues wl[-1]=play wl[0]=genre wl[1]=blues pos[-1]=VBP pos[0]=NN pos[1]=NNS chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=g p1[1]=b p2[-1]=pl p2[0]=ge p2[1]=bl p3[-1]=pla p3[0]=gen p3[1]=blu p4[-1]=play p4[0]=genr p4[1]=blue s1[-1]=y s1[0]=e s1[1]=s s2[-1]=ay s2[0]=re s2[1]=es s3[-1]=lay s3[0]=nre s3[1]=ues s4[-1]=play s4[0]=enre s4[1]=lues 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|genre w[0]|w[1]=genre|blues pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=blues +genre w[-2]=play w[-1]=genre w[0]=blues wl[-2]=play wl[-1]=genre wl[0]=blues pos[-2]=VBP pos[-1]=NN pos[0]=NNS chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=g p1[0]=b p2[-2]=pl p2[-1]=ge p2[0]=bl p3[-2]=pla p3[-1]=gen p3[0]=blu p4[-2]=play p4[-1]=genr p4[0]=blue s1[-2]=y s1[-1]=e s1[0]=s s2[-2]=ay s2[-1]=re s2[0]=es s3[-2]=lay s3[-1]=nre s3[0]=ues s4[-2]=play s4[-1]=enre s4[0]=lues 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|genre w[-1]|w[0]=genre|blues pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=genre __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=the w[1..4]=song __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=the wl[-1]=can wl[0]=you wl[1]=play wl[2]=the pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=t p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=th p3[-1]=can p3[0]=you p3[1]=pla p3[2]=the p4[-1]= p4[0]= p4[1]=play p4[2]= s1[-1]=n s1[0]=u s1[1]=y s1[2]=e s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=he s3[-1]=can s3[0]=you s3[1]=lay s3[2]=the s4[-1]= s4[0]= s4[1]=play s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|the pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=play w[1..4]=the w[1..4]=song w[1..4]=Still +O w[-2]=can w[-1]=you w[0]=play w[1]=the w[2]=song wl[-2]=can wl[-1]=you wl[0]=play wl[1]=the wl[2]=song pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=t p1[2]=s p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=th p2[2]=so p3[-2]=can p3[-1]=you p3[0]=pla p3[1]=the p3[2]=son p4[-2]= p4[-1]= p4[0]=play p4[1]= p4[2]=song s1[-2]=n s1[-1]=u s1[0]=y s1[1]=e s1[2]=g s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=he s2[2]=ng s3[-2]=can s3[-1]=you s3[0]=lay s3[1]=the s3[2]=ong s4[-2]= s4[-1]= s4[0]=play s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|the w[1]|w[2]=the|song pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=the w[1..4]=song w[1..4]=Still w[1..4]=into +O w[-2]=you w[-1]=play w[0]=the w[1]=song w[2]=Still wl[-2]=you wl[-1]=play wl[0]=the wl[1]=song wl[2]=still pos[-2]=PRP pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=y p1[-1]=p p1[0]=t p1[1]=s p1[2]=S p2[-2]=yo p2[-1]=pl p2[0]=th p2[1]=so p2[2]=St p3[-2]=you p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Sti p4[-2]= p4[-1]=play p4[0]= p4[1]=song p4[2]=Stil s1[-2]=u s1[-1]=y s1[0]=e s1[1]=g s1[2]=l s2[-2]=ou s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=ll s3[-2]=you s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ill s4[-2]= s4[-1]=play s4[0]= s4[1]=song s4[2]=till 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Still pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[1..4]=song w[1..4]=Still w[1..4]=into w[1..4]=You +O w[-2]=play w[-1]=the w[0]=song w[1]=Still w[2]=into wl[-2]=play wl[-1]=the wl[0]=song wl[1]=still wl[2]=into pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=RB pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p1[1]=S p1[2]=i p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=St p2[2]=in p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Sti p3[2]=int p4[-2]=play p4[-1]= p4[0]=song p4[1]=Stil p4[2]=into s1[-2]=y s1[-1]=e s1[0]=g s1[1]=l s1[2]=o s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=ll s2[2]=to s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ill s3[2]=nto s4[-2]=play s4[-1]= s4[0]=song s4[1]=till s4[2]=into 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Still w[1]|w[2]=Still|into pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|RB pos[1]|pos[2]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[-4..-1]=the w[1..4]=Still w[1..4]=into w[1..4]=You +song w[-2]=the w[-1]=song w[0]=Still w[1]=into w[2]=You wl[-2]=the wl[-1]=song wl[0]=still wl[1]=into wl[2]=you pos[-2]=DT pos[-1]=NN pos[0]=RB pos[1]=RB pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLL shape[1]=LLLL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=s p1[0]=S p1[1]=i p1[2]=Y p2[-2]=th p2[-1]=so p2[0]=St p2[1]=in p2[2]=Yo p3[-2]=the p3[-1]=son p3[0]=Sti p3[1]=int p3[2]=You p4[-2]= p4[-1]=song p4[0]=Stil p4[1]=into p4[2]= s1[-2]=e s1[-1]=g s1[0]=l s1[1]=o s1[2]=u s2[-2]=he s2[-1]=ng s2[0]=ll s2[1]=to s2[2]=ou s3[-2]=the s3[-1]=ong s3[0]=ill s3[1]=nto s3[2]=You s4[-2]= s4[-1]=song s4[0]=till s4[1]=into s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Still w[0]|w[1]=Still|into w[1]|w[2]=into|You pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|RB pos[0]|pos[1]=RB|RB pos[1]|pos[2]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=you w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[1..4]=into w[1..4]=You +song w[-2]=song w[-1]=Still w[0]=into w[1]=You wl[-2]=song wl[-1]=still wl[0]=into wl[1]=you pos[-2]=NN pos[-1]=RB pos[0]=RB pos[1]=RB chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=LLLL shape[1]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=s p1[-1]=S p1[0]=i p1[1]=Y p2[-2]=so p2[-1]=St p2[0]=in p2[1]=Yo p3[-2]=son p3[-1]=Sti p3[0]=int p3[1]=You p4[-2]=song p4[-1]=Stil p4[0]=into p4[1]= s1[-2]=g s1[-1]=l s1[0]=o s1[1]=u s2[-2]=ng s2[-1]=ll s2[0]=to s2[1]=ou s3[-2]=ong s3[-1]=ill s3[0]=nto s3[1]=You s4[-2]=song s4[-1]=till s4[0]=into s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|Still w[-1]|w[0]=Still|into w[0]|w[1]=into|You pos[-2]|pos[-1]=NN|RB pos[-1]|pos[0]=RB|RB pos[0]|pos[1]=RB|RB chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Still w[1..4]=You +song w[-2]=Still w[-1]=into w[0]=You wl[-2]=still wl[-1]=into wl[0]=you pos[-2]=RB pos[-1]=RB pos[0]=RB chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLL shape[-1]=LLLL shape[0]=ULL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=S p1[-1]=i p1[0]=Y p2[-2]=St p2[-1]=in p2[0]=Yo p3[-2]=Sti p3[-1]=int p3[0]=You p4[-2]=Stil p4[-1]=into p4[0]= s1[-2]=l s1[-1]=o s1[0]=u s2[-2]=ll s2[-1]=to s2[0]=ou s3[-2]=ill s3[-1]=nto s3[0]=You s4[-2]=till s4[-1]=into s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Still|into w[-1]|w[0]=into|You pos[-2]|pos[-1]=RB|RB pos[-1]|pos[0]=RB|RB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Still w[-4..-1]=into __EOS__ + +O w[0]=play w[1]=jazz w[2]=on wl[0]=play wl[1]=jazz wl[2]=on pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=j p1[2]=o p2[0]=pl p2[1]=ja p2[2]=on p3[0]=pla p3[1]=jaz p3[2]= p4[0]=play p4[1]=jazz p4[2]= s1[0]=y s1[1]=z s1[2]=n s2[0]=ay s2[1]=zz s2[2]=on s3[0]=lay s3[1]=azz s3[2]= s4[0]=play s4[1]=jazz s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|jazz w[1]|w[2]=jazz|on pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=jazz w[1..4]=on w[1..4]=Spotify __BOS__ +genre w[-1]=play w[0]=jazz w[1]=on w[2]=Spotify wl[-1]=play wl[0]=jazz wl[1]=on wl[2]=spotify pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=j p1[1]=o p1[2]=S p2[-1]=pl p2[0]=ja p2[1]=on p2[2]=Sp p3[-1]=pla p3[0]=jaz p3[1]= p3[2]=Spo p4[-1]=play p4[0]=jazz p4[1]= p4[2]=Spot s1[-1]=y s1[0]=z s1[1]=n s1[2]=y s2[-1]=ay s2[0]=zz s2[1]=on s2[2]=fy s3[-1]=lay s3[0]=azz s3[1]= s3[2]=ify s4[-1]=play s4[0]=jazz s4[1]= s4[2]=tify 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|jazz w[0]|w[1]=jazz|on w[1]|w[2]=on|Spotify pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=on w[1..4]=Spotify +O w[-2]=play w[-1]=jazz w[0]=on w[1]=Spotify wl[-2]=play wl[-1]=jazz wl[0]=on wl[1]=spotify pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=j p1[0]=o p1[1]=S p2[-2]=pl p2[-1]=ja p2[0]=on p2[1]=Sp p3[-2]=pla p3[-1]=jaz p3[0]= p3[1]=Spo p4[-2]=play p4[-1]=jazz p4[0]= p4[1]=Spot s1[-2]=y s1[-1]=z s1[0]=n s1[1]=y s2[-2]=ay s2[-1]=zz s2[0]=on s2[1]=fy s3[-2]=lay s3[-1]=azz s3[0]= s3[1]=ify s4[-2]=play s4[-1]=jazz s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|jazz w[-1]|w[0]=jazz|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=jazz w[1..4]=Spotify +service w[-2]=jazz w[-1]=on w[0]=Spotify wl[-2]=jazz wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=j p1[-1]=o p1[0]=S p2[-2]=ja p2[-1]=on p2[0]=Sp p3[-2]=jaz p3[-1]= p3[0]=Spo p4[-2]=jazz p4[-1]= p4[0]=Spot s1[-2]=z s1[-1]=n s1[0]=y s2[-2]=zz s2[-1]=on s2[0]=fy s3[-2]=azz s3[-1]= s3[0]=ify s4[-2]=jazz s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=jazz|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=jazz w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=Pearl w[2]=Jam wl[0]=play wl[1]=pearl wl[2]=jam pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLL shape[2]=ULL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=P p1[2]=J p2[0]=pl p2[1]=Pe p2[2]=Ja p3[0]=pla p3[1]=Pea p3[2]=Jam p4[0]=play p4[1]=Pear p4[2]= s1[0]=y s1[1]=l s1[2]=m s2[0]=ay s2[1]=rl s2[2]=am s3[0]=lay s3[1]=arl s3[2]=Jam s4[0]=play s4[1]=earl s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Pearl w[1]|w[2]=Pearl|Jam pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Pearl w[1..4]=Jam __BOS__ +artist w[-1]=play w[0]=Pearl w[1]=Jam wl[-1]=play wl[0]=pearl wl[1]=jam pos[-1]=VB pos[0]=NNP pos[1]=NNP chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=P p1[1]=J p2[-1]=pl p2[0]=Pe p2[1]=Ja p3[-1]=pla p3[0]=Pea p3[1]=Jam p4[-1]=play p4[0]=Pear p4[1]= s1[-1]=y s1[0]=l s1[1]=m s2[-1]=ay s2[0]=rl s2[1]=am s3[-1]=lay s3[0]=arl s3[1]=Jam s4[-1]=play s4[0]=earl s4[1]= 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|Pearl w[0]|w[1]=Pearl|Jam pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Jam +artist w[-2]=play w[-1]=Pearl w[0]=Jam wl[-2]=play wl[-1]=pearl wl[0]=jam pos[-2]=VB pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=P p1[0]=J p2[-2]=pl p2[-1]=Pe p2[0]=Ja p3[-2]=pla p3[-1]=Pea p3[0]=Jam p4[-2]=play p4[-1]=Pear p4[0]= s1[-2]=y s1[-1]=l s1[0]=m s2[-2]=ay s2[-1]=rl s2[0]=am s3[-2]=lay s3[-1]=arl s3[0]=Jam s4[-2]=play s4[-1]=earl s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|Pearl w[-1]|w[0]=Pearl|Jam pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Pearl __EOS__ + +O w[0]=play w[1]=Britney w[2]=Spears wl[0]=play wl[1]=britney wl[2]=spears pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=B p1[2]=S p2[0]=pl p2[1]=Br p2[2]=Sp p3[0]=pla p3[1]=Bri p3[2]=Spe p4[0]=play p4[1]=Brit p4[2]=Spea s1[0]=y s1[1]=y s1[2]=s s2[0]=ay s2[1]=ey s2[2]=rs s3[0]=lay s3[1]=ney s3[2]=ars s4[0]=play s4[1]=tney s4[2]=ears 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Britney w[1]|w[2]=Britney|Spears pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Britney w[1..4]=Spears w[1..4]=Me w[1..4]=Against __BOS__ +artist w[-1]=play w[0]=Britney w[1]=Spears w[2]=Me wl[-1]=play wl[0]=britney wl[1]=spears wl[2]=me pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=PRP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLLL shape[2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=B p1[1]=S p1[2]=M p2[-1]=pl p2[0]=Br p2[1]=Sp p2[2]=Me p3[-1]=pla p3[0]=Bri p3[1]=Spe p3[2]= p4[-1]=play p4[0]=Brit p4[1]=Spea p4[2]= s1[-1]=y s1[0]=y s1[1]=s s1[2]=e s2[-1]=ay s2[0]=ey s2[1]=rs s2[2]=Me s3[-1]=lay s3[0]=ney s3[1]=ars s3[2]= s4[-1]=play s4[0]=tney s4[1]=ears s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Britney w[0]|w[1]=Britney|Spears w[1]|w[2]=Spears|Me pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|PRP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Spears w[1..4]=Me w[1..4]=Against w[1..4]=the +artist w[-2]=play w[-1]=Britney w[0]=Spears w[1]=Me w[2]=Against wl[-2]=play wl[-1]=britney wl[0]=spears wl[1]=me wl[2]=against pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLLL shape[1]=UL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=B p1[0]=S p1[1]=M p1[2]=A p2[-2]=pl p2[-1]=Br p2[0]=Sp p2[1]=Me p2[2]=Ag p3[-2]=pla p3[-1]=Bri p3[0]=Spe p3[1]= p3[2]=Aga p4[-2]=play p4[-1]=Brit p4[0]=Spea p4[1]= p4[2]=Agai s1[-2]=y s1[-1]=y s1[0]=s s1[1]=e s1[2]=t s2[-2]=ay s2[-1]=ey s2[0]=rs s2[1]=Me s2[2]=st s3[-2]=lay s3[-1]=ney s3[0]=ars s3[1]= s3[2]=nst s4[-2]=play s4[-1]=tney s4[0]=ears s4[1]= s4[2]=inst 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Britney w[-1]|w[0]=Britney|Spears w[0]|w[1]=Spears|Me w[1]|w[2]=Me|Against pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Britney w[1..4]=Me w[1..4]=Against w[1..4]=the w[1..4]=Music +song w[-2]=Britney w[-1]=Spears w[0]=Me w[1]=Against w[2]=the wl[-2]=britney wl[-1]=spears wl[0]=me wl[1]=against wl[2]=the pos[-2]=NNP pos[-1]=NNP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLLLL shape[-1]=ULLLLL shape[0]=UL shape[1]=ULLLLLL shape[2]=LLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=B p1[-1]=S p1[0]=M p1[1]=A p1[2]=t p2[-2]=Br p2[-1]=Sp p2[0]=Me p2[1]=Ag p2[2]=th p3[-2]=Bri p3[-1]=Spe p3[0]= p3[1]=Aga p3[2]=the p4[-2]=Brit p4[-1]=Spea p4[0]= p4[1]=Agai p4[2]= s1[-2]=y s1[-1]=s s1[0]=e s1[1]=t s1[2]=e s2[-2]=ey s2[-1]=rs s2[0]=Me s2[1]=st s2[2]=he s3[-2]=ney s3[-1]=ars s3[0]= s3[1]=nst s3[2]=the s4[-2]=tney s4[-1]=ears s4[0]= s4[1]=inst s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Britney|Spears w[-1]|w[0]=Spears|Me w[0]|w[1]=Me|Against w[1]|w[2]=Against|the pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Britney w[-4..-1]=Spears w[1..4]=Against w[1..4]=the w[1..4]=Music w[1..4]=feat +song w[-2]=Spears w[-1]=Me w[0]=Against w[1]=the w[2]=Music wl[-2]=spears wl[-1]=me wl[0]=against wl[1]=the wl[2]=music pos[-2]=NNP pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLLL shape[-1]=UL shape[0]=ULLLLLL shape[1]=LLL shape[2]=ULLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=S p1[-1]=M p1[0]=A p1[1]=t p1[2]=M p2[-2]=Sp p2[-1]=Me p2[0]=Ag p2[1]=th p2[2]=Mu p3[-2]=Spe p3[-1]= p3[0]=Aga p3[1]=the p3[2]=Mus p4[-2]=Spea p4[-1]= p4[0]=Agai p4[1]= p4[2]=Musi s1[-2]=s s1[-1]=e s1[0]=t s1[1]=e s1[2]=c s2[-2]=rs s2[-1]=Me s2[0]=st s2[1]=he s2[2]=ic s3[-2]=ars s3[-1]= s3[0]=nst s3[1]=the s3[2]=sic s4[-2]=ears s4[-1]= s4[0]=inst s4[1]= s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Spears|Me w[-1]|w[0]=Me|Against w[0]|w[1]=Against|the w[1]|w[2]=the|Music pos[-2]|pos[-1]=NNP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Britney w[-4..-1]=Spears w[-4..-1]=Me w[1..4]=the w[1..4]=Music w[1..4]=feat w[1..4]=Madonna +song w[-2]=Me w[-1]=Against w[0]=the w[1]=Music w[2]=feat wl[-2]=me wl[-1]=against wl[0]=the wl[1]=music wl[2]=feat pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=UL shape[-1]=ULLLLLL shape[0]=LLL shape[1]=ULLLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=M p1[-1]=A p1[0]=t p1[1]=M p1[2]=f p2[-2]=Me p2[-1]=Ag p2[0]=th p2[1]=Mu p2[2]=fe p3[-2]= p3[-1]=Aga p3[0]=the p3[1]=Mus p3[2]=fea p4[-2]= p4[-1]=Agai p4[0]= p4[1]=Musi p4[2]=feat s1[-2]=e s1[-1]=t s1[0]=e s1[1]=c s1[2]=t s2[-2]=Me s2[-1]=st s2[0]=he s2[1]=ic s2[2]=at s3[-2]= s3[-1]=nst s3[0]=the s3[1]=sic s3[2]=eat s4[-2]= s4[-1]=inst s4[0]= s4[1]=usic s4[2]=feat 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Me|Against w[-1]|w[0]=Against|the w[0]|w[1]=the|Music w[1]|w[2]=Music|feat pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Britney w[-4..-1]=Spears w[-4..-1]=Me w[-4..-1]=Against w[1..4]=Music w[1..4]=feat w[1..4]=Madonna +song w[-2]=Against w[-1]=the w[0]=Music w[1]=feat w[2]=Madonna wl[-2]=against wl[-1]=the wl[0]=music wl[1]=feat wl[2]=madonna pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=NN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLLLLL shape[-1]=LLL shape[0]=ULLLL shape[1]=LLLL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=A p1[-1]=t p1[0]=M p1[1]=f p1[2]=M p2[-2]=Ag p2[-1]=th p2[0]=Mu p2[1]=fe p2[2]=Ma p3[-2]=Aga p3[-1]=the p3[0]=Mus p3[1]=fea p3[2]=Mad p4[-2]=Agai p4[-1]= p4[0]=Musi p4[1]=feat p4[2]=Mado s1[-2]=t s1[-1]=e s1[0]=c s1[1]=t s1[2]=a s2[-2]=st s2[-1]=he s2[0]=ic s2[1]=at s2[2]=na s3[-2]=nst s3[-1]=the s3[0]=sic s3[1]=eat s3[2]=nna s4[-2]=inst s4[-1]= s4[0]=usic s4[1]=feat s4[2]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Against|the w[-1]|w[0]=the|Music w[0]|w[1]=Music|feat w[1]|w[2]=feat|Madonna pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|NN pos[1]|pos[2]=NN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Spears w[-4..-1]=Me w[-4..-1]=Against w[-4..-1]=the w[1..4]=feat w[1..4]=Madonna +O w[-2]=the w[-1]=Music w[0]=feat w[1]=Madonna wl[-2]=the wl[-1]=music wl[0]=feat wl[1]=madonna pos[-2]=PRP pos[-1]=PRP pos[0]=NN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLL shape[-1]=ULLLL shape[0]=LLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=t p1[-1]=M p1[0]=f p1[1]=M p2[-2]=th p2[-1]=Mu p2[0]=fe p2[1]=Ma p3[-2]=the p3[-1]=Mus p3[0]=fea p3[1]=Mad p4[-2]= p4[-1]=Musi p4[0]=feat p4[1]=Mado s1[-2]=e s1[-1]=c s1[0]=t s1[1]=a s2[-2]=he s2[-1]=ic s2[0]=at s2[1]=na s3[-2]=the s3[-1]=sic s3[0]=eat s3[1]=nna s4[-2]= s4[-1]=usic s4[0]=feat s4[1]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=the|Music w[-1]|w[0]=Music|feat w[0]|w[1]=feat|Madonna pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|NN pos[0]|pos[1]=NN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=Me w[-4..-1]=Against w[-4..-1]=the w[-4..-1]=Music w[1..4]=Madonna +artist w[-2]=Music w[-1]=feat w[0]=Madonna wl[-2]=music wl[-1]=feat wl[0]=madonna pos[-2]=PRP pos[-1]=NN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLL shape[-1]=LLLL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=M p1[-1]=f p1[0]=M p2[-2]=Mu p2[-1]=fe p2[0]=Ma p3[-2]=Mus p3[-1]=fea p3[0]=Mad p4[-2]=Musi p4[-1]=feat p4[0]=Mado s1[-2]=c s1[-1]=t s1[0]=a s2[-2]=ic s2[-1]=at s2[0]=na s3[-2]=sic s3[-1]=eat s3[0]=nna s4[-2]=usic s4[-1]=feat s4[0]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Music|feat w[-1]|w[0]=feat|Madonna pos[-2]|pos[-1]=PRP|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Against w[-4..-1]=the w[-4..-1]=Music w[-4..-1]=feat __EOS__ + +O w[0]=play w[1]=me w[2]=some wl[0]=play wl[1]=me wl[2]=some pos[0]=VB pos[1]=PRP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=s p2[0]=pl p2[1]=me p2[2]=so p3[0]=pla p3[1]= p3[2]=som p4[0]=play p4[1]= p4[2]=some s1[0]=y s1[1]=e s1[2]=e s2[0]=ay s2[1]=me s2[2]=me s3[0]=lay s3[1]= s3[2]=ome s4[0]=play s4[1]= s4[2]=some 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|me w[1]|w[2]=me|some pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=me w[1..4]=some w[1..4]=good w[1..4]=music __BOS__ +O w[-1]=play w[0]=me w[1]=some w[2]=good wl[-1]=play wl[0]=me wl[1]=some wl[2]=good pos[-1]=VB pos[0]=PRP pos[1]=DT pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=m p1[1]=s p1[2]=g p2[-1]=pl p2[0]=me p2[1]=so p2[2]=go p3[-1]=pla p3[0]= p3[1]=som p3[2]=goo p4[-1]=play p4[0]= p4[1]=some p4[2]=good s1[-1]=y s1[0]=e s1[1]=e s1[2]=d s2[-1]=ay s2[0]=me s2[1]=me s2[2]=od s3[-1]=lay s3[0]= s3[1]=ome s3[2]=ood s4[-1]=play s4[0]= s4[1]=some s4[2]=good 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|me w[0]|w[1]=me|some w[1]|w[2]=some|good pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|DT pos[1]|pos[2]=DT|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=some w[1..4]=good w[1..4]=music +O w[-2]=play w[-1]=me w[0]=some w[1]=good w[2]=music wl[-2]=play wl[-1]=me wl[0]=some wl[1]=good wl[2]=music pos[-2]=VB pos[-1]=PRP pos[0]=DT pos[1]=JJ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=m p1[0]=s p1[1]=g p1[2]=m p2[-2]=pl p2[-1]=me p2[0]=so p2[1]=go p2[2]=mu p3[-2]=pla p3[-1]= p3[0]=som p3[1]=goo p3[2]=mus p4[-2]=play p4[-1]= p4[0]=some p4[1]=good p4[2]=musi s1[-2]=y s1[-1]=e s1[0]=e s1[1]=d s1[2]=c s2[-2]=ay s2[-1]=me s2[0]=me s2[1]=od s2[2]=ic s3[-2]=lay s3[-1]= s3[0]=ome s3[1]=ood s3[2]=sic s4[-2]=play s4[-1]= s4[0]=some s4[1]=good s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|me w[-1]|w[0]=me|some w[0]|w[1]=some|good w[1]|w[2]=good|music pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[1..4]=good w[1..4]=music +sort w[-2]=me w[-1]=some w[0]=good w[1]=music wl[-2]=me wl[-1]=some wl[0]=good wl[1]=music pos[-2]=PRP pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=m p1[-1]=s p1[0]=g p1[1]=m p2[-2]=me p2[-1]=so p2[0]=go p2[1]=mu p3[-2]= p3[-1]=som p3[0]=goo p3[1]=mus p4[-2]= p4[-1]=some p4[0]=good p4[1]=musi s1[-2]=e s1[-1]=e s1[0]=d s1[1]=c s2[-2]=me s2[-1]=me s2[0]=od s2[1]=ic s3[-2]= s3[-1]=ome s3[0]=ood s3[1]=sic s4[-2]= s4[-1]=some s4[0]=good s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=me|some w[-1]|w[0]=some|good w[0]|w[1]=good|music pos[-2]|pos[-1]=PRP|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some w[1..4]=music +O w[-2]=some w[-1]=good w[0]=music wl[-2]=some wl[-1]=good wl[0]=music pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=g p1[0]=m p2[-2]=so p2[-1]=go p2[0]=mu p3[-2]=som p3[-1]=goo p3[0]=mus p4[-2]=some p4[-1]=good p4[0]=musi s1[-2]=e s1[-1]=d s1[0]=c s2[-2]=me s2[-1]=od s2[0]=ic s3[-2]=ome s3[-1]=ood s3[0]=sic s4[-2]=some s4[-1]=good s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|good w[-1]|w[0]=good|music pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some w[-4..-1]=good __EOS__ + +O w[0]=I w[1]=would w[2]=like wl[0]=i wl[1]=would wl[2]=like pos[0]=PRP pos[1]=MD pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLLL shape[2]=LLLL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=l p2[0]= p2[1]=wo p2[2]=li p3[0]= p3[1]=wou p3[2]=lik p4[0]= p4[1]=woul p4[2]=like s1[0]=I s1[1]=d s1[2]=e s2[0]= s2[1]=ld s2[2]=ke s3[0]= s3[1]=uld s3[2]=ike s4[0]= s4[1]=ould s4[2]=like 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|would w[1]|w[2]=would|like pos[0]|pos[1]=PRP|MD pos[1]|pos[2]=MD|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=would w[1..4]=like w[1..4]=to w[1..4]=hear __BOS__ +O w[-1]=I w[0]=would w[1]=like w[2]=to wl[-1]=i wl[0]=would wl[1]=like wl[2]=to pos[-1]=PRP pos[0]=MD pos[1]=VB pos[2]=TO chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLLL shape[1]=LLLL shape[2]=LL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=l p1[2]=t p2[-1]= p2[0]=wo p2[1]=li p2[2]=to p3[-1]= p3[0]=wou p3[1]=lik p3[2]= p4[-1]= p4[0]=woul p4[1]=like p4[2]= s1[-1]=I s1[0]=d s1[1]=e s1[2]=o s2[-1]= s2[0]=ld s2[1]=ke s2[2]=to s3[-1]= s3[0]=uld s3[1]=ike s3[2]= s4[-1]= s4[0]=ould s4[1]=like s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|would w[0]|w[1]=would|like w[1]|w[2]=like|to pos[-1]|pos[0]=PRP|MD pos[0]|pos[1]=MD|VB pos[1]|pos[2]=VB|TO chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=like w[1..4]=to w[1..4]=hear w[1..4]=some +O w[-2]=I w[-1]=would w[0]=like w[1]=to w[2]=hear wl[-2]=i wl[-1]=would wl[0]=like wl[1]=to wl[2]=hear pos[-2]=PRP pos[-1]=MD pos[0]=VB pos[1]=TO pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLLL shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=l p1[1]=t p1[2]=h p2[-2]= p2[-1]=wo p2[0]=li p2[1]=to p2[2]=he p3[-2]= p3[-1]=wou p3[0]=lik p3[1]= p3[2]=hea p4[-2]= p4[-1]=woul p4[0]=like p4[1]= p4[2]=hear s1[-2]=I s1[-1]=d s1[0]=e s1[1]=o s1[2]=r s2[-2]= s2[-1]=ld s2[0]=ke s2[1]=to s2[2]=ar s3[-2]= s3[-1]=uld s3[0]=ike s3[1]= s3[2]=ear s4[-2]= s4[-1]=ould s4[0]=like s4[1]= s4[2]=hear 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|would w[-1]|w[0]=would|like w[0]|w[1]=like|to w[1]|w[2]=to|hear pos[-2]|pos[-1]=PRP|MD pos[-1]|pos[0]=MD|VB pos[0]|pos[1]=VB|TO pos[1]|pos[2]=TO|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=would w[1..4]=to w[1..4]=hear w[1..4]=some w[1..4]=music +O w[-2]=would w[-1]=like w[0]=to w[1]=hear w[2]=some wl[-2]=would wl[-1]=like wl[0]=to wl[1]=hear wl[2]=some pos[-2]=MD pos[-1]=VB pos[0]=TO pos[1]=VB pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLL shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=l p1[0]=t p1[1]=h p1[2]=s p2[-2]=wo p2[-1]=li p2[0]=to p2[1]=he p2[2]=so p3[-2]=wou p3[-1]=lik p3[0]= p3[1]=hea p3[2]=som p4[-2]=woul p4[-1]=like p4[0]= p4[1]=hear p4[2]=some s1[-2]=d s1[-1]=e s1[0]=o s1[1]=r s1[2]=e s2[-2]=ld s2[-1]=ke s2[0]=to s2[1]=ar s2[2]=me s3[-2]=uld s3[-1]=ike s3[0]= s3[1]=ear s3[2]=ome s4[-2]=ould s4[-1]=like s4[0]= s4[1]=hear s4[2]=some 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=would|like w[-1]|w[0]=like|to w[0]|w[1]=to|hear w[1]|w[2]=hear|some pos[-2]|pos[-1]=MD|VB pos[-1]|pos[0]=VB|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=would w[-4..-1]=like w[1..4]=hear w[1..4]=some w[1..4]=music +O w[-2]=like w[-1]=to w[0]=hear w[1]=some w[2]=music wl[-2]=like wl[-1]=to wl[0]=hear wl[1]=some wl[2]=music pos[-2]=VB pos[-1]=TO pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=h p1[1]=s p1[2]=m p2[-2]=li p2[-1]=to p2[0]=he p2[1]=so p2[2]=mu p3[-2]=lik p3[-1]= p3[0]=hea p3[1]=som p3[2]=mus p4[-2]=like p4[-1]= p4[0]=hear p4[1]=some p4[2]=musi s1[-2]=e s1[-1]=o s1[0]=r s1[1]=e s1[2]=c s2[-2]=ke s2[-1]=to s2[0]=ar s2[1]=me s2[2]=ic s3[-2]=ike s3[-1]= s3[0]=ear s3[1]=ome s3[2]=sic s4[-2]=like s4[-1]= s4[0]=hear s4[1]=some s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=like|to w[-1]|w[0]=to|hear w[0]|w[1]=hear|some w[1]|w[2]=some|music pos[-2]|pos[-1]=VB|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=would w[-4..-1]=like w[-4..-1]=to w[1..4]=some w[1..4]=music +O w[-2]=to w[-1]=hear w[0]=some w[1]=music wl[-2]=to wl[-1]=hear wl[0]=some wl[1]=music pos[-2]=TO pos[-1]=VB pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=h p1[0]=s p1[1]=m p2[-2]=to p2[-1]=he p2[0]=so p2[1]=mu p3[-2]= p3[-1]=hea p3[0]=som p3[1]=mus p4[-2]= p4[-1]=hear p4[0]=some p4[1]=musi s1[-2]=o s1[-1]=r s1[0]=e s1[1]=c s2[-2]=to s2[-1]=ar s2[0]=me s2[1]=ic s3[-2]= s3[-1]=ear s3[0]=ome s3[1]=sic s4[-2]= s4[-1]=hear s4[0]=some s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|hear w[-1]|w[0]=hear|some w[0]|w[1]=some|music pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=would w[-4..-1]=like w[-4..-1]=to w[-4..-1]=hear w[1..4]=music +O w[-2]=hear w[-1]=some w[0]=music wl[-2]=hear wl[-1]=some wl[0]=music pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=h p1[-1]=s p1[0]=m p2[-2]=he p2[-1]=so p2[0]=mu p3[-2]=hea p3[-1]=som p3[0]=mus p4[-2]=hear p4[-1]=some p4[0]=musi s1[-2]=r s1[-1]=e s1[0]=c s2[-2]=ar s2[-1]=me s2[0]=ic s3[-2]=ear s3[-1]=ome s3[0]=sic s4[-2]=hear s4[-1]=some s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=hear|some w[-1]|w[0]=some|music pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=like w[-4..-1]=to w[-4..-1]=hear w[-4..-1]=some __EOS__ + +O w[0]=play w[1]=best w[2]=Metallica wl[0]=play wl[1]=best wl[2]=metallica pos[0]=VB pos[1]=JJS pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=b p1[2]=M p2[0]=pl p2[1]=be p2[2]=Me p3[0]=pla p3[1]=bes p3[2]=Met p4[0]=play p4[1]=best p4[2]=Meta s1[0]=y s1[1]=t s1[2]=a s2[0]=ay s2[1]=st s2[2]=ca s3[0]=lay s3[1]=est s3[2]=ica s4[0]=play s4[1]=best s4[2]=lica 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|best w[1]|w[2]=best|Metallica pos[0]|pos[1]=VB|JJS pos[1]|pos[2]=JJS|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=best w[1..4]=Metallica __BOS__ +sort w[-1]=play w[0]=best w[1]=Metallica wl[-1]=play wl[0]=best wl[1]=metallica pos[-1]=VB pos[0]=JJS pos[1]=NNP chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-1]=p p1[0]=b p1[1]=M p2[-1]=pl p2[0]=be p2[1]=Me p3[-1]=pla p3[0]=bes p3[1]=Met p4[-1]=play p4[0]=best p4[1]=Meta s1[-1]=y s1[0]=t s1[1]=a s2[-1]=ay s2[0]=st s2[1]=ca s3[-1]=lay s3[0]=est s3[1]=ica s4[-1]=play s4[0]=best s4[1]=lica 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|best w[0]|w[1]=best|Metallica pos[-1]|pos[0]=VB|JJS pos[0]|pos[1]=JJS|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=Metallica +artist w[-2]=play w[-1]=best w[0]=Metallica wl[-2]=play wl[-1]=best wl[0]=metallica pos[-2]=VB pos[-1]=JJS pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=b p1[0]=M p2[-2]=pl p2[-1]=be p2[0]=Me p3[-2]=pla p3[-1]=bes p3[0]=Met p4[-2]=play p4[-1]=best p4[0]=Meta s1[-2]=y s1[-1]=t s1[0]=a s2[-2]=ay s2[-1]=st s2[0]=ca s3[-2]=lay s3[-1]=est s3[0]=ica s4[-2]=play s4[-1]=best s4[0]=lica 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|best w[-1]|w[0]=best|Metallica pos[-2]|pos[-1]=VB|JJS pos[-1]|pos[0]=JJS|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=best __EOS__ + +O w[0]=play w[1]=song w[2]=Alive wl[0]=play wl[1]=song wl[2]=alive pos[0]=VBP pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=A p2[0]=pl p2[1]=so p2[2]=Al p3[0]=pla p3[1]=son p3[2]=Ali p4[0]=play p4[1]=song p4[2]=Aliv s1[0]=y s1[1]=g s1[2]=e s2[0]=ay s2[1]=ng s2[2]=ve s3[0]=lay s3[1]=ong s3[2]=ive s4[0]=play s4[1]=song s4[2]=live 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|Alive pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=Alive __BOS__ +O w[-1]=play w[0]=song w[1]=Alive wl[-1]=play wl[0]=song wl[1]=alive pos[-1]=VBP pos[0]=NN pos[1]=NNP chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-1]=p p1[0]=s p1[1]=A p2[-1]=pl p2[0]=so p2[1]=Al p3[-1]=pla p3[0]=son p3[1]=Ali p4[-1]=play p4[0]=song p4[1]=Aliv s1[-1]=y s1[0]=g s1[1]=e s2[-1]=ay s2[0]=ng s2[1]=ve s3[-1]=lay s3[0]=ong s3[1]=ive s4[-1]=play s4[0]=song s4[1]=live 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|song w[0]|w[1]=song|Alive pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=Alive +song w[-2]=play w[-1]=song w[0]=Alive wl[-2]=play wl[-1]=song wl[0]=alive pos[-2]=VBP pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=s p1[0]=A p2[-2]=pl p2[-1]=so p2[0]=Al p3[-2]=pla p3[-1]=son p3[0]=Ali p4[-2]=play p4[-1]=song p4[0]=Aliv s1[-2]=y s1[-1]=g s1[0]=e s2[-2]=ay s2[-1]=ng s2[0]=ve s3[-2]=lay s3[-1]=ong s3[0]=ive s4[-2]=play s4[-1]=song s4[0]=live 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Alive pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song __EOS__ + +O w[0]=play w[1]=It’s w[2]=Now wl[0]=play wl[1]=it’s wl[2]=now pos[0]=VB pos[1]=PRP pos[2]=PRP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=UL’L shape[2]=ULL shaped[0]=L shaped[1]=UL’L shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=I p1[2]=N p2[0]=pl p2[1]=It p2[2]=No p3[0]=pla p3[1]=It’ p3[2]=Now p4[0]=play p4[1]=It’s p4[2]= s1[0]=y s1[1]=s s1[2]=w s2[0]=ay s2[1]=’s s2[2]=ow s3[0]=lay s3[1]=t’s s3[2]=Now s4[0]=play s4[1]=It’s s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=yes cs[2]=no w[0]|w[1]=play|It’s w[1]|w[2]=It’s|Now pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|PRP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL’L shaped[1]|shaped[2]=UL’L|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=It’s w[1..4]=Now w[1..4]=or w[1..4]=Never __BOS__ +song w[-1]=play w[0]=It’s w[1]=Now w[2]=or wl[-1]=play wl[0]=it’s wl[1]=now wl[2]=or pos[-1]=VB pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=UL’L shape[1]=ULL shape[2]=LL shaped[-1]=L shaped[0]=UL’L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=I p1[1]=N p1[2]=o p2[-1]=pl p2[0]=It p2[1]=No p2[2]=or p3[-1]=pla p3[0]=It’ p3[1]=Now p3[2]= p4[-1]=play p4[0]=It’s p4[1]= p4[2]= s1[-1]=y s1[0]=s s1[1]=w s1[2]=r s2[-1]=ay s2[0]=’s s2[1]=ow s2[2]=or s3[-1]=lay s3[0]=t’s s3[1]=Now s3[2]= s4[-1]=play s4[0]=It’s s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=yes cs[1]=no cs[2]=no w[-1]|w[0]=play|It’s w[0]|w[1]=It’s|Now w[1]|w[2]=Now|or pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL’L shaped[0]|shaped[1]=UL’L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Now w[1..4]=or w[1..4]=Never +song w[-2]=play w[-1]=It’s w[0]=Now w[1]=or w[2]=Never wl[-2]=play wl[-1]=it’s wl[0]=now wl[1]=or wl[2]=never pos[-2]=VB pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=UL’L shape[0]=ULL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL’L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=I p1[0]=N p1[1]=o p1[2]=N p2[-2]=pl p2[-1]=It p2[0]=No p2[1]=or p2[2]=Ne p3[-2]=pla p3[-1]=It’ p3[0]=Now p3[1]= p3[2]=Nev p4[-2]=play p4[-1]=It’s p4[0]= p4[1]= p4[2]=Neve s1[-2]=y s1[-1]=s s1[0]=w s1[1]=r s1[2]=r s2[-2]=ay s2[-1]=’s s2[0]=ow s2[1]=or s2[2]=er s3[-2]=lay s3[-1]=t’s s3[0]=Now s3[1]= s3[2]=ver s4[-2]=play s4[-1]=It’s s4[0]= s4[1]= s4[2]=ever 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|It’s w[-1]|w[0]=It’s|Now w[0]|w[1]=Now|or w[1]|w[2]=or|Never pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL’L shaped[-1]|shaped[0]=UL’L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=It’s w[1..4]=or w[1..4]=Never +song w[-2]=It’s w[-1]=Now w[0]=or w[1]=Never wl[-2]=it’s wl[-1]=now wl[0]=or wl[1]=never pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=PRP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=UL’L shape[-1]=ULL shape[0]=LL shape[1]=ULLLL shaped[-2]=UL’L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=I p1[-1]=N p1[0]=o p1[1]=N p2[-2]=It p2[-1]=No p2[0]=or p2[1]=Ne p3[-2]=It’ p3[-1]=Now p3[0]= p3[1]=Nev p4[-2]=It’s p4[-1]= p4[0]= p4[1]=Neve s1[-2]=s s1[-1]=w s1[0]=r s1[1]=r s2[-2]=’s s2[-1]=ow s2[0]=or s2[1]=er s3[-2]=t’s s3[-1]=Now s3[0]= s3[1]=ver s4[-2]=It’s s4[-1]= s4[0]= s4[1]=ever 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=It’s|Now w[-1]|w[0]=Now|or w[0]|w[1]=or|Never pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL’L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=It’s w[-4..-1]=Now w[1..4]=Never +song w[-2]=Now w[-1]=or w[0]=Never wl[-2]=now wl[-1]=or wl[0]=never pos[-2]=PRP pos[-1]=PRP pos[0]=PRP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=LL shape[0]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=N p1[-1]=o p1[0]=N p2[-2]=No p2[-1]=or p2[0]=Ne p3[-2]=Now p3[-1]= p3[0]=Nev p4[-2]= p4[-1]= p4[0]=Neve s1[-2]=w s1[-1]=r s1[0]=r s2[-2]=ow s2[-1]=or s2[0]=er s3[-2]=Now s3[-1]= s3[0]=ver s4[-2]= s4[-1]= s4[0]=ever 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Now|or w[-1]|w[0]=or|Never pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=It’s w[-4..-1]=Now w[-4..-1]=or __EOS__ + +O w[0]=play w[1]=Faded w[2]=by wl[0]=play wl[1]=faded wl[2]=by pos[0]=VB pos[1]=VBN pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=F p1[2]=b p2[0]=pl p2[1]=Fa p2[2]=by p3[0]=pla p3[1]=Fad p3[2]= p4[0]=play p4[1]=Fade p4[2]= s1[0]=y s1[1]=d s1[2]=y s2[0]=ay s2[1]=ed s2[2]=by s3[0]=lay s3[1]=ded s3[2]= s4[0]=play s4[1]=aded s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Faded w[1]|w[2]=Faded|by pos[0]|pos[1]=VB|VBN pos[1]|pos[2]=VBN|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Faded w[1..4]=by w[1..4]=ZHU w[1..4]=song __BOS__ +song w[-1]=play w[0]=Faded w[1]=by w[2]=ZHU wl[-1]=play wl[0]=faded wl[1]=by wl[2]=zhu pos[-1]=VB pos[0]=VBN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLL shape[1]=LL shape[2]=UUU shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=U type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllUpper p1[-1]=p p1[0]=F p1[1]=b p1[2]=Z p2[-1]=pl p2[0]=Fa p2[1]=by p2[2]=ZH p3[-1]=pla p3[0]=Fad p3[1]= p3[2]=ZHU p4[-1]=play p4[0]=Fade p4[1]= p4[2]= s1[-1]=y s1[0]=d s1[1]=y s1[2]=U s2[-1]=ay s2[0]=ed s2[1]=by s2[2]=HU s3[-1]=lay s3[0]=ded s3[1]= s3[2]=ZHU s4[-1]=play s4[0]=aded s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Faded w[0]|w[1]=Faded|by w[1]|w[2]=by|ZHU pos[-1]|pos[0]=VB|VBN pos[0]|pos[1]=VBN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|U type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllUpper w[-4..-1]=play w[1..4]=by w[1..4]=ZHU w[1..4]=song w[1..4]=on +O w[-2]=play w[-1]=Faded w[0]=by w[1]=ZHU w[2]=song wl[-2]=play wl[-1]=faded wl[0]=by wl[1]=zhu wl[2]=song pos[-2]=VB pos[-1]=VBN pos[0]=IN pos[1]=NNP pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULLLL shape[0]=LL shape[1]=UUU shape[2]=LLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=U shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllUpper type[2]=AllLetter p1[-2]=p p1[-1]=F p1[0]=b p1[1]=Z p1[2]=s p2[-2]=pl p2[-1]=Fa p2[0]=by p2[1]=ZH p2[2]=so p3[-2]=pla p3[-1]=Fad p3[0]= p3[1]=ZHU p3[2]=son p4[-2]=play p4[-1]=Fade p4[0]= p4[1]= p4[2]=song s1[-2]=y s1[-1]=d s1[0]=y s1[1]=U s1[2]=g s2[-2]=ay s2[-1]=ed s2[0]=by s2[1]=HU s2[2]=ng s3[-2]=lay s3[-1]=ded s3[0]= s3[1]=ZHU s3[2]=ong s4[-2]=play s4[-1]=aded s4[0]= s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=yes au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Faded w[-1]|w[0]=Faded|by w[0]|w[1]=by|ZHU w[1]|w[2]=ZHU|song pos[-2]|pos[-1]=VB|VBN pos[-1]|pos[0]=VBN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|AllLetter w[-4..-1]=play w[-4..-1]=Faded w[1..4]=ZHU w[1..4]=song w[1..4]=on w[1..4]=Spotify +artist w[-2]=Faded w[-1]=by w[0]=ZHU w[1]=song w[2]=on wl[-2]=faded wl[-1]=by wl[0]=zhu wl[1]=song wl[2]=on pos[-2]=VBN pos[-1]=IN pos[0]=NNP pos[1]=NN pos[2]=IN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-2]=ULLLL shape[-1]=LL shape[0]=UUU shape[1]=LLLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=U shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=F p1[-1]=b p1[0]=Z p1[1]=s p1[2]=o p2[-2]=Fa p2[-1]=by p2[0]=ZH p2[1]=so p2[2]=on p3[-2]=Fad p3[-1]= p3[0]=ZHU p3[1]=son p3[2]= p4[-2]=Fade p4[-1]= p4[0]= p4[1]=song p4[2]= s1[-2]=d s1[-1]=y s1[0]=U s1[1]=g s1[2]=n s2[-2]=ed s2[-1]=by s2[0]=HU s2[1]=ng s2[2]=on s3[-2]=ded s3[-1]= s3[0]=ZHU s3[1]=ong s3[2]= s4[-2]=aded s4[-1]= s4[0]= s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=yes au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Faded|by w[-1]|w[0]=by|ZHU w[0]|w[1]=ZHU|song w[1]|w[2]=song|on pos[-2]|pos[-1]=VBN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Faded w[-4..-1]=by w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=by w[-1]=ZHU w[0]=song w[1]=on w[2]=Spotify wl[-2]=by wl[-1]=zhu wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=IN pos[-1]=NNP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=UUU shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=b p1[-1]=Z p1[0]=s p1[1]=o p1[2]=S p2[-2]=by p2[-1]=ZH p2[0]=so p2[1]=on p2[2]=Sp p3[-2]= p3[-1]=ZHU p3[0]=son p3[1]= p3[2]=Spo p4[-2]= p4[-1]= p4[0]=song p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=U s1[0]=g s1[1]=n s1[2]=y s2[-2]=by s2[-1]=HU s2[0]=ng s2[1]=on s2[2]=fy s3[-2]= s3[-1]=ZHU s3[0]=ong s3[1]= s3[2]=ify s4[-2]= s4[-1]= s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|ZHU w[-1]|w[0]=ZHU|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Faded w[-4..-1]=by w[-4..-1]=ZHU w[1..4]=on w[1..4]=Spotify +O w[-2]=ZHU w[-1]=song w[0]=on w[1]=Spotify wl[-2]=zhu wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=UUU shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=Z p1[-1]=s p1[0]=o p1[1]=S p2[-2]=ZH p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=ZHU p3[-1]=son p3[0]= p3[1]=Spo p4[-2]= p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=U s1[-1]=g s1[0]=n s1[1]=y s2[-2]=HU s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]=ZHU s3[-1]=ong s3[0]= s3[1]=ify s4[-2]= s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=yes au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=ZHU|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=Faded w[-4..-1]=by w[-4..-1]=ZHU w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=ZHU w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=the w[2]=song wl[0]=play wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=the p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=he s2[2]=ng s3[0]=lay s3[1]=the s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song w[1..4]=Chasing w[1..4]=the __BOS__ +O w[-1]=play w[0]=the w[1]=song w[2]=Chasing wl[-1]=play wl[0]=the wl[1]=song wl[2]=chasing pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=VBG chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=s p1[2]=C p2[-1]=pl p2[0]=th p2[1]=so p2[2]=Ch p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Cha p4[-1]=play p4[0]= p4[1]=song p4[2]=Chas s1[-1]=y s1[0]=e s1[1]=g s1[2]=g s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=ng s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ing s4[-1]=play s4[0]= s4[1]=song s4[2]=sing 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Chasing pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|VBG chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Chasing w[1..4]=the w[1..4]=Dragon +O w[-2]=play w[-1]=the w[0]=song w[1]=Chasing w[2]=the wl[-2]=play wl[-1]=the wl[0]=song wl[1]=chasing wl[2]=the pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=VBG pos[2]=VBG chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p1[1]=C p1[2]=t p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=Ch p2[2]=th p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Cha p3[2]=the p4[-2]=play p4[-1]= p4[0]=song p4[1]=Chas p4[2]= s1[-2]=y s1[-1]=e s1[0]=g s1[1]=g s1[2]=e s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=ng s2[2]=he s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ing s3[2]=the s4[-2]=play s4[-1]= s4[0]=song s4[1]=sing s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Chasing w[1]|w[2]=Chasing|the pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|VBG pos[1]|pos[2]=VBG|VBG chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=Chasing w[1..4]=the w[1..4]=Dragon +song w[-2]=the w[-1]=song w[0]=Chasing w[1]=the w[2]=Dragon wl[-2]=the wl[-1]=song wl[0]=chasing wl[1]=the wl[2]=dragon pos[-2]=DT pos[-1]=NN pos[0]=VBG pos[1]=VBG pos[2]=VBG chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=LLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=s p1[0]=C p1[1]=t p1[2]=D p2[-2]=th p2[-1]=so p2[0]=Ch p2[1]=th p2[2]=Dr p3[-2]=the p3[-1]=son p3[0]=Cha p3[1]=the p3[2]=Dra p4[-2]= p4[-1]=song p4[0]=Chas p4[1]= p4[2]=Drag s1[-2]=e s1[-1]=g s1[0]=g s1[1]=e s1[2]=n s2[-2]=he s2[-1]=ng s2[0]=ng s2[1]=he s2[2]=on s3[-2]=the s3[-1]=ong s3[0]=ing s3[1]=the s3[2]=gon s4[-2]= s4[-1]=song s4[0]=sing s4[1]= s4[2]=agon 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Chasing w[0]|w[1]=Chasing|the w[1]|w[2]=the|Dragon pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|VBG pos[0]|pos[1]=VBG|VBG pos[1]|pos[2]=VBG|VBG chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[1..4]=the w[1..4]=Dragon +song w[-2]=song w[-1]=Chasing w[0]=the w[1]=Dragon wl[-2]=song wl[-1]=chasing wl[0]=the wl[1]=dragon pos[-2]=NN pos[-1]=VBG pos[0]=VBG pos[1]=VBG chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=LLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=s p1[-1]=C p1[0]=t p1[1]=D p2[-2]=so p2[-1]=Ch p2[0]=th p2[1]=Dr p3[-2]=son p3[-1]=Cha p3[0]=the p3[1]=Dra p4[-2]=song p4[-1]=Chas p4[0]= p4[1]=Drag s1[-2]=g s1[-1]=g s1[0]=e s1[1]=n s2[-2]=ng s2[-1]=ng s2[0]=he s2[1]=on s3[-2]=ong s3[-1]=ing s3[0]=the s3[1]=gon s4[-2]=song s4[-1]=sing s4[0]= s4[1]=agon 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|Chasing w[-1]|w[0]=Chasing|the w[0]|w[1]=the|Dragon pos[-2]|pos[-1]=NN|VBG pos[-1]|pos[0]=VBG|VBG pos[0]|pos[1]=VBG|VBG chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Chasing w[1..4]=Dragon +song w[-2]=Chasing w[-1]=the w[0]=Dragon wl[-2]=chasing wl[-1]=the wl[0]=dragon pos[-2]=VBG pos[-1]=VBG pos[0]=VBG chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLLL shape[-1]=LLL shape[0]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=C p1[-1]=t p1[0]=D p2[-2]=Ch p2[-1]=th p2[0]=Dr p3[-2]=Cha p3[-1]=the p3[0]=Dra p4[-2]=Chas p4[-1]= p4[0]=Drag s1[-2]=g s1[-1]=e s1[0]=n s2[-2]=ng s2[-1]=he s2[0]=on s3[-2]=ing s3[-1]=the s3[0]=gon s4[-2]=sing s4[-1]= s4[0]=agon 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Chasing|the w[-1]|w[0]=the|Dragon pos[-2]|pos[-1]=VBG|VBG pos[-1]|pos[0]=VBG|VBG chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Chasing w[-4..-1]=the __EOS__ + +O w[0]=play w[1]=album w[2]=Graceland wl[0]=play wl[1]=album wl[2]=graceland pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=G p2[0]=pl p2[1]=al p2[2]=Gr p3[0]=pla p3[1]=alb p3[2]=Gra p4[0]=play p4[1]=albu p4[2]=Grac s1[0]=y s1[1]=m s1[2]=d s2[0]=ay s2[1]=um s2[2]=nd s3[0]=lay s3[1]=bum s3[2]=and s4[0]=play s4[1]=lbum s4[2]=land 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Graceland pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Graceland w[1..4]=by w[1..4]=Paul __BOS__ +O w[-1]=play w[0]=album w[1]=Graceland w[2]=by wl[-1]=play wl[0]=album wl[1]=graceland wl[2]=by pos[-1]=VB pos[0]=NN pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=G p1[2]=b p2[-1]=pl p2[0]=al p2[1]=Gr p2[2]=by p3[-1]=pla p3[0]=alb p3[1]=Gra p3[2]= p4[-1]=play p4[0]=albu p4[1]=Grac p4[2]= s1[-1]=y s1[0]=m s1[1]=d s1[2]=y s2[-1]=ay s2[0]=um s2[1]=nd s2[2]=by s3[-1]=lay s3[0]=bum s3[1]=and s3[2]= s4[-1]=play s4[0]=lbum s4[1]=land s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Graceland w[1]|w[2]=Graceland|by pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Graceland w[1..4]=by w[1..4]=Paul w[1..4]=Simon +album w[-2]=play w[-1]=album w[0]=Graceland w[1]=by w[2]=Paul wl[-2]=play wl[-1]=album wl[0]=graceland wl[1]=by wl[2]=paul pos[-2]=VB pos[-1]=NN pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLLLLL shape[1]=LL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=G p1[1]=b p1[2]=P p2[-2]=pl p2[-1]=al p2[0]=Gr p2[1]=by p2[2]=Pa p3[-2]=pla p3[-1]=alb p3[0]=Gra p3[1]= p3[2]=Pau p4[-2]=play p4[-1]=albu p4[0]=Grac p4[1]= p4[2]=Paul s1[-2]=y s1[-1]=m s1[0]=d s1[1]=y s1[2]=l s2[-2]=ay s2[-1]=um s2[0]=nd s2[1]=by s2[2]=ul s3[-2]=lay s3[-1]=bum s3[0]=and s3[1]= s3[2]=aul s4[-2]=play s4[-1]=lbum s4[0]=land s4[1]= s4[2]=Paul 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Graceland w[0]|w[1]=Graceland|by w[1]|w[2]=by|Paul pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=by w[1..4]=Paul w[1..4]=Simon +O w[-2]=album w[-1]=Graceland w[0]=by w[1]=Paul w[2]=Simon wl[-2]=album wl[-1]=graceland wl[0]=by wl[1]=paul wl[2]=simon pos[-2]=NN pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLLL shape[-1]=ULLLLLLLL shape[0]=LL shape[1]=ULLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=a p1[-1]=G p1[0]=b p1[1]=P p1[2]=S p2[-2]=al p2[-1]=Gr p2[0]=by p2[1]=Pa p2[2]=Si p3[-2]=alb p3[-1]=Gra p3[0]= p3[1]=Pau p3[2]=Sim p4[-2]=albu p4[-1]=Grac p4[0]= p4[1]=Paul p4[2]=Simo s1[-2]=m s1[-1]=d s1[0]=y s1[1]=l s1[2]=n s2[-2]=um s2[-1]=nd s2[0]=by s2[1]=ul s2[2]=on s3[-2]=bum s3[-1]=and s3[0]= s3[1]=aul s3[2]=mon s4[-2]=lbum s4[-1]=land s4[0]= s4[1]=Paul s4[2]=imon 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Graceland w[-1]|w[0]=Graceland|by w[0]|w[1]=by|Paul w[1]|w[2]=Paul|Simon pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Graceland w[1..4]=Paul w[1..4]=Simon +artist w[-2]=Graceland w[-1]=by w[0]=Paul w[1]=Simon wl[-2]=graceland wl[-1]=by wl[0]=paul wl[1]=simon pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLLLL shape[-1]=LL shape[0]=ULLL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=G p1[-1]=b p1[0]=P p1[1]=S p2[-2]=Gr p2[-1]=by p2[0]=Pa p2[1]=Si p3[-2]=Gra p3[-1]= p3[0]=Pau p3[1]=Sim p4[-2]=Grac p4[-1]= p4[0]=Paul p4[1]=Simo s1[-2]=d s1[-1]=y s1[0]=l s1[1]=n s2[-2]=nd s2[-1]=by s2[0]=ul s2[1]=on s3[-2]=and s3[-1]= s3[0]=aul s3[1]=mon s4[-2]=land s4[-1]= s4[0]=Paul s4[1]=imon 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Graceland|by w[-1]|w[0]=by|Paul w[0]|w[1]=Paul|Simon pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Graceland w[-4..-1]=by w[1..4]=Simon +artist w[-2]=by w[-1]=Paul w[0]=Simon wl[-2]=by wl[-1]=paul wl[0]=simon pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=P p1[0]=S p2[-2]=by p2[-1]=Pa p2[0]=Si p3[-2]= p3[-1]=Pau p3[0]=Sim p4[-2]= p4[-1]=Paul p4[0]=Simo s1[-2]=y s1[-1]=l s1[0]=n s2[-2]=by s2[-1]=ul s2[0]=on s3[-2]= s3[-1]=aul s3[0]=mon s4[-2]= s4[-1]=Paul s4[0]=imon 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Paul w[-1]|w[0]=Paul|Simon pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=album w[-4..-1]=Graceland w[-4..-1]=by w[-4..-1]=Paul __EOS__ + +O w[0]=let w[1]=me w[2]=hear wl[0]=let wl[1]=me wl[2]=hear pos[0]=VB pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=l p1[1]=m p1[2]=h p2[0]=le p2[1]=me p2[2]=he p3[0]=let p3[1]= p3[2]=hea p4[0]= p4[1]= p4[2]=hear s1[0]=t s1[1]=e s1[2]=r s2[0]=et s2[1]=me s2[2]=ar s3[0]=let s3[1]= s3[2]=ear s4[0]= s4[1]= s4[2]=hear 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=let|me w[1]|w[2]=me|hear pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=me w[1..4]=hear w[1..4]=something w[1..4]=from __BOS__ +O w[-1]=let w[0]=me w[1]=hear w[2]=something wl[-1]=let wl[0]=me wl[1]=hear wl[2]=something pos[-1]=VB pos[0]=PRP pos[1]=VB pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LLLL shape[2]=LLLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=l p1[0]=m p1[1]=h p1[2]=s p2[-1]=le p2[0]=me p2[1]=he p2[2]=so p3[-1]=let p3[0]= p3[1]=hea p3[2]=som p4[-1]= p4[0]= p4[1]=hear p4[2]=some s1[-1]=t s1[0]=e s1[1]=r s1[2]=g s2[-1]=et s2[0]=me s2[1]=ar s2[2]=ng s3[-1]=let s3[0]= s3[1]=ear s3[2]=ing s4[-1]= s4[0]= s4[1]=hear s4[2]=hing 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=let|me w[0]|w[1]=me|hear w[1]|w[2]=hear|something pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=let w[1..4]=hear w[1..4]=something w[1..4]=from w[1..4]=George +O w[-2]=let w[-1]=me w[0]=hear w[1]=something w[2]=from wl[-2]=let wl[-1]=me wl[0]=hear wl[1]=something wl[2]=from pos[-2]=VB pos[-1]=PRP pos[0]=VB pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLLLLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=m p1[0]=h p1[1]=s p1[2]=f p2[-2]=le p2[-1]=me p2[0]=he p2[1]=so p2[2]=fr p3[-2]=let p3[-1]= p3[0]=hea p3[1]=som p3[2]=fro p4[-2]= p4[-1]= p4[0]=hear p4[1]=some p4[2]=from s1[-2]=t s1[-1]=e s1[0]=r s1[1]=g s1[2]=m s2[-2]=et s2[-1]=me s2[0]=ar s2[1]=ng s2[2]=om s3[-2]=let s3[-1]= s3[0]=ear s3[1]=ing s3[2]=rom s4[-2]= s4[-1]= s4[0]=hear s4[1]=hing s4[2]=from 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=let|me w[-1]|w[0]=me|hear w[0]|w[1]=hear|something w[1]|w[2]=something|from pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=let w[-4..-1]=me w[1..4]=something w[1..4]=from w[1..4]=George w[1..4]=Strait +O w[-2]=me w[-1]=hear w[0]=something w[1]=from w[2]=George wl[-2]=me wl[-1]=hear wl[0]=something wl[1]=from wl[2]=george pos[-2]=PRP pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLLLLLL shape[1]=LLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=m p1[-1]=h p1[0]=s p1[1]=f p1[2]=G p2[-2]=me p2[-1]=he p2[0]=so p2[1]=fr p2[2]=Ge p3[-2]= p3[-1]=hea p3[0]=som p3[1]=fro p3[2]=Geo p4[-2]= p4[-1]=hear p4[0]=some p4[1]=from p4[2]=Geor s1[-2]=e s1[-1]=r s1[0]=g s1[1]=m s1[2]=e s2[-2]=me s2[-1]=ar s2[0]=ng s2[1]=om s2[2]=ge s3[-2]= s3[-1]=ear s3[0]=ing s3[1]=rom s3[2]=rge s4[-2]= s4[-1]=hear s4[0]=hing s4[1]=from s4[2]=orge 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=me|hear w[-1]|w[0]=hear|something w[0]|w[1]=something|from w[1]|w[2]=from|George pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=let w[-4..-1]=me w[-4..-1]=hear w[1..4]=from w[1..4]=George w[1..4]=Strait +O w[-2]=hear w[-1]=something w[0]=from w[1]=George w[2]=Strait wl[-2]=hear wl[-1]=something wl[0]=from wl[1]=george wl[2]=strait pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLLLLLL shape[0]=LLLL shape[1]=ULLLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=h p1[-1]=s p1[0]=f p1[1]=G p1[2]=S p2[-2]=he p2[-1]=so p2[0]=fr p2[1]=Ge p2[2]=St p3[-2]=hea p3[-1]=som p3[0]=fro p3[1]=Geo p3[2]=Str p4[-2]=hear p4[-1]=some p4[0]=from p4[1]=Geor p4[2]=Stra s1[-2]=r s1[-1]=g s1[0]=m s1[1]=e s1[2]=t s2[-2]=ar s2[-1]=ng s2[0]=om s2[1]=ge s2[2]=it s3[-2]=ear s3[-1]=ing s3[0]=rom s3[1]=rge s3[2]=ait s4[-2]=hear s4[-1]=hing s4[0]=from s4[1]=orge s4[2]=rait 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=hear|something w[-1]|w[0]=something|from w[0]|w[1]=from|George w[1]|w[2]=George|Strait pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=let w[-4..-1]=me w[-4..-1]=hear w[-4..-1]=something w[1..4]=George w[1..4]=Strait +artist w[-2]=something w[-1]=from w[0]=George w[1]=Strait wl[-2]=something wl[-1]=from wl[0]=george wl[1]=strait pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLLLLL shape[-1]=LLLL shape[0]=ULLLLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=f p1[0]=G p1[1]=S p2[-2]=so p2[-1]=fr p2[0]=Ge p2[1]=St p3[-2]=som p3[-1]=fro p3[0]=Geo p3[1]=Str p4[-2]=some p4[-1]=from p4[0]=Geor p4[1]=Stra s1[-2]=g s1[-1]=m s1[0]=e s1[1]=t s2[-2]=ng s2[-1]=om s2[0]=ge s2[1]=it s3[-2]=ing s3[-1]=rom s3[0]=rge s3[1]=ait s4[-2]=hing s4[-1]=from s4[0]=orge s4[1]=rait 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=something|from w[-1]|w[0]=from|George w[0]|w[1]=George|Strait pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=me w[-4..-1]=hear w[-4..-1]=something w[-4..-1]=from w[1..4]=Strait +artist w[-2]=from w[-1]=George w[0]=Strait wl[-2]=from wl[-1]=george wl[0]=strait pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=f p1[-1]=G p1[0]=S p2[-2]=fr p2[-1]=Ge p2[0]=St p3[-2]=fro p3[-1]=Geo p3[0]=Str p4[-2]=from p4[-1]=Geor p4[0]=Stra s1[-2]=m s1[-1]=e s1[0]=t s2[-2]=om s2[-1]=ge s2[0]=it s3[-2]=rom s3[-1]=rge s3[0]=ait s4[-2]=from s4[-1]=orge s4[0]=rait 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=from|George w[-1]|w[0]=George|Strait pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=hear w[-4..-1]=something w[-4..-1]=from w[-4..-1]=George __EOS__ + +artist w[0]=Bob w[1]=Marley w[2]=play wl[0]=bob wl[1]=marley wl[2]=play pos[0]=NNP pos[1]=NNP pos[2]=VB chk[0]=I chk[1]=I chk[2]=O shape[0]=ULL shape[1]=ULLLLL shape[2]=LLLL shaped[0]=UL shaped[1]=UL shaped[2]=L type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[0]=B p1[1]=M p1[2]=p p2[0]=Bo p2[1]=Ma p2[2]=pl p3[0]=Bob p3[1]=Mar p3[2]=pla p4[0]= p4[1]=Marl p4[2]=play s1[0]=b s1[1]=y s1[2]=y s2[0]=ob s2[1]=ey s2[2]=ay s3[0]=Bob s3[1]=ley s3[2]=lay s4[0]= s4[1]=rley s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=Bob|Marley w[1]|w[2]=Marley|play pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|VB chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Marley w[1..4]=play w[1..4]=the w[1..4]=song __BOS__ +artist w[-1]=Bob w[0]=Marley w[1]=play w[2]=the wl[-1]=bob wl[0]=marley wl[1]=play wl[2]=the pos[-1]=NNP pos[0]=NNP pos[1]=VB pos[2]=DT chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-1]=ULL shape[0]=ULLLLL shape[1]=LLLL shape[2]=LLL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=B p1[0]=M p1[1]=p p1[2]=t p2[-1]=Bo p2[0]=Ma p2[1]=pl p2[2]=th p3[-1]=Bob p3[0]=Mar p3[1]=pla p3[2]=the p4[-1]= p4[0]=Marl p4[1]=play p4[2]= s1[-1]=b s1[0]=y s1[1]=y s1[2]=e s2[-1]=ob s2[0]=ey s2[1]=ay s2[2]=he s3[-1]=Bob s3[0]=ley s3[1]=lay s3[2]=the s4[-1]= s4[0]=rley s4[1]=play s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=Bob|Marley w[0]|w[1]=Marley|play w[1]|w[2]=play|the pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=Bob w[1..4]=play w[1..4]=the w[1..4]=song w[1..4]=please +O w[-2]=Bob w[-1]=Marley w[0]=play w[1]=the w[2]=song wl[-2]=bob wl[-1]=marley wl[0]=play wl[1]=the wl[2]=song pos[-2]=NNP pos[-1]=NNP pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=O shape[-2]=ULL shape[-1]=ULLLLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=B p1[-1]=M p1[0]=p p1[1]=t p1[2]=s p2[-2]=Bo p2[-1]=Ma p2[0]=pl p2[1]=th p2[2]=so p3[-2]=Bob p3[-1]=Mar p3[0]=pla p3[1]=the p3[2]=son p4[-2]= p4[-1]=Marl p4[0]=play p4[1]= p4[2]=song s1[-2]=b s1[-1]=y s1[0]=y s1[1]=e s1[2]=g s2[-2]=ob s2[-1]=ey s2[0]=ay s2[1]=he s2[2]=ng s3[-2]=Bob s3[-1]=ley s3[0]=lay s3[1]=the s3[2]=ong s4[-2]= s4[-1]=rley s4[0]=play s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Bob|Marley w[-1]|w[0]=Marley|play w[0]|w[1]=play|the w[1]|w[2]=the|song pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=Bob w[-4..-1]=Marley w[1..4]=the w[1..4]=song w[1..4]=please +O w[-2]=Marley w[-1]=play w[0]=the w[1]=song w[2]=please wl[-2]=marley wl[-1]=play wl[0]=the wl[1]=song wl[2]=please pos[-2]=NNP pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NN chk[-2]=I chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=ULLLLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=M p1[-1]=p p1[0]=t p1[1]=s p1[2]=p p2[-2]=Ma p2[-1]=pl p2[0]=th p2[1]=so p2[2]=pl p3[-2]=Mar p3[-1]=pla p3[0]=the p3[1]=son p3[2]=ple p4[-2]=Marl p4[-1]=play p4[0]= p4[1]=song p4[2]=plea s1[-2]=y s1[-1]=y s1[0]=e s1[1]=g s1[2]=e s2[-2]=ey s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=se s3[-2]=ley s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ase s4[-2]=rley s4[-1]=play s4[0]= s4[1]=song s4[2]=ease 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Marley|play w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|please pos[-2]|pos[-1]=NNP|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=Bob w[-4..-1]=Marley w[-4..-1]=play w[1..4]=song w[1..4]=please +O w[-2]=play w[-1]=the w[0]=song w[1]=please wl[-2]=play wl[-1]=the wl[0]=song wl[1]=please pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p1[1]=p p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=pl p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=ple p4[-2]=play p4[-1]= p4[0]=song p4[1]=plea s1[-2]=y s1[-1]=e s1[0]=g s1[1]=e s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=se s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ase s4[-2]=play s4[-1]= s4[0]=song s4[1]=ease 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|please pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=Bob w[-4..-1]=Marley w[-4..-1]=play w[-4..-1]=the w[1..4]=please +O w[-2]=the w[-1]=song w[0]=please wl[-2]=the wl[-1]=song wl[0]=please pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=s p1[0]=p p2[-2]=th p2[-1]=so p2[0]=pl p3[-2]=the p3[-1]=son p3[0]=ple p4[-2]= p4[-1]=song p4[0]=plea s1[-2]=e s1[-1]=g s1[0]=e s2[-2]=he s2[-1]=ng s2[0]=se s3[-2]=the s3[-1]=ong s3[0]=ase s4[-2]= s4[-1]=song s4[0]=ease 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|please pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=Marley w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song __EOS__ + +O w[0]=play w[1]=album w[2]=Power wl[0]=play wl[1]=album wl[2]=power pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=P p2[0]=pl p2[1]=al p2[2]=Po p3[0]=pla p3[1]=alb p3[2]=Pow p4[0]=play p4[1]=albu p4[2]=Powe s1[0]=y s1[1]=m s1[2]=r s2[0]=ay s2[1]=um s2[2]=er s3[0]=lay s3[1]=bum s3[2]=wer s4[0]=play s4[1]=lbum s4[2]=ower 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Power pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Power w[1..4]=Corruption w[1..4]=Lies __BOS__ +O w[-1]=play w[0]=album w[1]=Power w[2]=Corruption wl[-1]=play wl[0]=album wl[1]=power wl[2]=corruption pos[-1]=VB pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLL shape[2]=ULLLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=a p1[1]=P p1[2]=C p2[-1]=pl p2[0]=al p2[1]=Po p2[2]=Co p3[-1]=pla p3[0]=alb p3[1]=Pow p3[2]=Cor p4[-1]=play p4[0]=albu p4[1]=Powe p4[2]=Corr s1[-1]=y s1[0]=m s1[1]=r s1[2]=n s2[-1]=ay s2[0]=um s2[1]=er s2[2]=on s3[-1]=lay s3[0]=bum s3[1]=wer s3[2]=ion s4[-1]=play s4[0]=lbum s4[1]=ower s4[2]=tion 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Power w[1]|w[2]=Power|Corruption pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Power w[1..4]=Corruption w[1..4]=Lies +album w[-2]=play w[-1]=album w[0]=Power w[1]=Corruption w[2]=Lies wl[-2]=play wl[-1]=album wl[0]=power wl[1]=corruption wl[2]=lies pos[-2]=VB pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLL shape[1]=ULLLLLLLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=P p1[1]=C p1[2]=L p2[-2]=pl p2[-1]=al p2[0]=Po p2[1]=Co p2[2]=Li p3[-2]=pla p3[-1]=alb p3[0]=Pow p3[1]=Cor p3[2]=Lie p4[-2]=play p4[-1]=albu p4[0]=Powe p4[1]=Corr p4[2]=Lies s1[-2]=y s1[-1]=m s1[0]=r s1[1]=n s1[2]=s s2[-2]=ay s2[-1]=um s2[0]=er s2[1]=on s2[2]=es s3[-2]=lay s3[-1]=bum s3[0]=wer s3[1]=ion s3[2]=ies s4[-2]=play s4[-1]=lbum s4[0]=ower s4[1]=tion s4[2]=Lies 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Power w[0]|w[1]=Power|Corruption w[1]|w[2]=Corruption|Lies pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=Corruption w[1..4]=Lies +album w[-2]=album w[-1]=Power w[0]=Corruption w[1]=Lies wl[-2]=album wl[-1]=power wl[0]=corruption wl[1]=lies pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLLL shape[-1]=ULLLL shape[0]=ULLLLLLLLL shape[1]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=a p1[-1]=P p1[0]=C p1[1]=L p2[-2]=al p2[-1]=Po p2[0]=Co p2[1]=Li p3[-2]=alb p3[-1]=Pow p3[0]=Cor p3[1]=Lie p4[-2]=albu p4[-1]=Powe p4[0]=Corr p4[1]=Lies s1[-2]=m s1[-1]=r s1[0]=n s1[1]=s s2[-2]=um s2[-1]=er s2[0]=on s2[1]=es s3[-2]=bum s3[-1]=wer s3[0]=ion s3[1]=ies s4[-2]=lbum s4[-1]=ower s4[0]=tion s4[1]=Lies 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=album|Power w[-1]|w[0]=Power|Corruption w[0]|w[1]=Corruption|Lies pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Power w[1..4]=Lies +album w[-2]=Power w[-1]=Corruption w[0]=Lies wl[-2]=power wl[-1]=corruption wl[0]=lies pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLL shape[-1]=ULLLLLLLLL shape[0]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=P p1[-1]=C p1[0]=L p2[-2]=Po p2[-1]=Co p2[0]=Li p3[-2]=Pow p3[-1]=Cor p3[0]=Lie p4[-2]=Powe p4[-1]=Corr p4[0]=Lies s1[-2]=r s1[-1]=n s1[0]=s s2[-2]=er s2[-1]=on s2[0]=es s3[-2]=wer s3[-1]=ion s3[0]=ies s4[-2]=ower s4[-1]=tion s4[0]=Lies 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Power|Corruption w[-1]|w[0]=Corruption|Lies pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Power w[-4..-1]=Corruption __EOS__ + +O w[0]=play w[1]=music w[2]=by wl[0]=play wl[1]=music wl[2]=by pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=b p2[0]=pl p2[1]=mu p2[2]=by p3[0]=pla p3[1]=mus p3[2]= p4[0]=play p4[1]=musi p4[2]= s1[0]=y s1[1]=c s1[2]=y s2[0]=ay s2[1]=ic s2[2]=by s3[0]=lay s3[1]=sic s3[2]= s4[0]=play s4[1]=usic s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|music w[1]|w[2]=music|by pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=music w[1..4]=by w[1..4]=Marco w[1..4]=Mengoni __BOS__ +O w[-1]=play w[0]=music w[1]=by w[2]=Marco wl[-1]=play wl[0]=music wl[1]=by wl[2]=marco pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=m p1[1]=b p1[2]=M p2[-1]=pl p2[0]=mu p2[1]=by p2[2]=Ma p3[-1]=pla p3[0]=mus p3[1]= p3[2]=Mar p4[-1]=play p4[0]=musi p4[1]= p4[2]=Marc s1[-1]=y s1[0]=c s1[1]=y s1[2]=o s2[-1]=ay s2[0]=ic s2[1]=by s2[2]=co s3[-1]=lay s3[0]=sic s3[1]= s3[2]=rco s4[-1]=play s4[0]=usic s4[1]= s4[2]=arco 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|music w[0]|w[1]=music|by w[1]|w[2]=by|Marco pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Marco w[1..4]=Mengoni +O w[-2]=play w[-1]=music w[0]=by w[1]=Marco w[2]=Mengoni wl[-2]=play wl[-1]=music wl[0]=by wl[1]=marco wl[2]=mengoni pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=m p1[0]=b p1[1]=M p1[2]=M p2[-2]=pl p2[-1]=mu p2[0]=by p2[1]=Ma p2[2]=Me p3[-2]=pla p3[-1]=mus p3[0]= p3[1]=Mar p3[2]=Men p4[-2]=play p4[-1]=musi p4[0]= p4[1]=Marc p4[2]=Meng s1[-2]=y s1[-1]=c s1[0]=y s1[1]=o s1[2]=i s2[-2]=ay s2[-1]=ic s2[0]=by s2[1]=co s2[2]=ni s3[-2]=lay s3[-1]=sic s3[0]= s3[1]=rco s3[2]=oni s4[-2]=play s4[-1]=usic s4[0]= s4[1]=arco s4[2]=goni 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|music w[-1]|w[0]=music|by w[0]|w[1]=by|Marco w[1]|w[2]=Marco|Mengoni pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[1..4]=Marco w[1..4]=Mengoni +artist w[-2]=music w[-1]=by w[0]=Marco w[1]=Mengoni wl[-2]=music wl[-1]=by wl[0]=marco wl[1]=mengoni pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=m p1[-1]=b p1[0]=M p1[1]=M p2[-2]=mu p2[-1]=by p2[0]=Ma p2[1]=Me p3[-2]=mus p3[-1]= p3[0]=Mar p3[1]=Men p4[-2]=musi p4[-1]= p4[0]=Marc p4[1]=Meng s1[-2]=c s1[-1]=y s1[0]=o s1[1]=i s2[-2]=ic s2[-1]=by s2[0]=co s2[1]=ni s3[-2]=sic s3[-1]= s3[0]=rco s3[1]=oni s4[-2]=usic s4[-1]= s4[0]=arco s4[1]=goni 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=music|by w[-1]|w[0]=by|Marco w[0]|w[1]=Marco|Mengoni pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[-4..-1]=by w[1..4]=Mengoni +artist w[-2]=by w[-1]=Marco w[0]=Mengoni wl[-2]=by wl[-1]=marco wl[0]=mengoni pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=M p1[0]=M p2[-2]=by p2[-1]=Ma p2[0]=Me p3[-2]= p3[-1]=Mar p3[0]=Men p4[-2]= p4[-1]=Marc p4[0]=Meng s1[-2]=y s1[-1]=o s1[0]=i s2[-2]=by s2[-1]=co s2[0]=ni s3[-2]= s3[-1]=rco s3[0]=oni s4[-2]= s4[-1]=arco s4[0]=goni 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Marco w[-1]|w[0]=Marco|Mengoni pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[-4..-1]=by w[-4..-1]=Marco __EOS__ + +O w[0]=play w[1]=Hello wl[0]=play wl[1]=hello pos[0]=VB pos[1]=UH chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=ULLLL shaped[0]=L shaped[1]=UL type[0]=AllLetter type[1]=InitUpper p1[0]=p p1[1]=H p2[0]=pl p2[1]=He p3[0]=pla p3[1]=Hel p4[0]=play p4[1]=Hell s1[0]=y s1[1]=o s2[0]=ay s2[1]=lo s3[0]=lay s3[1]=llo s4[0]=play s4[1]=ello 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|Hello pos[0]|pos[1]=VB|UH chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|UL type[0]|type[1]=AllLetter|InitUpper w[1..4]=Hello __BOS__ +song w[-1]=play w[0]=Hello wl[-1]=play wl[0]=hello pos[-1]=VB pos[0]=UH chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=ULLLL shaped[-1]=L shaped[0]=UL type[-1]=AllLetter type[0]=InitUpper p1[-1]=p p1[0]=H p2[-1]=pl p2[0]=He p3[-1]=pla p3[0]=Hel p4[-1]=play p4[0]=Hell s1[-1]=y s1[0]=o s2[-1]=ay s2[0]=lo s3[-1]=lay s3[0]=llo s4[-1]=play s4[0]=ello 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|Hello pos[-1]|pos[0]=VB|UH chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|UL type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play __EOS__ + +O w[0]=start w[1]=up w[2]=the wl[0]=start wl[1]=up wl[2]=the pos[0]=VB pos[1]=RP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=u p1[2]=t p2[0]=st p2[1]=up p2[2]=th p3[0]=sta p3[1]= p3[2]=the p4[0]=star p4[1]= p4[2]= s1[0]=t s1[1]=p s1[2]=e s2[0]=rt s2[1]=up s2[2]=he s3[0]=art s3[1]= s3[2]=the s4[0]=tart s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=start|up w[1]|w[2]=up|the pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=up w[1..4]=the w[1..4]=track w[1..4]=Come __BOS__ +O w[-1]=start w[0]=up w[1]=the w[2]=track wl[-1]=start wl[0]=up wl[1]=the wl[2]=track pos[-1]=VB pos[0]=RP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLL shape[0]=LL shape[1]=LLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=s p1[0]=u p1[1]=t p1[2]=t p2[-1]=st p2[0]=up p2[1]=th p2[2]=tr p3[-1]=sta p3[0]= p3[1]=the p3[2]=tra p4[-1]=star p4[0]= p4[1]= p4[2]=trac s1[-1]=t s1[0]=p s1[1]=e s1[2]=k s2[-1]=rt s2[0]=up s2[1]=he s2[2]=ck s3[-1]=art s3[0]= s3[1]=the s3[2]=ack s4[-1]=tart s4[0]= s4[1]= s4[2]=rack 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=start|up w[0]|w[1]=up|the w[1]|w[2]=the|track pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=start w[1..4]=the w[1..4]=track w[1..4]=Come w[1..4]=Together +O w[-2]=start w[-1]=up w[0]=the w[1]=track w[2]=Come wl[-2]=start wl[-1]=up wl[0]=the wl[1]=track wl[2]=come pos[-2]=VB pos[-1]=RP pos[0]=DT pos[1]=NN pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=u p1[0]=t p1[1]=t p1[2]=C p2[-2]=st p2[-1]=up p2[0]=th p2[1]=tr p2[2]=Co p3[-2]=sta p3[-1]= p3[0]=the p3[1]=tra p3[2]=Com p4[-2]=star p4[-1]= p4[0]= p4[1]=trac p4[2]=Come s1[-2]=t s1[-1]=p s1[0]=e s1[1]=k s1[2]=e s2[-2]=rt s2[-1]=up s2[0]=he s2[1]=ck s2[2]=me s3[-2]=art s3[-1]= s3[0]=the s3[1]=ack s3[2]=ome s4[-2]=tart s4[-1]= s4[0]= s4[1]=rack s4[2]=Come 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=start|up w[-1]|w[0]=up|the w[0]|w[1]=the|track w[1]|w[2]=track|Come pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=start w[-4..-1]=up w[1..4]=track w[1..4]=Come w[1..4]=Together +O w[-2]=up w[-1]=the w[0]=track w[1]=Come w[2]=Together wl[-2]=up wl[-1]=the wl[0]=track wl[1]=come wl[2]=together pos[-2]=RP pos[-1]=DT pos[0]=NN pos[1]=VB pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=LLL shape[0]=LLLLL shape[1]=ULLL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=u p1[-1]=t p1[0]=t p1[1]=C p1[2]=T p2[-2]=up p2[-1]=th p2[0]=tr p2[1]=Co p2[2]=To p3[-2]= p3[-1]=the p3[0]=tra p3[1]=Com p3[2]=Tog p4[-2]= p4[-1]= p4[0]=trac p4[1]=Come p4[2]=Toge s1[-2]=p s1[-1]=e s1[0]=k s1[1]=e s1[2]=r s2[-2]=up s2[-1]=he s2[0]=ck s2[1]=me s2[2]=er s3[-2]= s3[-1]=the s3[0]=ack s3[1]=ome s3[2]=her s4[-2]= s4[-1]= s4[0]=rack s4[1]=Come s4[2]=ther 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=up|the w[-1]|w[0]=the|track w[0]|w[1]=track|Come w[1]|w[2]=Come|Together pos[-2]|pos[-1]=RP|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|VB pos[1]|pos[2]=VB|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=start w[-4..-1]=up w[-4..-1]=the w[1..4]=Come w[1..4]=Together +song w[-2]=the w[-1]=track w[0]=Come w[1]=Together wl[-2]=the wl[-1]=track wl[0]=come wl[1]=together pos[-2]=DT pos[-1]=NN pos[0]=VB pos[1]=VB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLL shape[-1]=LLLLL shape[0]=ULLL shape[1]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=t p1[-1]=t p1[0]=C p1[1]=T p2[-2]=th p2[-1]=tr p2[0]=Co p2[1]=To p3[-2]=the p3[-1]=tra p3[0]=Com p3[1]=Tog p4[-2]= p4[-1]=trac p4[0]=Come p4[1]=Toge s1[-2]=e s1[-1]=k s1[0]=e s1[1]=r s2[-2]=he s2[-1]=ck s2[0]=me s2[1]=er s3[-2]=the s3[-1]=ack s3[0]=ome s3[1]=her s4[-2]= s4[-1]=rack s4[0]=Come s4[1]=ther 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=the|track w[-1]|w[0]=track|Come w[0]|w[1]=Come|Together pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|VB pos[0]|pos[1]=VB|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=start w[-4..-1]=up w[-4..-1]=the w[-4..-1]=track w[1..4]=Together +song w[-2]=track w[-1]=Come w[0]=Together wl[-2]=track wl[-1]=come wl[0]=together pos[-2]=NN pos[-1]=VB pos[0]=VB chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLLL shape[-1]=ULLL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=t p1[-1]=C p1[0]=T p2[-2]=tr p2[-1]=Co p2[0]=To p3[-2]=tra p3[-1]=Com p3[0]=Tog p4[-2]=trac p4[-1]=Come p4[0]=Toge s1[-2]=k s1[-1]=e s1[0]=r s2[-2]=ck s2[-1]=me s2[0]=er s3[-2]=ack s3[-1]=ome s3[0]=her s4[-2]=rack s4[-1]=Come s4[0]=ther 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=track|Come w[-1]|w[0]=Come|Together pos[-2]|pos[-1]=NN|VB pos[-1]|pos[0]=VB|VB chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=up w[-4..-1]=the w[-4..-1]=track w[-4..-1]=Come __EOS__ + +O w[0]=play w[1]=jazz wl[0]=play wl[1]=jazz pos[0]=VB pos[1]=NN chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=j p2[0]=pl p2[1]=ja p3[0]=pla p3[1]=jaz p4[0]=play p4[1]=jazz s1[0]=y s1[1]=z s2[0]=ay s2[1]=zz s3[0]=lay s3[1]=azz s4[0]=play s4[1]=jazz 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|jazz pos[0]|pos[1]=VB|NN chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=jazz __BOS__ +genre w[-1]=play w[0]=jazz wl[-1]=play wl[0]=jazz pos[-1]=VB pos[0]=NN chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=j p2[-1]=pl p2[0]=ja p3[-1]=pla p3[0]=jaz p4[-1]=play p4[0]=jazz s1[-1]=y s1[0]=z s2[-1]=ay s2[0]=zz s3[-1]=lay s3[0]=azz s4[-1]=play s4[0]=jazz 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|jazz pos[-1]|pos[0]=VB|NN chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play __EOS__ + +O w[0]=play w[1]=a w[2]=pop wl[0]=play wl[1]=a wl[2]=pop pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=L shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=p p2[0]=pl p2[1]= p2[2]=po p3[0]=pla p3[1]= p3[2]=pop p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=a s1[2]=p s2[0]=ay s2[1]= s2[2]=op s3[0]=lay s3[1]= s3[2]=pop s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|pop pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=pop w[1..4]=song __BOS__ +O w[-1]=play w[0]=a w[1]=pop w[2]=song wl[-1]=play wl[0]=a wl[1]=pop wl[2]=song pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=L shape[1]=LLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=p p1[2]=s p2[-1]=pl p2[0]= p2[1]=po p2[2]=so p3[-1]=pla p3[0]= p3[1]=pop p3[2]=son p4[-1]=play p4[0]= p4[1]= p4[2]=song s1[-1]=y s1[0]=a s1[1]=p s1[2]=g s2[-1]=ay s2[0]= s2[1]=op s2[2]=ng s3[-1]=lay s3[0]= s3[1]=pop s3[2]=ong s4[-1]=play s4[0]= s4[1]= s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|pop w[1]|w[2]=pop|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=pop w[1..4]=song +genre w[-2]=play w[-1]=a w[0]=pop w[1]=song wl[-2]=play wl[-1]=a wl[0]=pop wl[1]=song pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=a p1[0]=p p1[1]=s p2[-2]=pl p2[-1]= p2[0]=po p2[1]=so p3[-2]=pla p3[-1]= p3[0]=pop p3[1]=son p4[-2]=play p4[-1]= p4[0]= p4[1]=song s1[-2]=y s1[-1]=a s1[0]=p s1[1]=g s2[-2]=ay s2[-1]= s2[0]=op s2[1]=ng s3[-2]=lay s3[-1]= s3[0]=pop s3[1]=ong s4[-2]=play s4[-1]= s4[0]= s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|pop w[0]|w[1]=pop|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[1..4]=song +O w[-2]=a w[-1]=pop w[0]=song wl[-2]=a wl[-1]=pop wl[0]=song pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=L shape[-1]=LLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=a p1[-1]=p p1[0]=s p2[-2]= p2[-1]=po p2[0]=so p3[-2]= p3[-1]=pop p3[0]=son p4[-2]= p4[-1]= p4[0]=song s1[-2]=a s1[-1]=p s1[0]=g s2[-2]= s2[-1]=op s2[0]=ng s3[-2]= s3[-1]=pop s3[0]=ong s4[-2]= s4[-1]= s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=a|pop w[-1]|w[0]=pop|song pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=pop __EOS__ + +O w[0]=play w[1]=Bad w[2]=from wl[0]=play wl[1]=bad wl[2]=from pos[0]=VB pos[1]=JJ pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULL shape[2]=LLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=B p1[2]=f p2[0]=pl p2[1]=Ba p2[2]=fr p3[0]=pla p3[1]=Bad p3[2]=fro p4[0]=play p4[1]= p4[2]=from s1[0]=y s1[1]=d s1[2]=m s2[0]=ay s2[1]=ad s2[2]=om s3[0]=lay s3[1]=Bad s3[2]=rom s4[0]=play s4[1]= s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Bad w[1]|w[2]=Bad|from pos[0]|pos[1]=VB|JJ pos[1]|pos[2]=JJ|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Bad w[1..4]=from w[1..4]=Michael w[1..4]=Jackson __BOS__ +song w[-1]=play w[0]=Bad w[1]=from w[2]=Michael wl[-1]=play wl[0]=bad wl[1]=from wl[2]=michael pos[-1]=VB pos[0]=JJ pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULL shape[1]=LLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=B p1[1]=f p1[2]=M p2[-1]=pl p2[0]=Ba p2[1]=fr p2[2]=Mi p3[-1]=pla p3[0]=Bad p3[1]=fro p3[2]=Mic p4[-1]=play p4[0]= p4[1]=from p4[2]=Mich s1[-1]=y s1[0]=d s1[1]=m s1[2]=l s2[-1]=ay s2[0]=ad s2[1]=om s2[2]=el s3[-1]=lay s3[0]=Bad s3[1]=rom s3[2]=ael s4[-1]=play s4[0]= s4[1]=from s4[2]=hael 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Bad w[0]|w[1]=Bad|from w[1]|w[2]=from|Michael pos[-1]|pos[0]=VB|JJ pos[0]|pos[1]=JJ|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=from w[1..4]=Michael w[1..4]=Jackson +O w[-2]=play w[-1]=Bad w[0]=from w[1]=Michael w[2]=Jackson wl[-2]=play wl[-1]=bad wl[0]=from wl[1]=michael wl[2]=jackson pos[-2]=VB pos[-1]=JJ pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=B p1[0]=f p1[1]=M p1[2]=J p2[-2]=pl p2[-1]=Ba p2[0]=fr p2[1]=Mi p2[2]=Ja p3[-2]=pla p3[-1]=Bad p3[0]=fro p3[1]=Mic p3[2]=Jac p4[-2]=play p4[-1]= p4[0]=from p4[1]=Mich p4[2]=Jack s1[-2]=y s1[-1]=d s1[0]=m s1[1]=l s1[2]=n s2[-2]=ay s2[-1]=ad s2[0]=om s2[1]=el s2[2]=on s3[-2]=lay s3[-1]=Bad s3[0]=rom s3[1]=ael s3[2]=son s4[-2]=play s4[-1]= s4[0]=from s4[1]=hael s4[2]=kson 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Bad w[-1]|w[0]=Bad|from w[0]|w[1]=from|Michael w[1]|w[2]=Michael|Jackson pos[-2]|pos[-1]=VB|JJ pos[-1]|pos[0]=JJ|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Bad w[1..4]=Michael w[1..4]=Jackson +artist w[-2]=Bad w[-1]=from w[0]=Michael w[1]=Jackson wl[-2]=bad wl[-1]=from wl[0]=michael wl[1]=jackson pos[-2]=JJ pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=B p1[-1]=f p1[0]=M p1[1]=J p2[-2]=Ba p2[-1]=fr p2[0]=Mi p2[1]=Ja p3[-2]=Bad p3[-1]=fro p3[0]=Mic p3[1]=Jac p4[-2]= p4[-1]=from p4[0]=Mich p4[1]=Jack s1[-2]=d s1[-1]=m s1[0]=l s1[1]=n s2[-2]=ad s2[-1]=om s2[0]=el s2[1]=on s3[-2]=Bad s3[-1]=rom s3[0]=ael s3[1]=son s4[-2]= s4[-1]=from s4[0]=hael s4[1]=kson 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Bad|from w[-1]|w[0]=from|Michael w[0]|w[1]=Michael|Jackson pos[-2]|pos[-1]=JJ|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Bad w[-4..-1]=from w[1..4]=Jackson +artist w[-2]=from w[-1]=Michael w[0]=Jackson wl[-2]=from wl[-1]=michael wl[0]=jackson pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=f p1[-1]=M p1[0]=J p2[-2]=fr p2[-1]=Mi p2[0]=Ja p3[-2]=fro p3[-1]=Mic p3[0]=Jac p4[-2]=from p4[-1]=Mich p4[0]=Jack s1[-2]=m s1[-1]=l s1[0]=n s2[-2]=om s2[-1]=el s2[0]=on s3[-2]=rom s3[-1]=ael s3[0]=son s4[-2]=from s4[-1]=hael s4[0]=kson 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=from|Michael w[-1]|w[0]=Michael|Jackson pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Bad w[-4..-1]=from w[-4..-1]=Michael __EOS__ + +O w[0]=play w[1]=a w[2]=romantic wl[0]=play wl[1]=a wl[2]=romantic pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=L shape[2]=LLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=r p2[0]=pl p2[1]= p2[2]=ro p3[0]=pla p3[1]= p3[2]=rom p4[0]=play p4[1]= p4[2]=roma s1[0]=y s1[1]=a s1[2]=c s2[0]=ay s2[1]= s2[2]=ic s3[0]=lay s3[1]= s3[2]=tic s4[0]=play s4[1]= s4[2]=ntic 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|romantic pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=romantic w[1..4]=song __BOS__ +O w[-1]=play w[0]=a w[1]=romantic w[2]=song wl[-1]=play wl[0]=a wl[1]=romantic wl[2]=song pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=L shape[1]=LLLLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=r p1[2]=s p2[-1]=pl p2[0]= p2[1]=ro p2[2]=so p3[-1]=pla p3[0]= p3[1]=rom p3[2]=son p4[-1]=play p4[0]= p4[1]=roma p4[2]=song s1[-1]=y s1[0]=a s1[1]=c s1[2]=g s2[-1]=ay s2[0]= s2[1]=ic s2[2]=ng s3[-1]=lay s3[0]= s3[1]=tic s3[2]=ong s4[-1]=play s4[0]= s4[1]=ntic s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|romantic w[1]|w[2]=romantic|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=romantic w[1..4]=song +genre w[-2]=play w[-1]=a w[0]=romantic w[1]=song wl[-2]=play wl[-1]=a wl[0]=romantic wl[1]=song pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLLLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=a p1[0]=r p1[1]=s p2[-2]=pl p2[-1]= p2[0]=ro p2[1]=so p3[-2]=pla p3[-1]= p3[0]=rom p3[1]=son p4[-2]=play p4[-1]= p4[0]=roma p4[1]=song s1[-2]=y s1[-1]=a s1[0]=c s1[1]=g s2[-2]=ay s2[-1]= s2[0]=ic s2[1]=ng s3[-2]=lay s3[-1]= s3[0]=tic s3[1]=ong s4[-2]=play s4[-1]= s4[0]=ntic s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|romantic w[0]|w[1]=romantic|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[1..4]=song +O w[-2]=a w[-1]=romantic w[0]=song wl[-2]=a wl[-1]=romantic wl[0]=song pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=L shape[-1]=LLLLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=a p1[-1]=r p1[0]=s p2[-2]= p2[-1]=ro p2[0]=so p3[-2]= p3[-1]=rom p3[0]=son p4[-2]= p4[-1]=roma p4[0]=song s1[-2]=a s1[-1]=c s1[0]=g s2[-2]= s2[-1]=ic s2[0]=ng s3[-2]= s3[-1]=tic s3[0]=ong s4[-2]= s4[-1]=ntic s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=a|romantic w[-1]|w[0]=romantic|song pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=romantic __EOS__ + +O w[0]=play w[1]=the w[2]=song wl[0]=play wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=the p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=he s2[2]=ng s3[0]=lay s3[1]=the s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song w[1..4]=Gorilla __BOS__ +O w[-1]=play w[0]=the w[1]=song w[2]=Gorilla wl[-1]=play wl[0]=the wl[1]=song wl[2]=gorilla pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=s p1[2]=G p2[-1]=pl p2[0]=th p2[1]=so p2[2]=Go p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Gor p4[-1]=play p4[0]= p4[1]=song p4[2]=Gori s1[-1]=y s1[0]=e s1[1]=g s1[2]=a s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=la s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=lla s4[-1]=play s4[0]= s4[1]=song s4[2]=illa 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Gorilla pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Gorilla +O w[-2]=play w[-1]=the w[0]=song w[1]=Gorilla wl[-2]=play wl[-1]=the wl[0]=song wl[1]=gorilla pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=t p1[0]=s p1[1]=G p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=Go p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Gor p4[-2]=play p4[-1]= p4[0]=song p4[1]=Gori s1[-2]=y s1[-1]=e s1[0]=g s1[1]=a s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=la s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=lla s4[-2]=play s4[-1]= s4[0]=song s4[1]=illa 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Gorilla pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[1..4]=Gorilla +song w[-2]=the w[-1]=song w[0]=Gorilla wl[-2]=the wl[-1]=song wl[0]=gorilla pos[-2]=DT pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=s p1[0]=G p2[-2]=th p2[-1]=so p2[0]=Go p3[-2]=the p3[-1]=son p3[0]=Gor p4[-2]= p4[-1]=song p4[0]=Gori s1[-2]=e s1[-1]=g s1[0]=a s2[-2]=he s2[-1]=ng s2[0]=la s3[-2]=the s3[-1]=ong s3[0]=lla s4[-2]= s4[-1]=song s4[0]=illa 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Gorilla pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=Temperature +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=Temperature w[1..4]=by +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=Temperature wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=temperature pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=ULLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=T p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=Te p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=Tem p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]=Temp s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=e s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=re s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=ure s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]=ture 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|Temperature pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=Temperature w[1..4]=by w[1..4]=Sean +O w[-2]=to w[-1]=listen w[0]=to w[1]=Temperature w[2]=by wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=temperature wl[2]=by pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=ULLLLLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=T p1[2]=b p2[-2]=to p2[-1]=li p2[0]=to p2[1]=Te p2[2]=by p3[-2]= p3[-1]=lis p3[0]= p3[1]=Tem p3[2]= p4[-2]= p4[-1]=list p4[0]= p4[1]=Temp p4[2]= s1[-2]=o s1[-1]=n s1[0]=o s1[1]=e s1[2]=y s2[-2]=to s2[-1]=en s2[0]=to s2[1]=re s2[2]=by s3[-2]= s3[-1]=ten s3[0]= s3[1]=ure s3[2]= s4[-2]= s4[-1]=sten s4[0]= s4[1]=ture s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|Temperature w[1]|w[2]=Temperature|by pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=Temperature w[1..4]=by w[1..4]=Sean w[1..4]=Paul +song w[-2]=listen w[-1]=to w[0]=Temperature w[1]=by w[2]=Sean wl[-2]=listen wl[-1]=to wl[0]=temperature wl[1]=by wl[2]=sean pos[-2]=VB pos[-1]=IN pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=ULLLLLLLLLL shape[1]=LL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=l p1[-1]=t p1[0]=T p1[1]=b p1[2]=S p2[-2]=li p2[-1]=to p2[0]=Te p2[1]=by p2[2]=Se p3[-2]=lis p3[-1]= p3[0]=Tem p3[1]= p3[2]=Sea p4[-2]=list p4[-1]= p4[0]=Temp p4[1]= p4[2]=Sean s1[-2]=n s1[-1]=o s1[0]=e s1[1]=y s1[2]=n s2[-2]=en s2[-1]=to s2[0]=re s2[1]=by s2[2]=an s3[-2]=ten s3[-1]= s3[0]=ure s3[1]= s3[2]=ean s4[-2]=sten s4[-1]= s4[0]=ture s4[1]= s4[2]=Sean 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|Temperature w[0]|w[1]=Temperature|by w[1]|w[2]=by|Sean pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=by w[1..4]=Sean w[1..4]=Paul +O w[-2]=to w[-1]=Temperature w[0]=by w[1]=Sean w[2]=Paul wl[-2]=to wl[-1]=temperature wl[0]=by wl[1]=sean wl[2]=paul pos[-2]=IN pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=ULLLLLLLLLL shape[0]=LL shape[1]=ULLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=t p1[-1]=T p1[0]=b p1[1]=S p1[2]=P p2[-2]=to p2[-1]=Te p2[0]=by p2[1]=Se p2[2]=Pa p3[-2]= p3[-1]=Tem p3[0]= p3[1]=Sea p3[2]=Pau p4[-2]= p4[-1]=Temp p4[0]= p4[1]=Sean p4[2]=Paul s1[-2]=o s1[-1]=e s1[0]=y s1[1]=n s1[2]=l s2[-2]=to s2[-1]=re s2[0]=by s2[1]=an s2[2]=ul s3[-2]= s3[-1]=ure s3[0]= s3[1]=ean s3[2]=aul s4[-2]= s4[-1]=ture s4[0]= s4[1]=Sean s4[2]=Paul 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|Temperature w[-1]|w[0]=Temperature|by w[0]|w[1]=by|Sean w[1]|w[2]=Sean|Paul pos[-2]|pos[-1]=IN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Temperature w[1..4]=Sean w[1..4]=Paul +artist w[-2]=Temperature w[-1]=by w[0]=Sean w[1]=Paul wl[-2]=temperature wl[-1]=by wl[0]=sean wl[1]=paul pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLLLLLL shape[-1]=LL shape[0]=ULLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=T p1[-1]=b p1[0]=S p1[1]=P p2[-2]=Te p2[-1]=by p2[0]=Se p2[1]=Pa p3[-2]=Tem p3[-1]= p3[0]=Sea p3[1]=Pau p4[-2]=Temp p4[-1]= p4[0]=Sean p4[1]=Paul s1[-2]=e s1[-1]=y s1[0]=n s1[1]=l s2[-2]=re s2[-1]=by s2[0]=an s2[1]=ul s3[-2]=ure s3[-1]= s3[0]=ean s3[1]=aul s4[-2]=ture s4[-1]= s4[0]=Sean s4[1]=Paul 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Temperature|by w[-1]|w[0]=by|Sean w[0]|w[1]=Sean|Paul pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Temperature w[-4..-1]=by w[1..4]=Paul +artist w[-2]=by w[-1]=Sean w[0]=Paul wl[-2]=by wl[-1]=sean wl[0]=paul pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLL shape[0]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=S p1[0]=P p2[-2]=by p2[-1]=Se p2[0]=Pa p3[-2]= p3[-1]=Sea p3[0]=Pau p4[-2]= p4[-1]=Sean p4[0]=Paul s1[-2]=y s1[-1]=n s1[0]=l s2[-2]=by s2[-1]=an s2[0]=ul s3[-2]= s3[-1]=ean s3[0]=aul s4[-2]= s4[-1]=Sean s4[0]=Paul 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Sean w[-1]|w[0]=Sean|Paul pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=to w[-4..-1]=Temperature w[-4..-1]=by w[-4..-1]=Sean __EOS__ + +O w[0]=play w[1]=Animals w[2]=by wl[0]=play wl[1]=animals wl[2]=by pos[0]=VB pos[1]=NNS pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=A p1[2]=b p2[0]=pl p2[1]=An p2[2]=by p3[0]=pla p3[1]=Ani p3[2]= p4[0]=play p4[1]=Anim p4[2]= s1[0]=y s1[1]=s s1[2]=y s2[0]=ay s2[1]=ls s2[2]=by s3[0]=lay s3[1]=als s3[2]= s4[0]=play s4[1]=mals s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Animals w[1]|w[2]=Animals|by pos[0]|pos[1]=VB|NNS pos[1]|pos[2]=NNS|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Animals w[1..4]=by w[1..4]=Maroon w[1..4]=5 __BOS__ +song w[-1]=play w[0]=Animals w[1]=by w[2]=Maroon wl[-1]=play wl[0]=animals wl[1]=by wl[2]=maroon pos[-1]=VB pos[0]=NNS pos[1]=IN pos[2]=NN chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULLLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=A p1[1]=b p1[2]=M p2[-1]=pl p2[0]=An p2[1]=by p2[2]=Ma p3[-1]=pla p3[0]=Ani p3[1]= p3[2]=Mar p4[-1]=play p4[0]=Anim p4[1]= p4[2]=Maro s1[-1]=y s1[0]=s s1[1]=y s1[2]=n s2[-1]=ay s2[0]=ls s2[1]=by s2[2]=on s3[-1]=lay s3[0]=als s3[1]= s3[2]=oon s4[-1]=play s4[0]=mals s4[1]= s4[2]=roon 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Animals w[0]|w[1]=Animals|by w[1]|w[2]=by|Maroon pos[-1]|pos[0]=VB|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Maroon w[1..4]=5 +O w[-2]=play w[-1]=Animals w[0]=by w[1]=Maroon w[2]=5 wl[-2]=play wl[-1]=animals wl[0]=by wl[1]=maroon wl[2]=5 pos[-2]=VB pos[-1]=NNS pos[0]=IN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULLLLL shape[2]=D shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=D type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllDigit p1[-2]=p p1[-1]=A p1[0]=b p1[1]=M p1[2]=5 p2[-2]=pl p2[-1]=An p2[0]=by p2[1]=Ma p2[2]= p3[-2]=pla p3[-1]=Ani p3[0]= p3[1]=Mar p3[2]= p4[-2]=play p4[-1]=Anim p4[0]= p4[1]=Maro p4[2]= s1[-2]=y s1[-1]=s s1[0]=y s1[1]=n s1[2]=5 s2[-2]=ay s2[-1]=ls s2[0]=by s2[1]=on s2[2]= s3[-2]=lay s3[-1]=als s3[0]= s3[1]=oon s3[2]= s4[-2]=play s4[-1]=mals s4[0]= s4[1]=roon s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=yes ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=no cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Animals w[-1]|w[0]=Animals|by w[0]|w[1]=by|Maroon w[1]|w[2]=Maroon|5 pos[-2]|pos[-1]=VB|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|D type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllDigit w[-4..-1]=play w[-4..-1]=Animals w[1..4]=Maroon w[1..4]=5 +artist w[-2]=Animals w[-1]=by w[0]=Maroon w[1]=5 wl[-2]=animals wl[-1]=by wl[0]=maroon wl[1]=5 pos[-2]=NNS pos[-1]=IN pos[0]=NN pos[1]=NN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=D shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=D type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllDigit p1[-2]=A p1[-1]=b p1[0]=M p1[1]=5 p2[-2]=An p2[-1]=by p2[0]=Ma p2[1]= p3[-2]=Ani p3[-1]= p3[0]=Mar p3[1]= p4[-2]=Anim p4[-1]= p4[0]=Maro p4[1]= s1[-2]=s s1[-1]=y s1[0]=n s1[1]=5 s2[-2]=ls s2[-1]=by s2[0]=on s2[1]= s3[-2]=als s3[-1]= s3[0]=oon s3[1]= s4[-2]=mals s4[-1]= s4[0]=roon s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=yes ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=no ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=no cd[-2]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Animals|by w[-1]|w[0]=by|Maroon w[0]|w[1]=Maroon|5 pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|D type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllDigit w[-4..-1]=play w[-4..-1]=Animals w[-4..-1]=by w[1..4]=5 +artist w[-2]=by w[-1]=Maroon w[0]=5 wl[-2]=by wl[-1]=maroon wl[0]=5 pos[-2]=IN pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=D shaped[-2]=L shaped[-1]=UL shaped[0]=D type[-2]=AllLetter type[-1]=InitUpper type[0]=AllDigit p1[-2]=b p1[-1]=M p1[0]=5 p2[-2]=by p2[-1]=Ma p2[0]= p3[-2]= p3[-1]=Mar p3[0]= p4[-2]= p4[-1]=Maro p4[0]= s1[-2]=y s1[-1]=n s1[0]=5 s2[-2]=by s2[-1]=on s2[0]= s3[-2]= s3[-1]=oon s3[0]= s4[-2]= s4[-1]=roon s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=yes ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=no ca[-2]=yes ca[-1]=yes ca[0]=no cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Maroon w[-1]|w[0]=Maroon|5 pos[-2]|pos[-1]=IN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|D type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllDigit w[-4..-1]=play w[-4..-1]=Animals w[-4..-1]=by w[-4..-1]=Maroon __EOS__ + +O w[0]=play w[1]=songs w[2]=by wl[0]=play wl[1]=songs wl[2]=by pos[0]=VBP pos[1]=NNS pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=son p3[2]= p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=s s1[2]=y s2[0]=ay s2[1]=gs s2[2]=by s3[0]=lay s3[1]=ngs s3[2]= s4[0]=play s4[1]=ongs s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|songs w[1]|w[2]=songs|by pos[0]|pos[1]=VBP|NNS pos[1]|pos[2]=NNS|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=songs w[1..4]=by w[1..4]=Ellie w[1..4]=Goulding __BOS__ +O w[-1]=play w[0]=songs w[1]=by w[2]=Ellie wl[-1]=play wl[0]=songs wl[1]=by wl[2]=ellie pos[-1]=VBP pos[0]=NNS pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=E p2[-1]=pl p2[0]=so p2[1]=by p2[2]=El p3[-1]=pla p3[0]=son p3[1]= p3[2]=Ell p4[-1]=play p4[0]=song p4[1]= p4[2]=Elli s1[-1]=y s1[0]=s s1[1]=y s1[2]=e s2[-1]=ay s2[0]=gs s2[1]=by s2[2]=ie s3[-1]=lay s3[0]=ngs s3[1]= s3[2]=lie s4[-1]=play s4[0]=ongs s4[1]= s4[2]=llie 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|songs w[0]|w[1]=songs|by w[1]|w[2]=by|Ellie pos[-1]|pos[0]=VBP|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Ellie w[1..4]=Goulding +O w[-2]=play w[-1]=songs w[0]=by w[1]=Ellie w[2]=Goulding wl[-2]=play wl[-1]=songs wl[0]=by wl[1]=ellie wl[2]=goulding pos[-2]=VBP pos[-1]=NNS pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=b p1[1]=E p1[2]=G p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=El p2[2]=Go p3[-2]=pla p3[-1]=son p3[0]= p3[1]=Ell p3[2]=Gou p4[-2]=play p4[-1]=song p4[0]= p4[1]=Elli p4[2]=Goul s1[-2]=y s1[-1]=s s1[0]=y s1[1]=e s1[2]=g s2[-2]=ay s2[-1]=gs s2[0]=by s2[1]=ie s2[2]=ng s3[-2]=lay s3[-1]=ngs s3[0]= s3[1]=lie s3[2]=ing s4[-2]=play s4[-1]=ongs s4[0]= s4[1]=llie s4[2]=ding 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|songs w[-1]|w[0]=songs|by w[0]|w[1]=by|Ellie w[1]|w[2]=Ellie|Goulding pos[-2]|pos[-1]=VBP|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=songs w[1..4]=Ellie w[1..4]=Goulding +artist w[-2]=songs w[-1]=by w[0]=Ellie w[1]=Goulding wl[-2]=songs wl[-1]=by wl[0]=ellie wl[1]=goulding pos[-2]=NNS pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=b p1[0]=E p1[1]=G p2[-2]=so p2[-1]=by p2[0]=El p2[1]=Go p3[-2]=son p3[-1]= p3[0]=Ell p3[1]=Gou p4[-2]=song p4[-1]= p4[0]=Elli p4[1]=Goul s1[-2]=s s1[-1]=y s1[0]=e s1[1]=g s2[-2]=gs s2[-1]=by s2[0]=ie s2[1]=ng s3[-2]=ngs s3[-1]= s3[0]=lie s3[1]=ing s4[-2]=ongs s4[-1]= s4[0]=llie s4[1]=ding 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=songs|by w[-1]|w[0]=by|Ellie w[0]|w[1]=Ellie|Goulding pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=songs w[-4..-1]=by w[1..4]=Goulding +artist w[-2]=by w[-1]=Ellie w[0]=Goulding wl[-2]=by wl[-1]=ellie wl[0]=goulding pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=E p1[0]=G p2[-2]=by p2[-1]=El p2[0]=Go p3[-2]= p3[-1]=Ell p3[0]=Gou p4[-2]= p4[-1]=Elli p4[0]=Goul s1[-2]=y s1[-1]=e s1[0]=g s2[-2]=by s2[-1]=ie s2[0]=ng s3[-2]= s3[-1]=lie s3[0]=ing s4[-2]= s4[-1]=llie s4[0]=ding 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Ellie w[-1]|w[0]=Ellie|Goulding pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=songs w[-4..-1]=by w[-4..-1]=Ellie __EOS__ + +O w[0]=play w[1]=Never w[2]=listen wl[0]=play wl[1]=never wl[2]=listen pos[0]=VBP pos[1]=RB pos[2]=RB chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLL shape[2]=LLLLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=N p1[2]=l p2[0]=pl p2[1]=Ne p2[2]=li p3[0]=pla p3[1]=Nev p3[2]=lis p4[0]=play p4[1]=Neve p4[2]=list s1[0]=y s1[1]=r s1[2]=n s2[0]=ay s2[1]=er s2[2]=en s3[0]=lay s3[1]=ver s3[2]=ten s4[0]=play s4[1]=ever s4[2]=sten 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Never w[1]|w[2]=Never|listen pos[0]|pos[1]=VBP|RB pos[1]|pos[2]=RB|RB chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Never w[1..4]=listen w[1..4]=Julia w[1..4]=Othmer __BOS__ +song w[-1]=play w[0]=Never w[1]=listen w[2]=Julia wl[-1]=play wl[0]=never wl[1]=listen wl[2]=julia pos[-1]=VBP pos[0]=RB pos[1]=RB pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLL shape[1]=LLLLLL shape[2]=ULLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=N p1[1]=l p1[2]=J p2[-1]=pl p2[0]=Ne p2[1]=li p2[2]=Ju p3[-1]=pla p3[0]=Nev p3[1]=lis p3[2]=Jul p4[-1]=play p4[0]=Neve p4[1]=list p4[2]=Juli s1[-1]=y s1[0]=r s1[1]=n s1[2]=a s2[-1]=ay s2[0]=er s2[1]=en s2[2]=ia s3[-1]=lay s3[0]=ver s3[1]=ten s3[2]=lia s4[-1]=play s4[0]=ever s4[1]=sten s4[2]=ulia 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Never w[0]|w[1]=Never|listen w[1]|w[2]=listen|Julia pos[-1]|pos[0]=VBP|RB pos[0]|pos[1]=RB|RB pos[1]|pos[2]=RB|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=listen w[1..4]=Julia w[1..4]=Othmer +song w[-2]=play w[-1]=Never w[0]=listen w[1]=Julia w[2]=Othmer wl[-2]=play wl[-1]=never wl[0]=listen wl[1]=julia wl[2]=othmer pos[-2]=VBP pos[-1]=RB pos[0]=RB pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=LLLLLL shape[1]=ULLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=N p1[0]=l p1[1]=J p1[2]=O p2[-2]=pl p2[-1]=Ne p2[0]=li p2[1]=Ju p2[2]=Ot p3[-2]=pla p3[-1]=Nev p3[0]=lis p3[1]=Jul p3[2]=Oth p4[-2]=play p4[-1]=Neve p4[0]=list p4[1]=Juli p4[2]=Othm s1[-2]=y s1[-1]=r s1[0]=n s1[1]=a s1[2]=r s2[-2]=ay s2[-1]=er s2[0]=en s2[1]=ia s2[2]=er s3[-2]=lay s3[-1]=ver s3[0]=ten s3[1]=lia s3[2]=mer s4[-2]=play s4[-1]=ever s4[0]=sten s4[1]=ulia s4[2]=hmer 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Never w[-1]|w[0]=Never|listen w[0]|w[1]=listen|Julia w[1]|w[2]=Julia|Othmer pos[-2]|pos[-1]=VBP|RB pos[-1]|pos[0]=RB|RB pos[0]|pos[1]=RB|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Never w[1..4]=Julia w[1..4]=Othmer +artist w[-2]=Never w[-1]=listen w[0]=Julia w[1]=Othmer wl[-2]=never wl[-1]=listen wl[0]=julia wl[1]=othmer pos[-2]=RB pos[-1]=RB pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLLL shape[-1]=LLLLLL shape[0]=ULLLL shape[1]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=N p1[-1]=l p1[0]=J p1[1]=O p2[-2]=Ne p2[-1]=li p2[0]=Ju p2[1]=Ot p3[-2]=Nev p3[-1]=lis p3[0]=Jul p3[1]=Oth p4[-2]=Neve p4[-1]=list p4[0]=Juli p4[1]=Othm s1[-2]=r s1[-1]=n s1[0]=a s1[1]=r s2[-2]=er s2[-1]=en s2[0]=ia s2[1]=er s3[-2]=ver s3[-1]=ten s3[0]=lia s3[1]=mer s4[-2]=ever s4[-1]=sten s4[0]=ulia s4[1]=hmer 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Never|listen w[-1]|w[0]=listen|Julia w[0]|w[1]=Julia|Othmer pos[-2]|pos[-1]=RB|RB pos[-1]|pos[0]=RB|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Never w[-4..-1]=listen w[1..4]=Othmer +artist w[-2]=listen w[-1]=Julia w[0]=Othmer wl[-2]=listen wl[-1]=julia wl[0]=othmer pos[-2]=RB pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLLLLL shape[-1]=ULLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=l p1[-1]=J p1[0]=O p2[-2]=li p2[-1]=Ju p2[0]=Ot p3[-2]=lis p3[-1]=Jul p3[0]=Oth p4[-2]=list p4[-1]=Juli p4[0]=Othm s1[-2]=n s1[-1]=a s1[0]=r s2[-2]=en s2[-1]=ia s2[0]=er s3[-2]=ten s3[-1]=lia s3[0]=mer s4[-2]=sten s4[-1]=ulia s4[0]=hmer 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=listen|Julia w[-1]|w[0]=Julia|Othmer pos[-2]|pos[-1]=RB|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Never w[-4..-1]=listen w[-4..-1]=Julia __EOS__ + +O w[0]=play w[1]=album w[2]=After wl[0]=play wl[1]=album wl[2]=after pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=A p2[0]=pl p2[1]=al p2[2]=Af p3[0]=pla p3[1]=alb p3[2]=Aft p4[0]=play p4[1]=albu p4[2]=Afte s1[0]=y s1[1]=m s1[2]=r s2[0]=ay s2[1]=um s2[2]=er s3[0]=lay s3[1]=bum s3[2]=ter s4[0]=play s4[1]=lbum s4[2]=fter 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|After pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=After w[1..4]=the w[1..4]=Gold __BOS__ +O w[-1]=play w[0]=album w[1]=After w[2]=the wl[-1]=play wl[0]=album wl[1]=after wl[2]=the pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=A p1[2]=t p2[-1]=pl p2[0]=al p2[1]=Af p2[2]=th p3[-1]=pla p3[0]=alb p3[1]=Aft p3[2]=the p4[-1]=play p4[0]=albu p4[1]=Afte p4[2]= s1[-1]=y s1[0]=m s1[1]=r s1[2]=e s2[-1]=ay s2[0]=um s2[1]=er s2[2]=he s3[-1]=lay s3[0]=bum s3[1]=ter s3[2]=the s4[-1]=play s4[0]=lbum s4[1]=fter s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|After w[1]|w[2]=After|the pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=After w[1..4]=the w[1..4]=Gold w[1..4]=Rush +album w[-2]=play w[-1]=album w[0]=After w[1]=the w[2]=Gold wl[-2]=play wl[-1]=album wl[0]=after wl[1]=the wl[2]=gold pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=IN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLL shape[1]=LLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=A p1[1]=t p1[2]=G p2[-2]=pl p2[-1]=al p2[0]=Af p2[1]=th p2[2]=Go p3[-2]=pla p3[-1]=alb p3[0]=Aft p3[1]=the p3[2]=Gol p4[-2]=play p4[-1]=albu p4[0]=Afte p4[1]= p4[2]=Gold s1[-2]=y s1[-1]=m s1[0]=r s1[1]=e s1[2]=d s2[-2]=ay s2[-1]=um s2[0]=er s2[1]=he s2[2]=ld s3[-2]=lay s3[-1]=bum s3[0]=ter s3[1]=the s3[2]=old s4[-2]=play s4[-1]=lbum s4[0]=fter s4[1]= s4[2]=Gold 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|After w[0]|w[1]=After|the w[1]|w[2]=the|Gold pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|IN pos[1]|pos[2]=IN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=the w[1..4]=Gold w[1..4]=Rush +album w[-2]=album w[-1]=After w[0]=the w[1]=Gold w[2]=Rush wl[-2]=album wl[-1]=after wl[0]=the wl[1]=gold wl[2]=rush pos[-2]=NN pos[-1]=IN pos[0]=IN pos[1]=IN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLLL shape[-1]=ULLLL shape[0]=LLL shape[1]=ULLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=a p1[-1]=A p1[0]=t p1[1]=G p1[2]=R p2[-2]=al p2[-1]=Af p2[0]=th p2[1]=Go p2[2]=Ru p3[-2]=alb p3[-1]=Aft p3[0]=the p3[1]=Gol p3[2]=Rus p4[-2]=albu p4[-1]=Afte p4[0]= p4[1]=Gold p4[2]=Rush s1[-2]=m s1[-1]=r s1[0]=e s1[1]=d s1[2]=h s2[-2]=um s2[-1]=er s2[0]=he s2[1]=ld s2[2]=sh s3[-2]=bum s3[-1]=ter s3[0]=the s3[1]=old s3[2]=ush s4[-2]=lbum s4[-1]=fter s4[0]= s4[1]=Gold s4[2]=Rush 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|After w[-1]|w[0]=After|the w[0]|w[1]=the|Gold w[1]|w[2]=Gold|Rush pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|IN pos[0]|pos[1]=IN|IN pos[1]|pos[2]=IN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=After w[1..4]=Gold w[1..4]=Rush +album w[-2]=After w[-1]=the w[0]=Gold w[1]=Rush wl[-2]=after wl[-1]=the wl[0]=gold wl[1]=rush pos[-2]=IN pos[-1]=IN pos[0]=IN pos[1]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLLL shape[-1]=LLL shape[0]=ULLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=A p1[-1]=t p1[0]=G p1[1]=R p2[-2]=Af p2[-1]=th p2[0]=Go p2[1]=Ru p3[-2]=Aft p3[-1]=the p3[0]=Gol p3[1]=Rus p4[-2]=Afte p4[-1]= p4[0]=Gold p4[1]=Rush s1[-2]=r s1[-1]=e s1[0]=d s1[1]=h s2[-2]=er s2[-1]=he s2[0]=ld s2[1]=sh s3[-2]=ter s3[-1]=the s3[0]=old s3[1]=ush s4[-2]=fter s4[-1]= s4[0]=Gold s4[1]=Rush 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=After|the w[-1]|w[0]=the|Gold w[0]|w[1]=Gold|Rush pos[-2]|pos[-1]=IN|IN pos[-1]|pos[0]=IN|IN pos[0]|pos[1]=IN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=After w[-4..-1]=the w[1..4]=Rush +album w[-2]=the w[-1]=Gold w[0]=Rush wl[-2]=the wl[-1]=gold wl[0]=rush pos[-2]=IN pos[-1]=IN pos[0]=IN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLL shape[-1]=ULLL shape[0]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=t p1[-1]=G p1[0]=R p2[-2]=th p2[-1]=Go p2[0]=Ru p3[-2]=the p3[-1]=Gol p3[0]=Rus p4[-2]= p4[-1]=Gold p4[0]=Rush s1[-2]=e s1[-1]=d s1[0]=h s2[-2]=he s2[-1]=ld s2[0]=sh s3[-2]=the s3[-1]=old s3[0]=ush s4[-2]= s4[-1]=Gold s4[0]=Rush 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|Gold w[-1]|w[0]=Gold|Rush pos[-2]|pos[-1]=IN|IN pos[-1]|pos[0]=IN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=album w[-4..-1]=After w[-4..-1]=the w[-4..-1]=Gold __EOS__ + +O w[0]=play w[1]=Do w[2]=I wl[0]=play wl[1]=do wl[2]=i pos[0]=VB pos[1]=VBP pos[2]=VBP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=UL shape[2]=U shaped[0]=L shaped[1]=UL shaped[2]=U type[0]=AllLetter type[1]=InitUpper type[2]=AllUpper p1[0]=p p1[1]=D p1[2]=I p2[0]=pl p2[1]=Do p2[2]= p3[0]=pla p3[1]= p3[2]= p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=o s1[2]=I s2[0]=ay s2[1]=Do s2[2]= s3[0]=lay s3[1]= s3[2]= s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=yes al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Do w[1]|w[2]=Do|I pos[0]|pos[1]=VB|VBP pos[1]|pos[2]=VBP|VBP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|U type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllUpper w[1..4]=Do w[1..4]=I w[1..4]=Wanna w[1..4]=Know __BOS__ +song w[-1]=play w[0]=Do w[1]=I w[2]=Wanna wl[-1]=play wl[0]=do wl[1]=i wl[2]=wanna pos[-1]=VB pos[0]=VBP pos[1]=VBP pos[2]=VBP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=UL shape[1]=U shape[2]=ULLLL shaped[-1]=L shaped[0]=UL shaped[1]=U shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllUpper type[2]=InitUpper p1[-1]=p p1[0]=D p1[1]=I p1[2]=W p2[-1]=pl p2[0]=Do p2[1]= p2[2]=Wa p3[-1]=pla p3[0]= p3[1]= p3[2]=Wan p4[-1]=play p4[0]= p4[1]= p4[2]=Wann s1[-1]=y s1[0]=o s1[1]=I s1[2]=a s2[-1]=ay s2[0]=Do s2[1]= s2[2]=na s3[-1]=lay s3[0]= s3[1]= s3[2]=nna s4[-1]=play s4[0]= s4[1]= s4[2]=anna 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=yes au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Do w[0]|w[1]=Do|I w[1]|w[2]=I|Wanna pos[-1]|pos[0]=VB|VBP pos[0]|pos[1]=VBP|VBP pos[1]|pos[2]=VBP|VBP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|U shaped[1]|shaped[2]=U|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllUpper type[1]|type[2]=AllUpper|InitUpper w[-4..-1]=play w[1..4]=I w[1..4]=Wanna w[1..4]=Know w[1..4]=by +song w[-2]=play w[-1]=Do w[0]=I w[1]=Wanna w[2]=Know wl[-2]=play wl[-1]=do wl[0]=i wl[1]=wanna wl[2]=know pos[-2]=VB pos[-1]=VBP pos[0]=VBP pos[1]=VBP pos[2]=VBP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=UL shape[0]=U shape[1]=ULLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=U shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=D p1[0]=I p1[1]=W p1[2]=K p2[-2]=pl p2[-1]=Do p2[0]= p2[1]=Wa p2[2]=Kn p3[-2]=pla p3[-1]= p3[0]= p3[1]=Wan p3[2]=Kno p4[-2]=play p4[-1]= p4[0]= p4[1]=Wann p4[2]=Know s1[-2]=y s1[-1]=o s1[0]=I s1[1]=a s1[2]=w s2[-2]=ay s2[-1]=Do s2[0]= s2[1]=na s2[2]=ow s3[-2]=lay s3[-1]= s3[0]= s3[1]=nna s3[2]=now s4[-2]=play s4[-1]= s4[0]= s4[1]=anna s4[2]=Know 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=yes au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Do w[-1]|w[0]=Do|I w[0]|w[1]=I|Wanna w[1]|w[2]=Wanna|Know pos[-2]|pos[-1]=VB|VBP pos[-1]|pos[0]=VBP|VBP pos[0]|pos[1]=VBP|VBP pos[1]|pos[2]=VBP|VBP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|U shaped[0]|shaped[1]=U|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllUpper type[0]|type[1]=AllUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Do w[1..4]=Wanna w[1..4]=Know w[1..4]=by w[1..4]=Arctic +song w[-2]=Do w[-1]=I w[0]=Wanna w[1]=Know w[2]=by wl[-2]=do wl[-1]=i wl[0]=wanna wl[1]=know wl[2]=by pos[-2]=VBP pos[-1]=VBP pos[0]=VBP pos[1]=VBP pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=UL shape[-1]=U shape[0]=ULLLL shape[1]=ULLL shape[2]=LL shaped[-2]=UL shaped[-1]=U shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=D p1[-1]=I p1[0]=W p1[1]=K p1[2]=b p2[-2]=Do p2[-1]= p2[0]=Wa p2[1]=Kn p2[2]=by p3[-2]= p3[-1]= p3[0]=Wan p3[1]=Kno p3[2]= p4[-2]= p4[-1]= p4[0]=Wann p4[1]=Know p4[2]= s1[-2]=o s1[-1]=I s1[0]=a s1[1]=w s1[2]=y s2[-2]=Do s2[-1]= s2[0]=na s2[1]=ow s2[2]=by s3[-2]= s3[-1]= s3[0]=nna s3[1]=now s3[2]= s4[-2]= s4[-1]= s4[0]=anna s4[1]=Know s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Do|I w[-1]|w[0]=I|Wanna w[0]|w[1]=Wanna|Know w[1]|w[2]=Know|by pos[-2]|pos[-1]=VBP|VBP pos[-1]|pos[0]=VBP|VBP pos[0]|pos[1]=VBP|VBP pos[1]|pos[2]=VBP|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|U shaped[-1]|shaped[0]=U|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllUpper type[-1]|type[0]=AllUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Do w[-4..-1]=I w[1..4]=Know w[1..4]=by w[1..4]=Arctic w[1..4]=Monkeys +song w[-2]=I w[-1]=Wanna w[0]=Know w[1]=by w[2]=Arctic wl[-2]=i wl[-1]=wanna wl[0]=know wl[1]=by wl[2]=arctic pos[-2]=VBP pos[-1]=VBP pos[0]=VBP pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=U shape[-1]=ULLLL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=U shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=I p1[-1]=W p1[0]=K p1[1]=b p1[2]=A p2[-2]= p2[-1]=Wa p2[0]=Kn p2[1]=by p2[2]=Ar p3[-2]= p3[-1]=Wan p3[0]=Kno p3[1]= p3[2]=Arc p4[-2]= p4[-1]=Wann p4[0]=Know p4[1]= p4[2]=Arct s1[-2]=I s1[-1]=a s1[0]=w s1[1]=y s1[2]=c s2[-2]= s2[-1]=na s2[0]=ow s2[1]=by s2[2]=ic s3[-2]= s3[-1]=nna s3[0]=now s3[1]= s3[2]=tic s4[-2]= s4[-1]=anna s4[0]=Know s4[1]= s4[2]=ctic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|Wanna w[-1]|w[0]=Wanna|Know w[0]|w[1]=Know|by w[1]|w[2]=by|Arctic pos[-2]|pos[-1]=VBP|VBP pos[-1]|pos[0]=VBP|VBP pos[0]|pos[1]=VBP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=U|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Do w[-4..-1]=I w[-4..-1]=Wanna w[1..4]=by w[1..4]=Arctic w[1..4]=Monkeys w[1..4]=song +O w[-2]=Wanna w[-1]=Know w[0]=by w[1]=Arctic w[2]=Monkeys wl[-2]=wanna wl[-1]=know wl[0]=by wl[1]=arctic wl[2]=monkeys pos[-2]=VBP pos[-1]=VBP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=W p1[-1]=K p1[0]=b p1[1]=A p1[2]=M p2[-2]=Wa p2[-1]=Kn p2[0]=by p2[1]=Ar p2[2]=Mo p3[-2]=Wan p3[-1]=Kno p3[0]= p3[1]=Arc p3[2]=Mon p4[-2]=Wann p4[-1]=Know p4[0]= p4[1]=Arct p4[2]=Monk s1[-2]=a s1[-1]=w s1[0]=y s1[1]=c s1[2]=s s2[-2]=na s2[-1]=ow s2[0]=by s2[1]=ic s2[2]=ys s3[-2]=nna s3[-1]=now s3[0]= s3[1]=tic s3[2]=eys s4[-2]=anna s4[-1]=Know s4[0]= s4[1]=ctic s4[2]=keys 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Wanna|Know w[-1]|w[0]=Know|by w[0]|w[1]=by|Arctic w[1]|w[2]=Arctic|Monkeys pos[-2]|pos[-1]=VBP|VBP pos[-1]|pos[0]=VBP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=Do w[-4..-1]=I w[-4..-1]=Wanna w[-4..-1]=Know w[1..4]=Arctic w[1..4]=Monkeys w[1..4]=song w[1..4]=on +artist w[-2]=Know w[-1]=by w[0]=Arctic w[1]=Monkeys w[2]=song wl[-2]=know wl[-1]=by wl[0]=arctic wl[1]=monkeys wl[2]=song pos[-2]=VBP pos[-1]=IN pos[0]=NNP pos[1]=NNP pos[2]=NN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLL shape[1]=ULLLLLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=K p1[-1]=b p1[0]=A p1[1]=M p1[2]=s p2[-2]=Kn p2[-1]=by p2[0]=Ar p2[1]=Mo p2[2]=so p3[-2]=Kno p3[-1]= p3[0]=Arc p3[1]=Mon p3[2]=son p4[-2]=Know p4[-1]= p4[0]=Arct p4[1]=Monk p4[2]=song s1[-2]=w s1[-1]=y s1[0]=c s1[1]=s s1[2]=g s2[-2]=ow s2[-1]=by s2[0]=ic s2[1]=ys s2[2]=ng s3[-2]=now s3[-1]= s3[0]=tic s3[1]=eys s3[2]=ong s4[-2]=Know s4[-1]= s4[0]=ctic s4[1]=keys s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Know|by w[-1]|w[0]=by|Arctic w[0]|w[1]=Arctic|Monkeys w[1]|w[2]=Monkeys|song pos[-2]|pos[-1]=VBP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=I w[-4..-1]=Wanna w[-4..-1]=Know w[-4..-1]=by w[1..4]=Monkeys w[1..4]=song w[1..4]=on w[1..4]=Spotify +artist w[-2]=by w[-1]=Arctic w[0]=Monkeys w[1]=song w[2]=on wl[-2]=by wl[-1]=arctic wl[0]=monkeys wl[1]=song wl[2]=on pos[-2]=IN pos[-1]=NNP pos[0]=NNP pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=ULLLLL shape[0]=ULLLLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=b p1[-1]=A p1[0]=M p1[1]=s p1[2]=o p2[-2]=by p2[-1]=Ar p2[0]=Mo p2[1]=so p2[2]=on p3[-2]= p3[-1]=Arc p3[0]=Mon p3[1]=son p3[2]= p4[-2]= p4[-1]=Arct p4[0]=Monk p4[1]=song p4[2]= s1[-2]=y s1[-1]=c s1[0]=s s1[1]=g s1[2]=n s2[-2]=by s2[-1]=ic s2[0]=ys s2[1]=ng s2[2]=on s3[-2]= s3[-1]=tic s3[0]=eys s3[1]=ong s3[2]= s4[-2]= s4[-1]=ctic s4[0]=keys s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Arctic w[-1]|w[0]=Arctic|Monkeys w[0]|w[1]=Monkeys|song w[1]|w[2]=song|on pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=Wanna w[-4..-1]=Know w[-4..-1]=by w[-4..-1]=Arctic w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=Arctic w[-1]=Monkeys w[0]=song w[1]=on w[2]=Spotify wl[-2]=arctic wl[-1]=monkeys wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=NNP pos[-1]=NNP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=ULLLLL shape[-1]=ULLLLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=A p1[-1]=M p1[0]=s p1[1]=o p1[2]=S p2[-2]=Ar p2[-1]=Mo p2[0]=so p2[1]=on p2[2]=Sp p3[-2]=Arc p3[-1]=Mon p3[0]=son p3[1]= p3[2]=Spo p4[-2]=Arct p4[-1]=Monk p4[0]=song p4[1]= p4[2]=Spot s1[-2]=c s1[-1]=s s1[0]=g s1[1]=n s1[2]=y s2[-2]=ic s2[-1]=ys s2[0]=ng s2[1]=on s2[2]=fy s3[-2]=tic s3[-1]=eys s3[0]=ong s3[1]= s3[2]=ify s4[-2]=ctic s4[-1]=keys s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Arctic|Monkeys w[-1]|w[0]=Monkeys|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Know w[-4..-1]=by w[-4..-1]=Arctic w[-4..-1]=Monkeys w[1..4]=on w[1..4]=Spotify +O w[-2]=Monkeys w[-1]=song w[0]=on w[1]=Spotify wl[-2]=monkeys wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=M p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Mo p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=Mon p3[-1]=son p3[0]= p3[1]=Spo p4[-2]=Monk p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=s s1[-1]=g s1[0]=n s1[1]=y s2[-2]=ys s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]=eys s3[-1]=ong s3[0]= s3[1]=ify s4[-2]=keys s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Monkeys|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Arctic w[-4..-1]=Monkeys w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Arctic w[-4..-1]=Monkeys w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=album w[2]=Madonna wl[0]=play wl[1]=album wl[2]=madonna pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=M p2[0]=pl p2[1]=al p2[2]=Ma p3[0]=pla p3[1]=alb p3[2]=Mad p4[0]=play p4[1]=albu p4[2]=Mado s1[0]=y s1[1]=m s1[2]=a s2[0]=ay s2[1]=um s2[2]=na s3[0]=lay s3[1]=bum s3[2]=nna s4[0]=play s4[1]=lbum s4[2]=onna 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Madonna pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Madonna w[1..4]=by w[1..4]=Madonna __BOS__ +O w[-1]=play w[0]=album w[1]=Madonna w[2]=by wl[-1]=play wl[0]=album wl[1]=madonna wl[2]=by pos[-1]=VB pos[0]=NN pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=M p1[2]=b p2[-1]=pl p2[0]=al p2[1]=Ma p2[2]=by p3[-1]=pla p3[0]=alb p3[1]=Mad p3[2]= p4[-1]=play p4[0]=albu p4[1]=Mado p4[2]= s1[-1]=y s1[0]=m s1[1]=a s1[2]=y s2[-1]=ay s2[0]=um s2[1]=na s2[2]=by s3[-1]=lay s3[0]=bum s3[1]=nna s3[2]= s4[-1]=play s4[0]=lbum s4[1]=onna s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Madonna w[1]|w[2]=Madonna|by pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Madonna w[1..4]=by w[1..4]=Madonna +album w[-2]=play w[-1]=album w[0]=Madonna w[1]=by w[2]=Madonna wl[-2]=play wl[-1]=album wl[0]=madonna wl[1]=by wl[2]=madonna pos[-2]=VB pos[-1]=NN pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=M p1[1]=b p1[2]=M p2[-2]=pl p2[-1]=al p2[0]=Ma p2[1]=by p2[2]=Ma p3[-2]=pla p3[-1]=alb p3[0]=Mad p3[1]= p3[2]=Mad p4[-2]=play p4[-1]=albu p4[0]=Mado p4[1]= p4[2]=Mado s1[-2]=y s1[-1]=m s1[0]=a s1[1]=y s1[2]=a s2[-2]=ay s2[-1]=um s2[0]=na s2[1]=by s2[2]=na s3[-2]=lay s3[-1]=bum s3[0]=nna s3[1]= s3[2]=nna s4[-2]=play s4[-1]=lbum s4[0]=onna s4[1]= s4[2]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Madonna w[0]|w[1]=Madonna|by w[1]|w[2]=by|Madonna pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=by w[1..4]=Madonna +O w[-2]=album w[-1]=Madonna w[0]=by w[1]=Madonna wl[-2]=album wl[-1]=madonna wl[0]=by wl[1]=madonna pos[-2]=NN pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLLLL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=a p1[-1]=M p1[0]=b p1[1]=M p2[-2]=al p2[-1]=Ma p2[0]=by p2[1]=Ma p3[-2]=alb p3[-1]=Mad p3[0]= p3[1]=Mad p4[-2]=albu p4[-1]=Mado p4[0]= p4[1]=Mado s1[-2]=m s1[-1]=a s1[0]=y s1[1]=a s2[-2]=um s2[-1]=na s2[0]=by s2[1]=na s3[-2]=bum s3[-1]=nna s3[0]= s3[1]=nna s4[-2]=lbum s4[-1]=onna s4[0]= s4[1]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=album|Madonna w[-1]|w[0]=Madonna|by w[0]|w[1]=by|Madonna pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Madonna w[1..4]=Madonna +album w[-2]=Madonna w[-1]=by w[0]=Madonna wl[-2]=madonna wl[-1]=by wl[0]=madonna pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=M p1[-1]=b p1[0]=M p2[-2]=Ma p2[-1]=by p2[0]=Ma p3[-2]=Mad p3[-1]= p3[0]=Mad p4[-2]=Mado p4[-1]= p4[0]=Mado s1[-2]=a s1[-1]=y s1[0]=a s2[-2]=na s2[-1]=by s2[0]=na s3[-2]=nna s3[-1]= s3[0]=nna s4[-2]=onna s4[-1]= s4[0]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Madonna|by w[-1]|w[0]=by|Madonna pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Madonna w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=Adele's w[2]=Hello wl[0]=play wl[1]=adele's wl[2]=hello pos[0]=VB pos[1]=NNP pos[2]=POS chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=ULLLL'L shape[2]=ULLLL shaped[0]=L shaped[1]=UL'L shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=A p1[2]=H p2[0]=pl p2[1]=Ad p2[2]=He p3[0]=pla p3[1]=Ade p3[2]=Hel p4[0]=play p4[1]=Adel p4[2]=Hell s1[0]=y s1[1]=s s1[2]=o s2[0]=ay s2[1]='s s2[2]=lo s3[0]=lay s3[1]=e's s3[2]=llo s4[0]=play s4[1]=le's s4[2]=ello 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=yes cs[2]=no w[0]|w[1]=play|Adele's w[1]|w[2]=Adele's|Hello pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|POS chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|UL'L shaped[1]|shaped[2]=UL'L|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Adele's w[1..4]=Hello __BOS__ +O w[-1]=play w[0]=Adele's w[1]=Hello wl[-1]=play wl[0]=adele's wl[1]=hello pos[-1]=VB pos[0]=NNP pos[1]=POS chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=ULLLL'L shape[1]=ULLLL shaped[-1]=L shaped[0]=UL'L shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=A p1[1]=H p2[-1]=pl p2[0]=Ad p2[1]=He p3[-1]=pla p3[0]=Ade p3[1]=Hel p4[-1]=play p4[0]=Adel p4[1]=Hell s1[-1]=y s1[0]=s s1[1]=o s2[-1]=ay s2[0]='s s2[1]=lo s3[-1]=lay s3[0]=e's s3[1]=llo s4[-1]=play s4[0]=le's s4[1]=ello 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=yes cs[1]=no w[-1]|w[0]=play|Adele's w[0]|w[1]=Adele's|Hello pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|POS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|UL'L shaped[0]|shaped[1]=UL'L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Hello +song w[-2]=play w[-1]=Adele's w[0]=Hello wl[-2]=play wl[-1]=adele's wl[0]=hello pos[-2]=VB pos[-1]=NNP pos[0]=POS chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=ULLLL'L shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL'L shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=A p1[0]=H p2[-2]=pl p2[-1]=Ad p2[0]=He p3[-2]=pla p3[-1]=Ade p3[0]=Hel p4[-2]=play p4[-1]=Adel p4[0]=Hell s1[-2]=y s1[-1]=s s1[0]=o s2[-2]=ay s2[-1]='s s2[0]=lo s3[-2]=lay s3[-1]=e's s3[0]=llo s4[-2]=play s4[-1]=le's s4[0]=ello 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=yes cs[0]=no w[-2]|w[-1]=play|Adele's w[-1]|w[0]=Adele's|Hello pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|POS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|UL'L shaped[-1]|shaped[0]=UL'L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Adele's __EOS__ + +O w[0]=play w[1]=song w[2]=In wl[0]=play wl[1]=song wl[2]=in pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=I p2[0]=pl p2[1]=so p2[2]=In p3[0]=pla p3[1]=son p3[2]= p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=n s2[0]=ay s2[1]=ng s2[2]=In s3[0]=lay s3[1]=ong s3[2]= s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|In pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=In w[1..4]=Da w[1..4]=Club __BOS__ +O w[-1]=play w[0]=song w[1]=In w[2]=Da wl[-1]=play wl[0]=song wl[1]=in wl[2]=da pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=UL shape[2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=I p1[2]=D p2[-1]=pl p2[0]=so p2[1]=In p2[2]=Da p3[-1]=pla p3[0]=son p3[1]= p3[2]= p4[-1]=play p4[0]=song p4[1]= p4[2]= s1[-1]=y s1[0]=g s1[1]=n s1[2]=a s2[-1]=ay s2[0]=ng s2[1]=In s2[2]=Da s3[-1]=lay s3[0]=ong s3[1]= s3[2]= s4[-1]=play s4[0]=song s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|In w[1]|w[2]=In|Da pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=In w[1..4]=Da w[1..4]=Club +song w[-2]=play w[-1]=song w[0]=In w[1]=Da w[2]=Club wl[-2]=play wl[-1]=song wl[0]=in wl[1]=da wl[2]=club pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=IN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=UL shape[1]=UL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=I p1[1]=D p1[2]=C p2[-2]=pl p2[-1]=so p2[0]=In p2[1]=Da p2[2]=Cl p3[-2]=pla p3[-1]=son p3[0]= p3[1]= p3[2]=Clu p4[-2]=play p4[-1]=song p4[0]= p4[1]= p4[2]=Club s1[-2]=y s1[-1]=g s1[0]=n s1[1]=a s1[2]=b s2[-2]=ay s2[-1]=ng s2[0]=In s2[1]=Da s2[2]=ub s3[-2]=lay s3[-1]=ong s3[0]= s3[1]= s3[2]=lub s4[-2]=play s4[-1]=song s4[0]= s4[1]= s4[2]=Club 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|In w[0]|w[1]=In|Da w[1]|w[2]=Da|Club pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|IN pos[1]|pos[2]=IN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=Da w[1..4]=Club +song w[-2]=song w[-1]=In w[0]=Da w[1]=Club wl[-2]=song wl[-1]=in wl[0]=da wl[1]=club pos[-2]=NN pos[-1]=IN pos[0]=IN pos[1]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=UL shape[0]=UL shape[1]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=I p1[0]=D p1[1]=C p2[-2]=so p2[-1]=In p2[0]=Da p2[1]=Cl p3[-2]=son p3[-1]= p3[0]= p3[1]=Clu p4[-2]=song p4[-1]= p4[0]= p4[1]=Club s1[-2]=g s1[-1]=n s1[0]=a s1[1]=b s2[-2]=ng s2[-1]=In s2[0]=Da s2[1]=ub s3[-2]=ong s3[-1]= s3[0]= s3[1]=lub s4[-2]=song s4[-1]= s4[0]= s4[1]=Club 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|In w[-1]|w[0]=In|Da w[0]|w[1]=Da|Club pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|IN pos[0]|pos[1]=IN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=In w[1..4]=Club +song w[-2]=In w[-1]=Da w[0]=Club wl[-2]=in wl[-1]=da wl[0]=club pos[-2]=IN pos[-1]=IN pos[0]=IN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=UL shape[-1]=UL shape[0]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=I p1[-1]=D p1[0]=C p2[-2]=In p2[-1]=Da p2[0]=Cl p3[-2]= p3[-1]= p3[0]=Clu p4[-2]= p4[-1]= p4[0]=Club s1[-2]=n s1[-1]=a s1[0]=b s2[-2]=In s2[-1]=Da s2[0]=ub s3[-2]= s3[-1]= s3[0]=lub s4[-2]= s4[-1]= s4[0]=Club 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=In|Da w[-1]|w[0]=Da|Club pos[-2]|pos[-1]=IN|IN pos[-1]|pos[0]=IN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=In w[-4..-1]=Da __EOS__ + +O w[0]=play w[1]=me w[2]=a wl[0]=play wl[1]=me wl[2]=a pos[0]=VB pos[1]=PRP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=L shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=a p2[0]=pl p2[1]=me p2[2]= p3[0]=pla p3[1]= p3[2]= p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=e s1[2]=a s2[0]=ay s2[1]=me s2[2]= s3[0]=lay s3[1]= s3[2]= s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|me w[1]|w[2]=me|a pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=me w[1..4]=a w[1..4]=song w[1..4]=by __BOS__ +O w[-1]=play w[0]=me w[1]=a w[2]=song wl[-1]=play wl[0]=me wl[1]=a wl[2]=song pos[-1]=VB pos[0]=PRP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=L shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=m p1[1]=a p1[2]=s p2[-1]=pl p2[0]=me p2[1]= p2[2]=so p3[-1]=pla p3[0]= p3[1]= p3[2]=son p4[-1]=play p4[0]= p4[1]= p4[2]=song s1[-1]=y s1[0]=e s1[1]=a s1[2]=g s2[-1]=ay s2[0]=me s2[1]= s2[2]=ng s3[-1]=lay s3[0]= s3[1]= s3[2]=ong s4[-1]=play s4[0]= s4[1]= s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|me w[0]|w[1]=me|a w[1]|w[2]=a|song pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=a w[1..4]=song w[1..4]=by w[1..4]=Aventura +O w[-2]=play w[-1]=me w[0]=a w[1]=song w[2]=by wl[-2]=play wl[-1]=me wl[0]=a wl[1]=song wl[2]=by pos[-2]=VB pos[-1]=PRP pos[0]=DT pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=L shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=m p1[0]=a p1[1]=s p1[2]=b p2[-2]=pl p2[-1]=me p2[0]= p2[1]=so p2[2]=by p3[-2]=pla p3[-1]= p3[0]= p3[1]=son p3[2]= p4[-2]=play p4[-1]= p4[0]= p4[1]=song p4[2]= s1[-2]=y s1[-1]=e s1[0]=a s1[1]=g s1[2]=y s2[-2]=ay s2[-1]=me s2[0]= s2[1]=ng s2[2]=by s3[-2]=lay s3[-1]= s3[0]= s3[1]=ong s3[2]= s4[-2]=play s4[-1]= s4[0]= s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|me w[-1]|w[0]=me|a w[0]|w[1]=a|song w[1]|w[2]=song|by pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[1..4]=song w[1..4]=by w[1..4]=Aventura +O w[-2]=me w[-1]=a w[0]=song w[1]=by w[2]=Aventura wl[-2]=me wl[-1]=a wl[0]=song wl[1]=by wl[2]=aventura pos[-2]=PRP pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=L shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=m p1[-1]=a p1[0]=s p1[1]=b p1[2]=A p2[-2]=me p2[-1]= p2[0]=so p2[1]=by p2[2]=Av p3[-2]= p3[-1]= p3[0]=son p3[1]= p3[2]=Ave p4[-2]= p4[-1]= p4[0]=song p4[1]= p4[2]=Aven s1[-2]=e s1[-1]=a s1[0]=g s1[1]=y s1[2]=a s2[-2]=me s2[-1]= s2[0]=ng s2[1]=by s2[2]=ra s3[-2]= s3[-1]= s3[0]=ong s3[1]= s3[2]=ura s4[-2]= s4[-1]= s4[0]=song s4[1]= s4[2]=tura 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=me|a w[-1]|w[0]=a|song w[0]|w[1]=song|by w[1]|w[2]=by|Aventura pos[-2]|pos[-1]=PRP|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=me w[-4..-1]=a w[1..4]=by w[1..4]=Aventura +O w[-2]=a w[-1]=song w[0]=by w[1]=Aventura wl[-2]=a wl[-1]=song wl[0]=by wl[1]=aventura pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=L shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=a p1[-1]=s p1[0]=b p1[1]=A p2[-2]= p2[-1]=so p2[0]=by p2[1]=Av p3[-2]= p3[-1]=son p3[0]= p3[1]=Ave p4[-2]= p4[-1]=song p4[0]= p4[1]=Aven s1[-2]=a s1[-1]=g s1[0]=y s1[1]=a s2[-2]= s2[-1]=ng s2[0]=by s2[1]=ra s3[-2]= s3[-1]=ong s3[0]= s3[1]=ura s4[-2]= s4[-1]=song s4[0]= s4[1]=tura 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=a|song w[-1]|w[0]=song|by w[0]|w[1]=by|Aventura pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=me w[-4..-1]=a w[-4..-1]=song w[1..4]=Aventura +artist w[-2]=song w[-1]=by w[0]=Aventura wl[-2]=song wl[-1]=by wl[0]=aventura pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=b p1[0]=A p2[-2]=so p2[-1]=by p2[0]=Av p3[-2]=son p3[-1]= p3[0]=Ave p4[-2]=song p4[-1]= p4[0]=Aven s1[-2]=g s1[-1]=y s1[0]=a s2[-2]=ng s2[-1]=by s2[0]=ra s3[-2]=ong s3[-1]= s3[0]=ura s4[-2]=song s4[-1]= s4[0]=tura 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|by w[-1]|w[0]=by|Aventura pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=me w[-4..-1]=a w[-4..-1]=song w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=Justin w[2]=Bieber wl[0]=play wl[1]=justin wl[2]=bieber pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=J p1[2]=B p2[0]=pl p2[1]=Ju p2[2]=Bi p3[0]=pla p3[1]=Jus p3[2]=Bie p4[0]=play p4[1]=Just p4[2]=Bieb s1[0]=y s1[1]=n s1[2]=r s2[0]=ay s2[1]=in s2[2]=er s3[0]=lay s3[1]=tin s3[2]=ber s4[0]=play s4[1]=stin s4[2]=eber 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Justin w[1]|w[2]=Justin|Bieber pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Justin w[1..4]=Bieber __BOS__ +artist w[-1]=play w[0]=Justin w[1]=Bieber wl[-1]=play wl[0]=justin wl[1]=bieber pos[-1]=VB pos[0]=NNP pos[1]=NNP chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULLLLL shape[1]=ULLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=J p1[1]=B p2[-1]=pl p2[0]=Ju p2[1]=Bi p3[-1]=pla p3[0]=Jus p3[1]=Bie p4[-1]=play p4[0]=Just p4[1]=Bieb s1[-1]=y s1[0]=n s1[1]=r s2[-1]=ay s2[0]=in s2[1]=er s3[-1]=lay s3[0]=tin s3[1]=ber s4[-1]=play s4[0]=stin s4[1]=eber 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|Justin w[0]|w[1]=Justin|Bieber pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Bieber +artist w[-2]=play w[-1]=Justin w[0]=Bieber wl[-2]=play wl[-1]=justin wl[0]=bieber pos[-2]=VB pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=J p1[0]=B p2[-2]=pl p2[-1]=Ju p2[0]=Bi p3[-2]=pla p3[-1]=Jus p3[0]=Bie p4[-2]=play p4[-1]=Just p4[0]=Bieb s1[-2]=y s1[-1]=n s1[0]=r s2[-2]=ay s2[-1]=in s2[0]=er s3[-2]=lay s3[-1]=tin s3[0]=ber s4[-2]=play s4[-1]=stin s4[0]=eber 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|Justin w[-1]|w[0]=Justin|Bieber pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Justin __EOS__ + +O w[0]=change w[1]=to w[2]=my wl[0]=change wl[1]=to wl[2]=my pos[0]=VB pos[1]=IN pos[2]=PRP$ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=t p1[2]=m p2[0]=ch p2[1]=to p2[2]=my p3[0]=cha p3[1]= p3[2]= p4[0]=chan p4[1]= p4[2]= s1[0]=e s1[1]=o s1[2]=y s2[0]=ge s2[1]=to s2[2]=my s3[0]=nge s3[1]= s3[2]= s4[0]=ange s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=change|to w[1]|w[2]=to|my pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|PRP$ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=my w[1..4]=workout w[1..4]=music __BOS__ +O w[-1]=change w[0]=to w[1]=my w[2]=workout wl[-1]=change wl[0]=to wl[1]=my wl[2]=workout pos[-1]=VB pos[0]=IN pos[1]=PRP$ pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLLLL shape[0]=LL shape[1]=LL shape[2]=LLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=t p1[1]=m p1[2]=w p2[-1]=ch p2[0]=to p2[1]=my p2[2]=wo p3[-1]=cha p3[0]= p3[1]= p3[2]=wor p4[-1]=chan p4[0]= p4[1]= p4[2]=work s1[-1]=e s1[0]=o s1[1]=y s1[2]=t s2[-1]=ge s2[0]=to s2[1]=my s2[2]=ut s3[-1]=nge s3[0]= s3[1]= s3[2]=out s4[-1]=ange s4[0]= s4[1]= s4[2]=kout 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=change|to w[0]|w[1]=to|my w[1]|w[2]=my|workout pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=change w[1..4]=my w[1..4]=workout w[1..4]=music +O w[-2]=change w[-1]=to w[0]=my w[1]=workout w[2]=music wl[-2]=change wl[-1]=to wl[0]=my wl[1]=workout wl[2]=music pos[-2]=VB pos[-1]=IN pos[0]=PRP$ pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=LL shape[1]=LLLLLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=t p1[0]=m p1[1]=w p1[2]=m p2[-2]=ch p2[-1]=to p2[0]=my p2[1]=wo p2[2]=mu p3[-2]=cha p3[-1]= p3[0]= p3[1]=wor p3[2]=mus p4[-2]=chan p4[-1]= p4[0]= p4[1]=work p4[2]=musi s1[-2]=e s1[-1]=o s1[0]=y s1[1]=t s1[2]=c s2[-2]=ge s2[-1]=to s2[0]=my s2[1]=ut s2[2]=ic s3[-2]=nge s3[-1]= s3[0]= s3[1]=out s3[2]=sic s4[-2]=ange s4[-1]= s4[0]= s4[1]=kout s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=change|to w[-1]|w[0]=to|my w[0]|w[1]=my|workout w[1]|w[2]=workout|music pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=change w[-4..-1]=to w[1..4]=workout w[1..4]=music +playlist w[-2]=to w[-1]=my w[0]=workout w[1]=music wl[-2]=to wl[-1]=my wl[0]=workout wl[1]=music pos[-2]=IN pos[-1]=PRP$ pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=m p1[0]=w p1[1]=m p2[-2]=to p2[-1]=my p2[0]=wo p2[1]=mu p3[-2]= p3[-1]= p3[0]=wor p3[1]=mus p4[-2]= p4[-1]= p4[0]=work p4[1]=musi s1[-2]=o s1[-1]=y s1[0]=t s1[1]=c s2[-2]=to s2[-1]=my s2[0]=ut s2[1]=ic s3[-2]= s3[-1]= s3[0]=out s3[1]=sic s4[-2]= s4[-1]= s4[0]=kout s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|my w[-1]|w[0]=my|workout w[0]|w[1]=workout|music pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=change w[-4..-1]=to w[-4..-1]=my w[1..4]=music +O w[-2]=my w[-1]=workout w[0]=music wl[-2]=my wl[-1]=workout wl[0]=music pos[-2]=PRP$ pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LL shape[-1]=LLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=w p1[0]=m p2[-2]=my p2[-1]=wo p2[0]=mu p3[-2]= p3[-1]=wor p3[0]=mus p4[-2]= p4[-1]=work p4[0]=musi s1[-2]=y s1[-1]=t s1[0]=c s2[-2]=my s2[-1]=ut s2[0]=ic s3[-2]= s3[-1]=out s3[0]=sic s4[-2]= s4[-1]=kout s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=my|workout w[-1]|w[0]=workout|music pos[-2]|pos[-1]=PRP$|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=change w[-4..-1]=to w[-4..-1]=my w[-4..-1]=workout __EOS__ + +O w[0]=play w[1]=song w[2]=from wl[0]=play wl[1]=song wl[2]=from pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=f p2[0]=pl p2[1]=so p2[2]=fr p3[0]=pla p3[1]=son p3[2]=fro p4[0]=play p4[1]=song p4[2]=from s1[0]=y s1[1]=g s1[2]=m s2[0]=ay s2[1]=ng s2[2]=om s3[0]=lay s3[1]=ong s3[2]=rom s4[0]=play s4[1]=song s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|from pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=song w[1..4]=from w[1..4]=iTunes __BOS__ +O w[-1]=play w[0]=song w[1]=from w[2]=iTunes wl[-1]=play wl[0]=song wl[1]=from wl[2]=itunes pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNS chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LULLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=LUL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=f p1[2]=i p2[-1]=pl p2[0]=so p2[1]=fr p2[2]=iT p3[-1]=pla p3[0]=son p3[1]=fro p3[2]=iTu p4[-1]=play p4[0]=song p4[1]=from p4[2]=iTun s1[-1]=y s1[0]=g s1[1]=m s1[2]=s s2[-1]=ay s2[0]=ng s2[1]=om s2[2]=es s3[-1]=lay s3[0]=ong s3[1]=rom s3[2]=nes s4[-1]=play s4[0]=song s4[1]=from s4[2]=unes 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|from w[1]|w[2]=from|iTunes pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|LUL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=from w[1..4]=iTunes +O w[-2]=play w[-1]=song w[0]=from w[1]=iTunes wl[-2]=play wl[-1]=song wl[0]=from wl[1]=itunes pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=LUL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=s p1[0]=f p1[1]=i p2[-2]=pl p2[-1]=so p2[0]=fr p2[1]=iT p3[-2]=pla p3[-1]=son p3[0]=fro p3[1]=iTu p4[-2]=play p4[-1]=song p4[0]=from p4[1]=iTun s1[-2]=y s1[-1]=g s1[0]=m s1[1]=s s2[-2]=ay s2[-1]=ng s2[0]=om s2[1]=es s3[-2]=lay s3[-1]=ong s3[0]=rom s3[1]=nes s4[-2]=play s4[-1]=song s4[0]=from s4[1]=unes 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|from w[0]|w[1]=from|iTunes pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|LUL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=song w[1..4]=iTunes +service w[-2]=song w[-1]=from w[0]=iTunes wl[-2]=song wl[-1]=from wl[0]=itunes pos[-2]=NN pos[-1]=IN pos[0]=NNS chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LULLLL shaped[-2]=L shaped[-1]=L shaped[0]=LUL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=f p1[0]=i p2[-2]=so p2[-1]=fr p2[0]=iT p3[-2]=son p3[-1]=fro p3[0]=iTu p4[-2]=song p4[-1]=from p4[0]=iTun s1[-2]=g s1[-1]=m s1[0]=s s2[-2]=ng s2[-1]=om s2[0]=es s3[-2]=ong s3[-1]=rom s3[0]=nes s4[-2]=song s4[-1]=from s4[0]=unes 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|from w[-1]|w[0]=from|iTunes pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|LUL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=song w[-4..-1]=from __EOS__ + +O w[0]=play w[1]=Miracles w[2]=from wl[0]=play wl[1]=miracles wl[2]=from pos[0]=VB pos[1]=NNPS pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=LLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=M p1[2]=f p2[0]=pl p2[1]=Mi p2[2]=fr p3[0]=pla p3[1]=Mir p3[2]=fro p4[0]=play p4[1]=Mira p4[2]=from s1[0]=y s1[1]=s s1[2]=m s2[0]=ay s2[1]=es s2[2]=om s3[0]=lay s3[1]=les s3[2]=rom s4[0]=play s4[1]=cles s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Miracles w[1]|w[2]=Miracles|from pos[0]|pos[1]=VB|NNPS pos[1]|pos[2]=NNPS|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Miracles w[1..4]=from w[1..4]=Apple w[1..4]=Music __BOS__ +song w[-1]=play w[0]=Miracles w[1]=from w[2]=Apple wl[-1]=play wl[0]=miracles wl[1]=from wl[2]=apple pos[-1]=VB pos[0]=NNPS pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=LLLL shape[2]=ULLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=M p1[1]=f p1[2]=A p2[-1]=pl p2[0]=Mi p2[1]=fr p2[2]=Ap p3[-1]=pla p3[0]=Mir p3[1]=fro p3[2]=App p4[-1]=play p4[0]=Mira p4[1]=from p4[2]=Appl s1[-1]=y s1[0]=s s1[1]=m s1[2]=e s2[-1]=ay s2[0]=es s2[1]=om s2[2]=le s3[-1]=lay s3[0]=les s3[1]=rom s3[2]=ple s4[-1]=play s4[0]=cles s4[1]=from s4[2]=pple 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Miracles w[0]|w[1]=Miracles|from w[1]|w[2]=from|Apple pos[-1]|pos[0]=VB|NNPS pos[0]|pos[1]=NNPS|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=from w[1..4]=Apple w[1..4]=Music +O w[-2]=play w[-1]=Miracles w[0]=from w[1]=Apple w[2]=Music wl[-2]=play wl[-1]=miracles wl[0]=from wl[1]=apple wl[2]=music pos[-2]=VB pos[-1]=NNPS pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=LLLL shape[1]=ULLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=M p1[0]=f p1[1]=A p1[2]=M p2[-2]=pl p2[-1]=Mi p2[0]=fr p2[1]=Ap p2[2]=Mu p3[-2]=pla p3[-1]=Mir p3[0]=fro p3[1]=App p3[2]=Mus p4[-2]=play p4[-1]=Mira p4[0]=from p4[1]=Appl p4[2]=Musi s1[-2]=y s1[-1]=s s1[0]=m s1[1]=e s1[2]=c s2[-2]=ay s2[-1]=es s2[0]=om s2[1]=le s2[2]=ic s3[-2]=lay s3[-1]=les s3[0]=rom s3[1]=ple s3[2]=sic s4[-2]=play s4[-1]=cles s4[0]=from s4[1]=pple s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Miracles w[-1]|w[0]=Miracles|from w[0]|w[1]=from|Apple w[1]|w[2]=Apple|Music pos[-2]|pos[-1]=VB|NNPS pos[-1]|pos[0]=NNPS|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Miracles w[1..4]=Apple w[1..4]=Music +service w[-2]=Miracles w[-1]=from w[0]=Apple w[1]=Music wl[-2]=miracles wl[-1]=from wl[0]=apple wl[1]=music pos[-2]=NNPS pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLLL shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=M p1[-1]=f p1[0]=A p1[1]=M p2[-2]=Mi p2[-1]=fr p2[0]=Ap p2[1]=Mu p3[-2]=Mir p3[-1]=fro p3[0]=App p3[1]=Mus p4[-2]=Mira p4[-1]=from p4[0]=Appl p4[1]=Musi s1[-2]=s s1[-1]=m s1[0]=e s1[1]=c s2[-2]=es s2[-1]=om s2[0]=le s2[1]=ic s3[-2]=les s3[-1]=rom s3[0]=ple s3[1]=sic s4[-2]=cles s4[-1]=from s4[0]=pple s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Miracles|from w[-1]|w[0]=from|Apple w[0]|w[1]=Apple|Music pos[-2]|pos[-1]=NNPS|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Miracles w[-4..-1]=from w[1..4]=Music +service w[-2]=from w[-1]=Apple w[0]=Music wl[-2]=from wl[-1]=apple wl[0]=music pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=f p1[-1]=A p1[0]=M p2[-2]=fr p2[-1]=Ap p2[0]=Mu p3[-2]=fro p3[-1]=App p3[0]=Mus p4[-2]=from p4[-1]=Appl p4[0]=Musi s1[-2]=m s1[-1]=e s1[0]=c s2[-2]=om s2[-1]=le s2[0]=ic s3[-2]=rom s3[-1]=ple s3[0]=sic s4[-2]=from s4[-1]=pple s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=from|Apple w[-1]|w[0]=Apple|Music pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Miracles w[-4..-1]=from w[-4..-1]=Apple __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=song w[1..4]=Dark __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=song wl[-1]=can wl[0]=you wl[1]=play wl[2]=song pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=s p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=so p3[-1]=can p3[0]=you p3[1]=pla p3[2]=son p4[-1]= p4[0]= p4[1]=play p4[2]=song s1[-1]=n s1[0]=u s1[1]=y s1[2]=g s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=ng s3[-1]=can s3[0]=you s3[1]=lay s3[2]=ong s4[-1]= s4[0]= s4[1]=play s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|song pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=play w[1..4]=song w[1..4]=Dark w[1..4]=Horse +O w[-2]=can w[-1]=you w[0]=play w[1]=song w[2]=Dark wl[-2]=can wl[-1]=you wl[0]=play wl[1]=song wl[2]=dark pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=NN pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=c p1[-1]=y p1[0]=p p1[1]=s p1[2]=D p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=so p2[2]=Da p3[-2]=can p3[-1]=you p3[0]=pla p3[1]=son p3[2]=Dar p4[-2]= p4[-1]= p4[0]=play p4[1]=song p4[2]=Dark s1[-2]=n s1[-1]=u s1[0]=y s1[1]=g s1[2]=k s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=ng s2[2]=rk s3[-2]=can s3[-1]=you s3[0]=lay s3[1]=ong s3[2]=ark s4[-2]= s4[-1]= s4[0]=play s4[1]=song s4[2]=Dark 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|song w[1]|w[2]=song|Dark pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=you w[1..4]=song w[1..4]=Dark w[1..4]=Horse +O w[-2]=you w[-1]=play w[0]=song w[1]=Dark w[2]=Horse wl[-2]=you wl[-1]=play wl[0]=song wl[1]=dark wl[2]=horse pos[-2]=PRP pos[-1]=VB pos[0]=NN pos[1]=JJ pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=y p1[-1]=p p1[0]=s p1[1]=D p1[2]=H p2[-2]=yo p2[-1]=pl p2[0]=so p2[1]=Da p2[2]=Ho p3[-2]=you p3[-1]=pla p3[0]=son p3[1]=Dar p3[2]=Hor p4[-2]= p4[-1]=play p4[0]=song p4[1]=Dark p4[2]=Hors s1[-2]=u s1[-1]=y s1[0]=g s1[1]=k s1[2]=e s2[-2]=ou s2[-1]=ay s2[0]=ng s2[1]=rk s2[2]=se s3[-2]=you s3[-1]=lay s3[0]=ong s3[1]=ark s3[2]=rse s4[-2]= s4[-1]=play s4[0]=song s4[1]=Dark s4[2]=orse 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|song w[0]|w[1]=song|Dark w[1]|w[2]=Dark|Horse pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|JJ pos[1]|pos[2]=JJ|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[1..4]=Dark w[1..4]=Horse +song w[-2]=play w[-1]=song w[0]=Dark w[1]=Horse wl[-2]=play wl[-1]=song wl[0]=dark wl[1]=horse pos[-2]=VB pos[-1]=NN pos[0]=JJ pos[1]=JJ chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLL shape[1]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=p p1[-1]=s p1[0]=D p1[1]=H p2[-2]=pl p2[-1]=so p2[0]=Da p2[1]=Ho p3[-2]=pla p3[-1]=son p3[0]=Dar p3[1]=Hor p4[-2]=play p4[-1]=song p4[0]=Dark p4[1]=Hors s1[-2]=y s1[-1]=g s1[0]=k s1[1]=e s2[-2]=ay s2[-1]=ng s2[0]=rk s2[1]=se s3[-2]=lay s3[-1]=ong s3[0]=ark s3[1]=rse s4[-2]=play s4[-1]=song s4[0]=Dark s4[1]=orse 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Dark w[0]|w[1]=Dark|Horse pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|JJ pos[0]|pos[1]=JJ|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[-4..-1]=song w[1..4]=Horse +song w[-2]=song w[-1]=Dark w[0]=Horse wl[-2]=song wl[-1]=dark wl[0]=horse pos[-2]=NN pos[-1]=JJ pos[0]=JJ chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=s p1[-1]=D p1[0]=H p2[-2]=so p2[-1]=Da p2[0]=Ho p3[-2]=son p3[-1]=Dar p3[0]=Hor p4[-2]=song p4[-1]=Dark p4[0]=Hors s1[-2]=g s1[-1]=k s1[0]=e s2[-2]=ng s2[-1]=rk s2[0]=se s3[-2]=ong s3[-1]=ark s3[0]=rse s4[-2]=song s4[-1]=Dark s4[0]=orse 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|Dark w[-1]|w[0]=Dark|Horse pos[-2]|pos[-1]=NN|JJ pos[-1]|pos[0]=JJ|JJ chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=you w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Dark __EOS__ + +O w[0]=play w[1]=Empty w[2]=Sky wl[0]=play wl[1]=empty wl[2]=sky pos[0]=VB pos[1]=JJ pos[2]=JJ chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLL shape[2]=ULL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=E p1[2]=S p2[0]=pl p2[1]=Em p2[2]=Sk p3[0]=pla p3[1]=Emp p3[2]=Sky p4[0]=play p4[1]=Empt p4[2]= s1[0]=y s1[1]=y s1[2]=y s2[0]=ay s2[1]=ty s2[2]=ky s3[0]=lay s3[1]=pty s3[2]=Sky s4[0]=play s4[1]=mpty s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Empty w[1]|w[2]=Empty|Sky pos[0]|pos[1]=VB|JJ pos[1]|pos[2]=JJ|JJ chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Empty w[1..4]=Sky w[1..4]=by w[1..4]=Elton __BOS__ +album w[-1]=play w[0]=Empty w[1]=Sky w[2]=by wl[-1]=play wl[0]=empty wl[1]=sky wl[2]=by pos[-1]=VB pos[0]=JJ pos[1]=JJ pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=E p1[1]=S p1[2]=b p2[-1]=pl p2[0]=Em p2[1]=Sk p2[2]=by p3[-1]=pla p3[0]=Emp p3[1]=Sky p3[2]= p4[-1]=play p4[0]=Empt p4[1]= p4[2]= s1[-1]=y s1[0]=y s1[1]=y s1[2]=y s2[-1]=ay s2[0]=ty s2[1]=ky s2[2]=by s3[-1]=lay s3[0]=pty s3[1]=Sky s3[2]= s4[-1]=play s4[0]=mpty s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Empty w[0]|w[1]=Empty|Sky w[1]|w[2]=Sky|by pos[-1]|pos[0]=VB|JJ pos[0]|pos[1]=JJ|JJ pos[1]|pos[2]=JJ|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Sky w[1..4]=by w[1..4]=Elton w[1..4]=John +album w[-2]=play w[-1]=Empty w[0]=Sky w[1]=by w[2]=Elton wl[-2]=play wl[-1]=empty wl[0]=sky wl[1]=by wl[2]=elton pos[-2]=VB pos[-1]=JJ pos[0]=JJ pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=E p1[0]=S p1[1]=b p1[2]=E p2[-2]=pl p2[-1]=Em p2[0]=Sk p2[1]=by p2[2]=El p3[-2]=pla p3[-1]=Emp p3[0]=Sky p3[1]= p3[2]=Elt p4[-2]=play p4[-1]=Empt p4[0]= p4[1]= p4[2]=Elto s1[-2]=y s1[-1]=y s1[0]=y s1[1]=y s1[2]=n s2[-2]=ay s2[-1]=ty s2[0]=ky s2[1]=by s2[2]=on s3[-2]=lay s3[-1]=pty s3[0]=Sky s3[1]= s3[2]=ton s4[-2]=play s4[-1]=mpty s4[0]= s4[1]= s4[2]=lton 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Empty w[-1]|w[0]=Empty|Sky w[0]|w[1]=Sky|by w[1]|w[2]=by|Elton pos[-2]|pos[-1]=VB|JJ pos[-1]|pos[0]=JJ|JJ pos[0]|pos[1]=JJ|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Empty w[1..4]=by w[1..4]=Elton w[1..4]=John +O w[-2]=Empty w[-1]=Sky w[0]=by w[1]=Elton w[2]=John wl[-2]=empty wl[-1]=sky wl[0]=by wl[1]=elton wl[2]=john pos[-2]=JJ pos[-1]=JJ pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=ULL shape[0]=LL shape[1]=ULLLL shape[2]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=E p1[-1]=S p1[0]=b p1[1]=E p1[2]=J p2[-2]=Em p2[-1]=Sk p2[0]=by p2[1]=El p2[2]=Jo p3[-2]=Emp p3[-1]=Sky p3[0]= p3[1]=Elt p3[2]=Joh p4[-2]=Empt p4[-1]= p4[0]= p4[1]=Elto p4[2]=John s1[-2]=y s1[-1]=y s1[0]=y s1[1]=n s1[2]=n s2[-2]=ty s2[-1]=ky s2[0]=by s2[1]=on s2[2]=hn s3[-2]=pty s3[-1]=Sky s3[0]= s3[1]=ton s3[2]=ohn s4[-2]=mpty s4[-1]= s4[0]= s4[1]=lton s4[2]=John 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Empty|Sky w[-1]|w[0]=Sky|by w[0]|w[1]=by|Elton w[1]|w[2]=Elton|John pos[-2]|pos[-1]=JJ|JJ pos[-1]|pos[0]=JJ|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Empty w[-4..-1]=Sky w[1..4]=Elton w[1..4]=John +artist w[-2]=Sky w[-1]=by w[0]=Elton w[1]=John wl[-2]=sky wl[-1]=by wl[0]=elton wl[1]=john pos[-2]=JJ pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=S p1[-1]=b p1[0]=E p1[1]=J p2[-2]=Sk p2[-1]=by p2[0]=El p2[1]=Jo p3[-2]=Sky p3[-1]= p3[0]=Elt p3[1]=Joh p4[-2]= p4[-1]= p4[0]=Elto p4[1]=John s1[-2]=y s1[-1]=y s1[0]=n s1[1]=n s2[-2]=ky s2[-1]=by s2[0]=on s2[1]=hn s3[-2]=Sky s3[-1]= s3[0]=ton s3[1]=ohn s4[-2]= s4[-1]= s4[0]=lton s4[1]=John 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Sky|by w[-1]|w[0]=by|Elton w[0]|w[1]=Elton|John pos[-2]|pos[-1]=JJ|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Empty w[-4..-1]=Sky w[-4..-1]=by w[1..4]=John +artist w[-2]=by w[-1]=Elton w[0]=John wl[-2]=by wl[-1]=elton wl[0]=john pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=E p1[0]=J p2[-2]=by p2[-1]=El p2[0]=Jo p3[-2]= p3[-1]=Elt p3[0]=Joh p4[-2]= p4[-1]=Elto p4[0]=John s1[-2]=y s1[-1]=n s1[0]=n s2[-2]=by s2[-1]=on s2[0]=hn s3[-2]= s3[-1]=ton s3[0]=ohn s4[-2]= s4[-1]=lton s4[0]=John 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Elton w[-1]|w[0]=Elton|John pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Empty w[-4..-1]=Sky w[-4..-1]=by w[-4..-1]=Elton __EOS__ + +O w[0]=play w[1]=song w[2]=Killer wl[0]=play wl[1]=song wl[2]=killer pos[0]=VBP pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=K p2[0]=pl p2[1]=so p2[2]=Ki p3[0]=pla p3[1]=son p3[2]=Kil p4[0]=play p4[1]=song p4[2]=Kill s1[0]=y s1[1]=g s1[2]=r s2[0]=ay s2[1]=ng s2[2]=er s3[0]=lay s3[1]=ong s3[2]=ler s4[0]=play s4[1]=song s4[2]=ller 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|Killer pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=Killer w[1..4]=Queen w[1..4]=by __BOS__ +O w[-1]=play w[0]=song w[1]=Killer w[2]=Queen wl[-1]=play wl[0]=song wl[1]=killer wl[2]=queen pos[-1]=VBP pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLLL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=K p1[2]=Q p2[-1]=pl p2[0]=so p2[1]=Ki p2[2]=Qu p3[-1]=pla p3[0]=son p3[1]=Kil p3[2]=Que p4[-1]=play p4[0]=song p4[1]=Kill p4[2]=Quee s1[-1]=y s1[0]=g s1[1]=r s1[2]=n s2[-1]=ay s2[0]=ng s2[1]=er s2[2]=en s3[-1]=lay s3[0]=ong s3[1]=ler s3[2]=een s4[-1]=play s4[0]=song s4[1]=ller s4[2]=ueen 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|Killer w[1]|w[2]=Killer|Queen pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Killer w[1..4]=Queen w[1..4]=by w[1..4]=Queen +song w[-2]=play w[-1]=song w[0]=Killer w[1]=Queen w[2]=by wl[-2]=play wl[-1]=song wl[0]=killer wl[1]=queen wl[2]=by pos[-2]=VBP pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLLL shape[1]=ULLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=s p1[0]=K p1[1]=Q p1[2]=b p2[-2]=pl p2[-1]=so p2[0]=Ki p2[1]=Qu p2[2]=by p3[-2]=pla p3[-1]=son p3[0]=Kil p3[1]=Que p3[2]= p4[-2]=play p4[-1]=song p4[0]=Kill p4[1]=Quee p4[2]= s1[-2]=y s1[-1]=g s1[0]=r s1[1]=n s1[2]=y s2[-2]=ay s2[-1]=ng s2[0]=er s2[1]=en s2[2]=by s3[-2]=lay s3[-1]=ong s3[0]=ler s3[1]=een s3[2]= s4[-2]=play s4[-1]=song s4[0]=ller s4[1]=ueen s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Killer w[0]|w[1]=Killer|Queen w[1]|w[2]=Queen|by pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=song w[1..4]=Queen w[1..4]=by w[1..4]=Queen +song w[-2]=song w[-1]=Killer w[0]=Queen w[1]=by w[2]=Queen wl[-2]=song wl[-1]=killer wl[0]=queen wl[1]=by wl[2]=queen pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=ULLLL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=K p1[0]=Q p1[1]=b p1[2]=Q p2[-2]=so p2[-1]=Ki p2[0]=Qu p2[1]=by p2[2]=Qu p3[-2]=son p3[-1]=Kil p3[0]=Que p3[1]= p3[2]=Que p4[-2]=song p4[-1]=Kill p4[0]=Quee p4[1]= p4[2]=Quee s1[-2]=g s1[-1]=r s1[0]=n s1[1]=y s1[2]=n s2[-2]=ng s2[-1]=er s2[0]=en s2[1]=by s2[2]=en s3[-2]=ong s3[-1]=ler s3[0]=een s3[1]= s3[2]=een s4[-2]=song s4[-1]=ller s4[0]=ueen s4[1]= s4[2]=ueen 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Killer w[-1]|w[0]=Killer|Queen w[0]|w[1]=Queen|by w[1]|w[2]=by|Queen pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Killer w[1..4]=by w[1..4]=Queen +O w[-2]=Killer w[-1]=Queen w[0]=by w[1]=Queen wl[-2]=killer wl[-1]=queen wl[0]=by wl[1]=queen pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULLLLL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=K p1[-1]=Q p1[0]=b p1[1]=Q p2[-2]=Ki p2[-1]=Qu p2[0]=by p2[1]=Qu p3[-2]=Kil p3[-1]=Que p3[0]= p3[1]=Que p4[-2]=Kill p4[-1]=Quee p4[0]= p4[1]=Quee s1[-2]=r s1[-1]=n s1[0]=y s1[1]=n s2[-2]=er s2[-1]=en s2[0]=by s2[1]=en s3[-2]=ler s3[-1]=een s3[0]= s3[1]=een s4[-2]=ller s4[-1]=ueen s4[0]= s4[1]=ueen 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Killer|Queen w[-1]|w[0]=Queen|by w[0]|w[1]=by|Queen pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Killer w[-4..-1]=Queen w[1..4]=Queen +artist w[-2]=Queen w[-1]=by w[0]=Queen wl[-2]=queen wl[-1]=by wl[0]=queen pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=Q p1[-1]=b p1[0]=Q p2[-2]=Qu p2[-1]=by p2[0]=Qu p3[-2]=Que p3[-1]= p3[0]=Que p4[-2]=Quee p4[-1]= p4[0]=Quee s1[-2]=n s1[-1]=y s1[0]=n s2[-2]=en s2[-1]=by s2[0]=en s3[-2]=een s3[-1]= s3[0]=een s4[-2]=ueen s4[-1]= s4[0]=ueen 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Queen|by w[-1]|w[0]=by|Queen pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=song w[-4..-1]=Killer w[-4..-1]=Queen w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=She's w[2]=Got wl[0]=play wl[1]=she's wl[2]=got pos[0]=VB pos[1]=PRP pos[2]=PRP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL'L shape[2]=ULL shaped[0]=L shaped[1]=UL'L shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=S p1[2]=G p2[0]=pl p2[1]=Sh p2[2]=Go p3[0]=pla p3[1]=She p3[2]=Got p4[0]=play p4[1]=She' p4[2]= s1[0]=y s1[1]=s s1[2]=t s2[0]=ay s2[1]='s s2[2]=ot s3[0]=lay s3[1]=e's s3[2]=Got s4[0]=play s4[1]=he's s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=yes cs[2]=no w[0]|w[1]=play|She's w[1]|w[2]=She's|Got pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|PRP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL'L shaped[1]|shaped[2]=UL'L|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=She's w[1..4]=Got w[1..4]=the w[1..4]=Look __BOS__ +song w[-1]=play w[0]=She's w[1]=Got w[2]=the wl[-1]=play wl[0]=she's wl[1]=got wl[2]=the pos[-1]=VB pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULL'L shape[1]=ULL shape[2]=LLL shaped[-1]=L shaped[0]=UL'L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=S p1[1]=G p1[2]=t p2[-1]=pl p2[0]=Sh p2[1]=Go p2[2]=th p3[-1]=pla p3[0]=She p3[1]=Got p3[2]=the p4[-1]=play p4[0]=She' p4[1]= p4[2]= s1[-1]=y s1[0]=s s1[1]=t s1[2]=e s2[-1]=ay s2[0]='s s2[1]=ot s2[2]=he s3[-1]=lay s3[0]=e's s3[1]=Got s3[2]=the s4[-1]=play s4[0]=he's s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=yes cs[1]=no cs[2]=no w[-1]|w[0]=play|She's w[0]|w[1]=She's|Got w[1]|w[2]=Got|the pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL'L shaped[0]|shaped[1]=UL'L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Got w[1..4]=the w[1..4]=Look w[1..4]=by +song w[-2]=play w[-1]=She's w[0]=Got w[1]=the w[2]=Look wl[-2]=play wl[-1]=she's wl[0]=got wl[1]=the wl[2]=look pos[-2]=VB pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULL'L shape[0]=ULL shape[1]=LLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL'L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=S p1[0]=G p1[1]=t p1[2]=L p2[-2]=pl p2[-1]=Sh p2[0]=Go p2[1]=th p2[2]=Lo p3[-2]=pla p3[-1]=She p3[0]=Got p3[1]=the p3[2]=Loo p4[-2]=play p4[-1]=She' p4[0]= p4[1]= p4[2]=Look s1[-2]=y s1[-1]=s s1[0]=t s1[1]=e s1[2]=k s2[-2]=ay s2[-1]='s s2[0]=ot s2[1]=he s2[2]=ok s3[-2]=lay s3[-1]=e's s3[0]=Got s3[1]=the s3[2]=ook s4[-2]=play s4[-1]=he's s4[0]= s4[1]= s4[2]=Look 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|She's w[-1]|w[0]=She's|Got w[0]|w[1]=Got|the w[1]|w[2]=the|Look pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL'L shaped[-1]|shaped[0]=UL'L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=She's w[1..4]=the w[1..4]=Look w[1..4]=by w[1..4]=Roxette +song w[-2]=She's w[-1]=Got w[0]=the w[1]=Look w[2]=by wl[-2]=she's wl[-1]=got wl[0]=the wl[1]=look wl[2]=by pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULL'L shape[-1]=ULL shape[0]=LLL shape[1]=ULLL shape[2]=LL shaped[-2]=UL'L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=S p1[-1]=G p1[0]=t p1[1]=L p1[2]=b p2[-2]=Sh p2[-1]=Go p2[0]=th p2[1]=Lo p2[2]=by p3[-2]=She p3[-1]=Got p3[0]=the p3[1]=Loo p3[2]= p4[-2]=She' p4[-1]= p4[0]= p4[1]=Look p4[2]= s1[-2]=s s1[-1]=t s1[0]=e s1[1]=k s1[2]=y s2[-2]='s s2[-1]=ot s2[0]=he s2[1]=ok s2[2]=by s3[-2]=e's s3[-1]=Got s3[0]=the s3[1]=ook s3[2]= s4[-2]=he's s4[-1]= s4[0]= s4[1]=Look s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=She's|Got w[-1]|w[0]=Got|the w[0]|w[1]=the|Look w[1]|w[2]=Look|by pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL'L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=She's w[-4..-1]=Got w[1..4]=Look w[1..4]=by w[1..4]=Roxette +song w[-2]=Got w[-1]=the w[0]=Look w[1]=by w[2]=Roxette wl[-2]=got wl[-1]=the wl[0]=look wl[1]=by wl[2]=roxette pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=NNP pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULL shape[-1]=LLL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=G p1[-1]=t p1[0]=L p1[1]=b p1[2]=R p2[-2]=Go p2[-1]=th p2[0]=Lo p2[1]=by p2[2]=Ro p3[-2]=Got p3[-1]=the p3[0]=Loo p3[1]= p3[2]=Rox p4[-2]= p4[-1]= p4[0]=Look p4[1]= p4[2]=Roxe s1[-2]=t s1[-1]=e s1[0]=k s1[1]=y s1[2]=e s2[-2]=ot s2[-1]=he s2[0]=ok s2[1]=by s2[2]=te s3[-2]=Got s3[-1]=the s3[0]=ook s3[1]= s3[2]=tte s4[-2]= s4[-1]= s4[0]=Look s4[1]= s4[2]=ette 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Got|the w[-1]|w[0]=the|Look w[0]|w[1]=Look|by w[1]|w[2]=by|Roxette pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=She's w[-4..-1]=Got w[-4..-1]=the w[1..4]=by w[1..4]=Roxette +O w[-2]=the w[-1]=Look w[0]=by w[1]=Roxette wl[-2]=the wl[-1]=look wl[0]=by wl[1]=roxette pos[-2]=PRP pos[-1]=PRP pos[0]=NNP pos[1]=IN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=t p1[-1]=L p1[0]=b p1[1]=R p2[-2]=th p2[-1]=Lo p2[0]=by p2[1]=Ro p3[-2]=the p3[-1]=Loo p3[0]= p3[1]=Rox p4[-2]= p4[-1]=Look p4[0]= p4[1]=Roxe s1[-2]=e s1[-1]=k s1[0]=y s1[1]=e s2[-2]=he s2[-1]=ok s2[0]=by s2[1]=te s3[-2]=the s3[-1]=ook s3[0]= s3[1]=tte s4[-2]= s4[-1]=Look s4[0]= s4[1]=ette 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=the|Look w[-1]|w[0]=Look|by w[0]|w[1]=by|Roxette pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|NNP pos[0]|pos[1]=NNP|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=She's w[-4..-1]=Got w[-4..-1]=the w[-4..-1]=Look w[1..4]=Roxette +artist w[-2]=Look w[-1]=by w[0]=Roxette wl[-2]=look wl[-1]=by wl[0]=roxette pos[-2]=PRP pos[-1]=NNP pos[0]=IN chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=L p1[-1]=b p1[0]=R p2[-2]=Lo p2[-1]=by p2[0]=Ro p3[-2]=Loo p3[-1]= p3[0]=Rox p4[-2]=Look p4[-1]= p4[0]=Roxe s1[-2]=k s1[-1]=y s1[0]=e s2[-2]=ok s2[-1]=by s2[0]=te s3[-2]=ook s3[-1]= s3[0]=tte s4[-2]=Look s4[-1]= s4[0]=ette 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Look|by w[-1]|w[0]=by|Roxette pos[-2]|pos[-1]=PRP|NNP pos[-1]|pos[0]=NNP|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Got w[-4..-1]=the w[-4..-1]=Look w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=Gospel w[2]=songs wl[0]=play wl[1]=gospel wl[2]=songs pos[0]=VB pos[1]=NN pos[2]=NNS chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLL shape[2]=LLLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=G p1[2]=s p2[0]=pl p2[1]=Go p2[2]=so p3[0]=pla p3[1]=Gos p3[2]=son p4[0]=play p4[1]=Gosp p4[2]=song s1[0]=y s1[1]=l s1[2]=s s2[0]=ay s2[1]=el s2[2]=gs s3[0]=lay s3[1]=pel s3[2]=ngs s4[0]=play s4[1]=spel s4[2]=ongs 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Gospel w[1]|w[2]=Gospel|songs pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNS chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Gospel w[1..4]=songs w[1..4]=on w[1..4]=Spotify __BOS__ +genre w[-1]=play w[0]=Gospel w[1]=songs w[2]=on wl[-1]=play wl[0]=gospel wl[1]=songs wl[2]=on pos[-1]=VB pos[0]=NN pos[1]=NNS pos[2]=IN chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=ULLLLL shape[1]=LLLLL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=G p1[1]=s p1[2]=o p2[-1]=pl p2[0]=Go p2[1]=so p2[2]=on p3[-1]=pla p3[0]=Gos p3[1]=son p3[2]= p4[-1]=play p4[0]=Gosp p4[1]=song p4[2]= s1[-1]=y s1[0]=l s1[1]=s s1[2]=n s2[-1]=ay s2[0]=el s2[1]=gs s2[2]=on s3[-1]=lay s3[0]=pel s3[1]=ngs s3[2]= s4[-1]=play s4[0]=spel s4[1]=ongs s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Gospel w[0]|w[1]=Gospel|songs w[1]|w[2]=songs|on pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNS pos[1]|pos[2]=NNS|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=songs w[1..4]=on w[1..4]=Spotify +O w[-2]=play w[-1]=Gospel w[0]=songs w[1]=on w[2]=Spotify wl[-2]=play wl[-1]=gospel wl[0]=songs wl[1]=on wl[2]=spotify pos[-2]=VB pos[-1]=NN pos[0]=NNS pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=G p1[0]=s p1[1]=o p1[2]=S p2[-2]=pl p2[-1]=Go p2[0]=so p2[1]=on p2[2]=Sp p3[-2]=pla p3[-1]=Gos p3[0]=son p3[1]= p3[2]=Spo p4[-2]=play p4[-1]=Gosp p4[0]=song p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=l s1[0]=s s1[1]=n s1[2]=y s2[-2]=ay s2[-1]=el s2[0]=gs s2[1]=on s2[2]=fy s3[-2]=lay s3[-1]=pel s3[0]=ngs s3[1]= s3[2]=ify s4[-2]=play s4[-1]=spel s4[0]=ongs s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Gospel w[-1]|w[0]=Gospel|songs w[0]|w[1]=songs|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Gospel w[1..4]=on w[1..4]=Spotify +O w[-2]=Gospel w[-1]=songs w[0]=on w[1]=Spotify wl[-2]=gospel wl[-1]=songs wl[0]=on wl[1]=spotify pos[-2]=NN pos[-1]=NNS pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=G p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Go p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=Gos p3[-1]=son p3[0]= p3[1]=Spo p4[-2]=Gosp p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=l s1[-1]=s s1[0]=n s1[1]=y s2[-2]=el s2[-1]=gs s2[0]=on s2[1]=fy s3[-2]=pel s3[-1]=ngs s3[0]= s3[1]=ify s4[-2]=spel s4[-1]=ongs s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Gospel|songs w[-1]|w[0]=songs|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NN|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Gospel w[-4..-1]=songs w[1..4]=Spotify +service w[-2]=songs w[-1]=on w[0]=Spotify wl[-2]=songs wl[-1]=on wl[0]=spotify pos[-2]=NNS pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=s s1[-1]=n s1[0]=y s2[-2]=gs s2[-1]=on s2[0]=fy s3[-2]=ngs s3[-1]= s3[0]=ify s4[-2]=ongs s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=songs|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Gospel w[-4..-1]=songs w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=Amy w[2]=Winehouse wl[0]=play wl[1]=amy wl[2]=winehouse pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=A p1[2]=W p2[0]=pl p2[1]=Am p2[2]=Wi p3[0]=pla p3[1]=Amy p3[2]=Win p4[0]=play p4[1]= p4[2]=Wine s1[0]=y s1[1]=y s1[2]=e s2[0]=ay s2[1]=my s2[2]=se s3[0]=lay s3[1]=Amy s3[2]=use s4[0]=play s4[1]= s4[2]=ouse 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Amy w[1]|w[2]=Amy|Winehouse pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Amy w[1..4]=Winehouse __BOS__ +artist w[-1]=play w[0]=Amy w[1]=Winehouse wl[-1]=play wl[0]=amy wl[1]=winehouse pos[-1]=VB pos[0]=NNP pos[1]=NNP chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=A p1[1]=W p2[-1]=pl p2[0]=Am p2[1]=Wi p3[-1]=pla p3[0]=Amy p3[1]=Win p4[-1]=play p4[0]= p4[1]=Wine s1[-1]=y s1[0]=y s1[1]=e s2[-1]=ay s2[0]=my s2[1]=se s3[-1]=lay s3[0]=Amy s3[1]=use s4[-1]=play s4[0]= s4[1]=ouse 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|Amy w[0]|w[1]=Amy|Winehouse pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Winehouse +artist w[-2]=play w[-1]=Amy w[0]=Winehouse wl[-2]=play wl[-1]=amy wl[0]=winehouse pos[-2]=VB pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=A p1[0]=W p2[-2]=pl p2[-1]=Am p2[0]=Wi p3[-2]=pla p3[-1]=Amy p3[0]=Win p4[-2]=play p4[-1]= p4[0]=Wine s1[-2]=y s1[-1]=y s1[0]=e s2[-2]=ay s2[-1]=my s2[0]=se s3[-2]=lay s3[-1]=Amy s3[0]=use s4[-2]=play s4[-1]= s4[0]=ouse 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|Amy w[-1]|w[0]=Amy|Winehouse pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Amy __EOS__ + +O w[0]=play w[1]=Dangerous w[2]=feat wl[0]=play wl[1]=dangerous wl[2]=feat pos[0]=VB pos[1]=JJ pos[2]=NN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLLL shape[2]=LLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=D p1[2]=f p2[0]=pl p2[1]=Da p2[2]=fe p3[0]=pla p3[1]=Dan p3[2]=fea p4[0]=play p4[1]=Dang p4[2]=feat s1[0]=y s1[1]=s s1[2]=t s2[0]=ay s2[1]=us s2[2]=at s3[0]=lay s3[1]=ous s3[2]=eat s4[0]=play s4[1]=rous s4[2]=feat 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Dangerous w[1]|w[2]=Dangerous|feat pos[0]|pos[1]=VB|JJ pos[1]|pos[2]=JJ|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Dangerous w[1..4]=feat w[1..4]=Sam w[1..4]=Martin __BOS__ +song w[-1]=play w[0]=Dangerous w[1]=feat w[2]=Sam wl[-1]=play wl[0]=dangerous wl[1]=feat wl[2]=sam pos[-1]=VB pos[0]=JJ pos[1]=NN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLLLL shape[1]=LLLL shape[2]=ULL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=D p1[1]=f p1[2]=S p2[-1]=pl p2[0]=Da p2[1]=fe p2[2]=Sa p3[-1]=pla p3[0]=Dan p3[1]=fea p3[2]=Sam p4[-1]=play p4[0]=Dang p4[1]=feat p4[2]= s1[-1]=y s1[0]=s s1[1]=t s1[2]=m s2[-1]=ay s2[0]=us s2[1]=at s2[2]=am s3[-1]=lay s3[0]=ous s3[1]=eat s3[2]=Sam s4[-1]=play s4[0]=rous s4[1]=feat s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Dangerous w[0]|w[1]=Dangerous|feat w[1]|w[2]=feat|Sam pos[-1]|pos[0]=VB|JJ pos[0]|pos[1]=JJ|NN pos[1]|pos[2]=NN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=feat w[1..4]=Sam w[1..4]=Martin w[1..4]=by +O w[-2]=play w[-1]=Dangerous w[0]=feat w[1]=Sam w[2]=Martin wl[-2]=play wl[-1]=dangerous wl[0]=feat wl[1]=sam wl[2]=martin pos[-2]=VB pos[-1]=JJ pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLLLL shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=D p1[0]=f p1[1]=S p1[2]=M p2[-2]=pl p2[-1]=Da p2[0]=fe p2[1]=Sa p2[2]=Ma p3[-2]=pla p3[-1]=Dan p3[0]=fea p3[1]=Sam p3[2]=Mar p4[-2]=play p4[-1]=Dang p4[0]=feat p4[1]= p4[2]=Mart s1[-2]=y s1[-1]=s s1[0]=t s1[1]=m s1[2]=n s2[-2]=ay s2[-1]=us s2[0]=at s2[1]=am s2[2]=in s3[-2]=lay s3[-1]=ous s3[0]=eat s3[1]=Sam s3[2]=tin s4[-2]=play s4[-1]=rous s4[0]=feat s4[1]= s4[2]=rtin 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Dangerous w[-1]|w[0]=Dangerous|feat w[0]|w[1]=feat|Sam w[1]|w[2]=Sam|Martin pos[-2]|pos[-1]=VB|JJ pos[-1]|pos[0]=JJ|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Dangerous w[1..4]=Sam w[1..4]=Martin w[1..4]=by w[1..4]=David +artist w[-2]=Dangerous w[-1]=feat w[0]=Sam w[1]=Martin w[2]=by wl[-2]=dangerous wl[-1]=feat wl[0]=sam wl[1]=martin wl[2]=by pos[-2]=JJ pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLLLLLLL shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=D p1[-1]=f p1[0]=S p1[1]=M p1[2]=b p2[-2]=Da p2[-1]=fe p2[0]=Sa p2[1]=Ma p2[2]=by p3[-2]=Dan p3[-1]=fea p3[0]=Sam p3[1]=Mar p3[2]= p4[-2]=Dang p4[-1]=feat p4[0]= p4[1]=Mart p4[2]= s1[-2]=s s1[-1]=t s1[0]=m s1[1]=n s1[2]=y s2[-2]=us s2[-1]=at s2[0]=am s2[1]=in s2[2]=by s3[-2]=ous s3[-1]=eat s3[0]=Sam s3[1]=tin s3[2]= s4[-2]=rous s4[-1]=feat s4[0]= s4[1]=rtin s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Dangerous|feat w[-1]|w[0]=feat|Sam w[0]|w[1]=Sam|Martin w[1]|w[2]=Martin|by pos[-2]|pos[-1]=JJ|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Dangerous w[-4..-1]=feat w[1..4]=Martin w[1..4]=by w[1..4]=David w[1..4]=Guetta +artist w[-2]=feat w[-1]=Sam w[0]=Martin w[1]=by w[2]=David wl[-2]=feat wl[-1]=sam wl[0]=martin wl[1]=by wl[2]=david pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=f p1[-1]=S p1[0]=M p1[1]=b p1[2]=D p2[-2]=fe p2[-1]=Sa p2[0]=Ma p2[1]=by p2[2]=Da p3[-2]=fea p3[-1]=Sam p3[0]=Mar p3[1]= p3[2]=Dav p4[-2]=feat p4[-1]= p4[0]=Mart p4[1]= p4[2]=Davi s1[-2]=t s1[-1]=m s1[0]=n s1[1]=y s1[2]=d s2[-2]=at s2[-1]=am s2[0]=in s2[1]=by s2[2]=id s3[-2]=eat s3[-1]=Sam s3[0]=tin s3[1]= s3[2]=vid s4[-2]=feat s4[-1]= s4[0]=rtin s4[1]= s4[2]=avid 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=feat|Sam w[-1]|w[0]=Sam|Martin w[0]|w[1]=Martin|by w[1]|w[2]=by|David pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Dangerous w[-4..-1]=feat w[-4..-1]=Sam w[1..4]=by w[1..4]=David w[1..4]=Guetta w[1..4]=song +O w[-2]=Sam w[-1]=Martin w[0]=by w[1]=David w[2]=Guetta wl[-2]=sam wl[-1]=martin wl[0]=by wl[1]=david wl[2]=guetta pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULL shape[-1]=ULLLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=S p1[-1]=M p1[0]=b p1[1]=D p1[2]=G p2[-2]=Sa p2[-1]=Ma p2[0]=by p2[1]=Da p2[2]=Gu p3[-2]=Sam p3[-1]=Mar p3[0]= p3[1]=Dav p3[2]=Gue p4[-2]= p4[-1]=Mart p4[0]= p4[1]=Davi p4[2]=Guet s1[-2]=m s1[-1]=n s1[0]=y s1[1]=d s1[2]=a s2[-2]=am s2[-1]=in s2[0]=by s2[1]=id s2[2]=ta s3[-2]=Sam s3[-1]=tin s3[0]= s3[1]=vid s3[2]=tta s4[-2]= s4[-1]=rtin s4[0]= s4[1]=avid s4[2]=etta 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Sam|Martin w[-1]|w[0]=Martin|by w[0]|w[1]=by|David w[1]|w[2]=David|Guetta pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=Dangerous w[-4..-1]=feat w[-4..-1]=Sam w[-4..-1]=Martin w[1..4]=David w[1..4]=Guetta w[1..4]=song w[1..4]=on +artist w[-2]=Martin w[-1]=by w[0]=David w[1]=Guetta w[2]=song wl[-2]=martin wl[-1]=by wl[0]=david wl[1]=guetta wl[2]=song pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NNP pos[2]=NN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=M p1[-1]=b p1[0]=D p1[1]=G p1[2]=s p2[-2]=Ma p2[-1]=by p2[0]=Da p2[1]=Gu p2[2]=so p3[-2]=Mar p3[-1]= p3[0]=Dav p3[1]=Gue p3[2]=son p4[-2]=Mart p4[-1]= p4[0]=Davi p4[1]=Guet p4[2]=song s1[-2]=n s1[-1]=y s1[0]=d s1[1]=a s1[2]=g s2[-2]=in s2[-1]=by s2[0]=id s2[1]=ta s2[2]=ng s3[-2]=tin s3[-1]= s3[0]=vid s3[1]=tta s3[2]=ong s4[-2]=rtin s4[-1]= s4[0]=avid s4[1]=etta s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Martin|by w[-1]|w[0]=by|David w[0]|w[1]=David|Guetta w[1]|w[2]=Guetta|song pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=feat w[-4..-1]=Sam w[-4..-1]=Martin w[-4..-1]=by w[1..4]=Guetta w[1..4]=song w[1..4]=on w[1..4]=Spotify +artist w[-2]=by w[-1]=David w[0]=Guetta w[1]=song w[2]=on wl[-2]=by wl[-1]=david wl[0]=guetta wl[1]=song wl[2]=on pos[-2]=IN pos[-1]=NNP pos[0]=NNP pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=b p1[-1]=D p1[0]=G p1[1]=s p1[2]=o p2[-2]=by p2[-1]=Da p2[0]=Gu p2[1]=so p2[2]=on p3[-2]= p3[-1]=Dav p3[0]=Gue p3[1]=son p3[2]= p4[-2]= p4[-1]=Davi p4[0]=Guet p4[1]=song p4[2]= s1[-2]=y s1[-1]=d s1[0]=a s1[1]=g s1[2]=n s2[-2]=by s2[-1]=id s2[0]=ta s2[1]=ng s2[2]=on s3[-2]= s3[-1]=vid s3[0]=tta s3[1]=ong s3[2]= s4[-2]= s4[-1]=avid s4[0]=etta s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|David w[-1]|w[0]=David|Guetta w[0]|w[1]=Guetta|song w[1]|w[2]=song|on pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=Sam w[-4..-1]=Martin w[-4..-1]=by w[-4..-1]=David w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=David w[-1]=Guetta w[0]=song w[1]=on w[2]=Spotify wl[-2]=david wl[-1]=guetta wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=NNP pos[-1]=NNP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=ULLLL shape[-1]=ULLLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=D p1[-1]=G p1[0]=s p1[1]=o p1[2]=S p2[-2]=Da p2[-1]=Gu p2[0]=so p2[1]=on p2[2]=Sp p3[-2]=Dav p3[-1]=Gue p3[0]=son p3[1]= p3[2]=Spo p4[-2]=Davi p4[-1]=Guet p4[0]=song p4[1]= p4[2]=Spot s1[-2]=d s1[-1]=a s1[0]=g s1[1]=n s1[2]=y s2[-2]=id s2[-1]=ta s2[0]=ng s2[1]=on s2[2]=fy s3[-2]=vid s3[-1]=tta s3[0]=ong s3[1]= s3[2]=ify s4[-2]=avid s4[-1]=etta s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=David|Guetta w[-1]|w[0]=Guetta|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Martin w[-4..-1]=by w[-4..-1]=David w[-4..-1]=Guetta w[1..4]=on w[1..4]=Spotify +O w[-2]=Guetta w[-1]=song w[0]=on w[1]=Spotify wl[-2]=guetta wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=G p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Gu p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=Gue p3[-1]=son p3[0]= p3[1]=Spo p4[-2]=Guet p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=a s1[-1]=g s1[0]=n s1[1]=y s2[-2]=ta s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]=tta s3[-1]=ong s3[0]= s3[1]=ify s4[-2]=etta s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Guetta|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=David w[-4..-1]=Guetta w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=David w[-4..-1]=Guetta w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=album w[2]=Ramones wl[0]=play wl[1]=album wl[2]=ramones pos[0]=VBP pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=R p2[0]=pl p2[1]=al p2[2]=Ra p3[0]=pla p3[1]=alb p3[2]=Ram p4[0]=play p4[1]=albu p4[2]=Ramo s1[0]=y s1[1]=m s1[2]=s s2[0]=ay s2[1]=um s2[2]=es s3[0]=lay s3[1]=bum s3[2]=nes s4[0]=play s4[1]=lbum s4[2]=ones 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Ramones pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Ramones w[1..4]=on w[1..4]=Spotify __BOS__ +O w[-1]=play w[0]=album w[1]=Ramones w[2]=on wl[-1]=play wl[0]=album wl[1]=ramones wl[2]=on pos[-1]=VBP pos[0]=NN pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=R p1[2]=o p2[-1]=pl p2[0]=al p2[1]=Ra p2[2]=on p3[-1]=pla p3[0]=alb p3[1]=Ram p3[2]= p4[-1]=play p4[0]=albu p4[1]=Ramo p4[2]= s1[-1]=y s1[0]=m s1[1]=s s1[2]=n s2[-1]=ay s2[0]=um s2[1]=es s2[2]=on s3[-1]=lay s3[0]=bum s3[1]=nes s3[2]= s4[-1]=play s4[0]=lbum s4[1]=ones s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Ramones w[1]|w[2]=Ramones|on pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Ramones w[1..4]=on w[1..4]=Spotify +album w[-2]=play w[-1]=album w[0]=Ramones w[1]=on w[2]=Spotify wl[-2]=play wl[-1]=album wl[0]=ramones wl[1]=on wl[2]=spotify pos[-2]=VBP pos[-1]=NN pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=R p1[1]=o p1[2]=S p2[-2]=pl p2[-1]=al p2[0]=Ra p2[1]=on p2[2]=Sp p3[-2]=pla p3[-1]=alb p3[0]=Ram p3[1]= p3[2]=Spo p4[-2]=play p4[-1]=albu p4[0]=Ramo p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=m s1[0]=s s1[1]=n s1[2]=y s2[-2]=ay s2[-1]=um s2[0]=es s2[1]=on s2[2]=fy s3[-2]=lay s3[-1]=bum s3[0]=nes s3[1]= s3[2]=ify s4[-2]=play s4[-1]=lbum s4[0]=ones s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Ramones w[0]|w[1]=Ramones|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=on w[1..4]=Spotify +O w[-2]=album w[-1]=Ramones w[0]=on w[1]=Spotify wl[-2]=album wl[-1]=ramones wl[0]=on wl[1]=spotify pos[-2]=NN pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLLLL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=a p1[-1]=R p1[0]=o p1[1]=S p2[-2]=al p2[-1]=Ra p2[0]=on p2[1]=Sp p3[-2]=alb p3[-1]=Ram p3[0]= p3[1]=Spo p4[-2]=albu p4[-1]=Ramo p4[0]= p4[1]=Spot s1[-2]=m s1[-1]=s s1[0]=n s1[1]=y s2[-2]=um s2[-1]=es s2[0]=on s2[1]=fy s3[-2]=bum s3[-1]=nes s3[0]= s3[1]=ify s4[-2]=lbum s4[-1]=ones s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=album|Ramones w[-1]|w[0]=Ramones|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Ramones w[1..4]=Spotify +service w[-2]=Ramones w[-1]=on w[0]=Spotify wl[-2]=ramones wl[-1]=on wl[0]=spotify pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=R p1[-1]=o p1[0]=S p2[-2]=Ra p2[-1]=on p2[0]=Sp p3[-2]=Ram p3[-1]= p3[0]=Spo p4[-2]=Ramo p4[-1]= p4[0]=Spot s1[-2]=s s1[-1]=n s1[0]=y s2[-2]=es s2[-1]=on s2[0]=fy s3[-2]=nes s3[-1]= s3[0]=ify s4[-2]=ones s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Ramones|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Ramones w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=something w[2]=by wl[0]=play wl[1]=something wl[2]=by pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLLLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=som p3[2]= p4[0]=play p4[1]=some p4[2]= s1[0]=y s1[1]=g s1[2]=y s2[0]=ay s2[1]=ng s2[2]=by s3[0]=lay s3[1]=ing s3[2]= s4[0]=play s4[1]=hing s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|something w[1]|w[2]=something|by pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=something w[1..4]=by w[1..4]=The w[1..4]=Rolling __BOS__ +O w[-1]=play w[0]=something w[1]=by w[2]=The wl[-1]=play wl[0]=something wl[1]=by wl[2]=the pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLLLLLLL shape[1]=LL shape[2]=ULL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=T p2[-1]=pl p2[0]=so p2[1]=by p2[2]=Th p3[-1]=pla p3[0]=som p3[1]= p3[2]=The p4[-1]=play p4[0]=some p4[1]= p4[2]= s1[-1]=y s1[0]=g s1[1]=y s1[2]=e s2[-1]=ay s2[0]=ng s2[1]=by s2[2]=he s3[-1]=lay s3[0]=ing s3[1]= s3[2]=The s4[-1]=play s4[0]=hing s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|something w[0]|w[1]=something|by w[1]|w[2]=by|The pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=The w[1..4]=Rolling w[1..4]=Stones +O w[-2]=play w[-1]=something w[0]=by w[1]=The w[2]=Rolling wl[-2]=play wl[-1]=something wl[0]=by wl[1]=the wl[2]=rolling pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLLLLLL shape[0]=LL shape[1]=ULL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=b p1[1]=T p1[2]=R p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=Th p2[2]=Ro p3[-2]=pla p3[-1]=som p3[0]= p3[1]=The p3[2]=Rol p4[-2]=play p4[-1]=some p4[0]= p4[1]= p4[2]=Roll s1[-2]=y s1[-1]=g s1[0]=y s1[1]=e s1[2]=g s2[-2]=ay s2[-1]=ng s2[0]=by s2[1]=he s2[2]=ng s3[-2]=lay s3[-1]=ing s3[0]= s3[1]=The s3[2]=ing s4[-2]=play s4[-1]=hing s4[0]= s4[1]= s4[2]=ling 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|something w[-1]|w[0]=something|by w[0]|w[1]=by|The w[1]|w[2]=The|Rolling pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=something w[1..4]=The w[1..4]=Rolling w[1..4]=Stones +artist w[-2]=something w[-1]=by w[0]=The w[1]=Rolling w[2]=Stones wl[-2]=something wl[-1]=by wl[0]=the wl[1]=rolling wl[2]=stones pos[-2]=NN pos[-1]=IN pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLLLLLLL shape[-1]=LL shape[0]=ULL shape[1]=ULLLLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=s p1[-1]=b p1[0]=T p1[1]=R p1[2]=S p2[-2]=so p2[-1]=by p2[0]=Th p2[1]=Ro p2[2]=St p3[-2]=som p3[-1]= p3[0]=The p3[1]=Rol p3[2]=Sto p4[-2]=some p4[-1]= p4[0]= p4[1]=Roll p4[2]=Ston s1[-2]=g s1[-1]=y s1[0]=e s1[1]=g s1[2]=s s2[-2]=ng s2[-1]=by s2[0]=he s2[1]=ng s2[2]=es s3[-2]=ing s3[-1]= s3[0]=The s3[1]=ing s3[2]=nes s4[-2]=hing s4[-1]= s4[0]= s4[1]=ling s4[2]=ones 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=something|by w[-1]|w[0]=by|The w[0]|w[1]=The|Rolling w[1]|w[2]=Rolling|Stones pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=something w[-4..-1]=by w[1..4]=Rolling w[1..4]=Stones +artist w[-2]=by w[-1]=The w[0]=Rolling w[1]=Stones wl[-2]=by wl[-1]=the wl[0]=rolling wl[1]=stones pos[-2]=IN pos[-1]=DT pos[0]=DT pos[1]=DT chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LL shape[-1]=ULL shape[0]=ULLLLLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=b p1[-1]=T p1[0]=R p1[1]=S p2[-2]=by p2[-1]=Th p2[0]=Ro p2[1]=St p3[-2]= p3[-1]=The p3[0]=Rol p3[1]=Sto p4[-2]= p4[-1]= p4[0]=Roll p4[1]=Ston s1[-2]=y s1[-1]=e s1[0]=g s1[1]=s s2[-2]=by s2[-1]=he s2[0]=ng s2[1]=es s3[-2]= s3[-1]=The s3[0]=ing s3[1]=nes s4[-2]= s4[-1]= s4[0]=ling s4[1]=ones 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=by|The w[-1]|w[0]=The|Rolling w[0]|w[1]=Rolling|Stones pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=something w[-4..-1]=by w[-4..-1]=The w[1..4]=Stones +artist w[-2]=The w[-1]=Rolling w[0]=Stones wl[-2]=the wl[-1]=rolling wl[0]=stones pos[-2]=DT pos[-1]=DT pos[0]=DT chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=ULLLLLL shape[0]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=T p1[-1]=R p1[0]=S p2[-2]=Th p2[-1]=Ro p2[0]=St p3[-2]=The p3[-1]=Rol p3[0]=Sto p4[-2]= p4[-1]=Roll p4[0]=Ston s1[-2]=e s1[-1]=g s1[0]=s s2[-2]=he s2[-1]=ng s2[0]=es s3[-2]=The s3[-1]=ing s3[0]=nes s4[-2]= s4[-1]=ling s4[0]=ones 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=The|Rolling w[-1]|w[0]=Rolling|Stones pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=something w[-4..-1]=by w[-4..-1]=The w[-4..-1]=Rolling __EOS__ + +O w[0]=play w[1]=a w[2]=song wl[0]=play wl[1]=a wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=s p2[0]=pl p2[1]= p2[2]=so p3[0]=pla p3[1]= p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=a s1[2]=g s2[0]=ay s2[1]= s2[2]=ng s3[0]=lay s3[1]= s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=song w[1..4]=on w[1..4]=Spotify __BOS__ +O w[-1]=play w[0]=a w[1]=song w[2]=on wl[-1]=play wl[0]=a wl[1]=song wl[2]=on pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=L shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=s p1[2]=o p2[-1]=pl p2[0]= p2[1]=so p2[2]=on p3[-1]=pla p3[0]= p3[1]=son p3[2]= p4[-1]=play p4[0]= p4[1]=song p4[2]= s1[-1]=y s1[0]=a s1[1]=g s1[2]=n s2[-1]=ay s2[0]= s2[1]=ng s2[2]=on s3[-1]=lay s3[0]= s3[1]=ong s3[2]= s4[-1]=play s4[0]= s4[1]=song s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|song w[1]|w[2]=song|on pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=play w[-1]=a w[0]=song w[1]=on w[2]=Spotify wl[-2]=play wl[-1]=a wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=s p1[1]=o p1[2]=S p2[-2]=pl p2[-1]= p2[0]=so p2[1]=on p2[2]=Sp p3[-2]=pla p3[-1]= p3[0]=son p3[1]= p3[2]=Spo p4[-2]=play p4[-1]= p4[0]=song p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=a s1[0]=g s1[1]=n s1[2]=y s2[-2]=ay s2[-1]= s2[0]=ng s2[1]=on s2[2]=fy s3[-2]=lay s3[-1]= s3[0]=ong s3[1]= s3[2]=ify s4[-2]=play s4[-1]= s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=a w[1..4]=on w[1..4]=Spotify +O w[-2]=a w[-1]=song w[0]=on w[1]=Spotify wl[-2]=a wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=L shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=a p1[-1]=s p1[0]=o p1[1]=S p2[-2]= p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]= p3[-1]=son p3[0]= p3[1]=Spo p4[-2]= p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=a s1[-1]=g s1[0]=n s1[1]=y s2[-2]= s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]= s3[-1]=ong s3[0]= s3[1]=ify s4[-2]= s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=a|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=some w[1..4]=music __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=some wl[-1]=can wl[0]=you wl[1]=play wl[2]=some pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=s p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=so p3[-1]=can p3[0]=you p3[1]=pla p3[2]=som p4[-1]= p4[0]= p4[1]=play p4[2]=some s1[-1]=n s1[0]=u s1[1]=y s1[2]=e s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=me s3[-1]=can s3[0]=you s3[1]=lay s3[2]=ome s4[-1]= s4[0]= s4[1]=play s4[2]=some 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|some pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=play w[1..4]=some w[1..4]=music +O w[-2]=can w[-1]=you w[0]=play w[1]=some w[2]=music wl[-2]=can wl[-1]=you wl[0]=play wl[1]=some wl[2]=music pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=s p1[2]=m p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=so p2[2]=mu p3[-2]=can p3[-1]=you p3[0]=pla p3[1]=som p3[2]=mus p4[-2]= p4[-1]= p4[0]=play p4[1]=some p4[2]=musi s1[-2]=n s1[-1]=u s1[0]=y s1[1]=e s1[2]=c s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=me s2[2]=ic s3[-2]=can s3[-1]=you s3[0]=lay s3[1]=ome s3[2]=sic s4[-2]= s4[-1]= s4[0]=play s4[1]=some s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|some w[1]|w[2]=some|music pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=some w[1..4]=music +O w[-2]=you w[-1]=play w[0]=some w[1]=music wl[-2]=you wl[-1]=play wl[0]=some wl[1]=music pos[-2]=PRP pos[-1]=VB pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=y p1[-1]=p p1[0]=s p1[1]=m p2[-2]=yo p2[-1]=pl p2[0]=so p2[1]=mu p3[-2]=you p3[-1]=pla p3[0]=som p3[1]=mus p4[-2]= p4[-1]=play p4[0]=some p4[1]=musi s1[-2]=u s1[-1]=y s1[0]=e s1[1]=c s2[-2]=ou s2[-1]=ay s2[0]=me s2[1]=ic s3[-2]=you s3[-1]=lay s3[0]=ome s3[1]=sic s4[-2]= s4[-1]=play s4[0]=some s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|some w[0]|w[1]=some|music pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[1..4]=music +O w[-2]=play w[-1]=some w[0]=music wl[-2]=play wl[-1]=some wl[0]=music pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=s p1[0]=m p2[-2]=pl p2[-1]=so p2[0]=mu p3[-2]=pla p3[-1]=som p3[0]=mus p4[-2]=play p4[-1]=some p4[0]=musi s1[-2]=y s1[-1]=e s1[0]=c s2[-2]=ay s2[-1]=me s2[0]=ic s3[-2]=lay s3[-1]=ome s3[0]=sic s4[-2]=play s4[-1]=some s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|some w[-1]|w[0]=some|music pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[-4..-1]=some __EOS__ + +O w[0]=turn w[1]=on w[2]=meditative wl[0]=turn wl[1]=on wl[2]=meditative pos[0]=VB pos[1]=RP pos[2]=JJ chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=o p1[2]=m p2[0]=tu p2[1]=on p2[2]=me p3[0]=tur p3[1]= p3[2]=med p4[0]=turn p4[1]= p4[2]=medi s1[0]=n s1[1]=n s1[2]=e s2[0]=rn s2[1]=on s2[2]=ve s3[0]=urn s3[1]= s3[2]=ive s4[0]=turn s4[1]= s4[2]=tive 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=turn|on w[1]|w[2]=on|meditative pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=meditative w[1..4]=tracks __BOS__ +O w[-1]=turn w[0]=on w[1]=meditative w[2]=tracks wl[-1]=turn wl[0]=on wl[1]=meditative wl[2]=tracks pos[-1]=VB pos[0]=RP pos[1]=JJ pos[2]=NNS chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLLLLL shape[2]=LLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=t p1[0]=o p1[1]=m p1[2]=t p2[-1]=tu p2[0]=on p2[1]=me p2[2]=tr p3[-1]=tur p3[0]= p3[1]=med p3[2]=tra p4[-1]=turn p4[0]= p4[1]=medi p4[2]=trac s1[-1]=n s1[0]=n s1[1]=e s1[2]=s s2[-1]=rn s2[0]=on s2[1]=ve s2[2]=ks s3[-1]=urn s3[0]= s3[1]=ive s3[2]=cks s4[-1]=turn s4[0]= s4[1]=tive s4[2]=acks 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=turn|on w[0]|w[1]=on|meditative w[1]|w[2]=meditative|tracks pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|JJ pos[1]|pos[2]=JJ|NNS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[1..4]=meditative w[1..4]=tracks +playlist w[-2]=turn w[-1]=on w[0]=meditative w[1]=tracks wl[-2]=turn wl[-1]=on wl[0]=meditative wl[1]=tracks pos[-2]=VB pos[-1]=RP pos[0]=JJ pos[1]=NNS chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLLLLL shape[1]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=o p1[0]=m p1[1]=t p2[-2]=tu p2[-1]=on p2[0]=me p2[1]=tr p3[-2]=tur p3[-1]= p3[0]=med p3[1]=tra p4[-2]=turn p4[-1]= p4[0]=medi p4[1]=trac s1[-2]=n s1[-1]=n s1[0]=e s1[1]=s s2[-2]=rn s2[-1]=on s2[0]=ve s2[1]=ks s3[-2]=urn s3[-1]= s3[0]=ive s3[1]=cks s4[-2]=turn s4[-1]= s4[0]=tive s4[1]=acks 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=turn|on w[-1]|w[0]=on|meditative w[0]|w[1]=meditative|tracks pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|JJ pos[0]|pos[1]=JJ|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[1..4]=tracks +O w[-2]=on w[-1]=meditative w[0]=tracks wl[-2]=on wl[-1]=meditative wl[0]=tracks pos[-2]=RP pos[-1]=JJ pos[0]=NNS chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LL shape[-1]=LLLLLLLLLL shape[0]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=m p1[0]=t p2[-2]=on p2[-1]=me p2[0]=tr p3[-2]= p3[-1]=med p3[0]=tra p4[-2]= p4[-1]=medi p4[0]=trac s1[-2]=n s1[-1]=e s1[0]=s s2[-2]=on s2[-1]=ve s2[0]=ks s3[-2]= s3[-1]=ive s3[0]=cks s4[-2]= s4[-1]=tive s4[0]=acks 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=on|meditative w[-1]|w[0]=meditative|tracks pos[-2]|pos[-1]=RP|JJ pos[-1]|pos[0]=JJ|NNS chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=meditative __EOS__ + +O w[0]=play w[1]=the w[2]=song wl[0]=play wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=the p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=he s2[2]=ng s3[0]=lay s3[1]=the s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song w[1..4]=Encantadora __BOS__ +O w[-1]=play w[0]=the w[1]=song w[2]=Encantadora wl[-1]=play wl[0]=the wl[1]=song wl[2]=encantadora pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=s p1[2]=E p2[-1]=pl p2[0]=th p2[1]=so p2[2]=En p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Enc p4[-1]=play p4[0]= p4[1]=song p4[2]=Enca s1[-1]=y s1[0]=e s1[1]=g s1[2]=a s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=ra s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ora s4[-1]=play s4[0]= s4[1]=song s4[2]=dora 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Encantadora pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Encantadora +O w[-2]=play w[-1]=the w[0]=song w[1]=Encantadora wl[-2]=play wl[-1]=the wl[0]=song wl[1]=encantadora pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=t p1[0]=s p1[1]=E p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=En p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Enc p4[-2]=play p4[-1]= p4[0]=song p4[1]=Enca s1[-2]=y s1[-1]=e s1[0]=g s1[1]=a s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=ra s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ora s4[-2]=play s4[-1]= s4[0]=song s4[1]=dora 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Encantadora pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[1..4]=Encantadora +song w[-2]=the w[-1]=song w[0]=Encantadora wl[-2]=the wl[-1]=song wl[0]=encantadora pos[-2]=DT pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=s p1[0]=E p2[-2]=th p2[-1]=so p2[0]=En p3[-2]=the p3[-1]=son p3[0]=Enc p4[-2]= p4[-1]=song p4[0]=Enca s1[-2]=e s1[-1]=g s1[0]=a s2[-2]=he s2[-1]=ng s2[0]=ra s3[-2]=the s3[-1]=ong s3[0]=ora s4[-2]= s4[-1]=song s4[0]=dora 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Encantadora pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song __EOS__ + +O w[0]=play w[1]=my w[2]=workout wl[0]=play wl[1]=my wl[2]=workout pos[0]=VB pos[1]=PRP$ pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=w p2[0]=pl p2[1]=my p2[2]=wo p3[0]=pla p3[1]= p3[2]=wor p4[0]=play p4[1]= p4[2]=work s1[0]=y s1[1]=y s1[2]=t s2[0]=ay s2[1]=my s2[2]=ut s3[0]=lay s3[1]= s3[2]=out s4[0]=play s4[1]= s4[2]=kout 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|my w[1]|w[2]=my|workout pos[0]|pos[1]=VB|PRP$ pos[1]|pos[2]=PRP$|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=my w[1..4]=workout w[1..4]=playlist __BOS__ +O w[-1]=play w[0]=my w[1]=workout w[2]=playlist wl[-1]=play wl[0]=my wl[1]=workout wl[2]=playlist pos[-1]=VB pos[0]=PRP$ pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLL shape[2]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=m p1[1]=w p1[2]=p p2[-1]=pl p2[0]=my p2[1]=wo p2[2]=pl p3[-1]=pla p3[0]= p3[1]=wor p3[2]=pla p4[-1]=play p4[0]= p4[1]=work p4[2]=play s1[-1]=y s1[0]=y s1[1]=t s1[2]=t s2[-1]=ay s2[0]=my s2[1]=ut s2[2]=st s3[-1]=lay s3[0]= s3[1]=out s3[2]=ist s4[-1]=play s4[0]= s4[1]=kout s4[2]=list 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|my w[0]|w[1]=my|workout w[1]|w[2]=workout|playlist pos[-1]|pos[0]=VB|PRP$ pos[0]|pos[1]=PRP$|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=workout w[1..4]=playlist +playlist w[-2]=play w[-1]=my w[0]=workout w[1]=playlist wl[-2]=play wl[-1]=my wl[0]=workout wl[1]=playlist pos[-2]=VB pos[-1]=PRP$ pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=m p1[0]=w p1[1]=p p2[-2]=pl p2[-1]=my p2[0]=wo p2[1]=pl p3[-2]=pla p3[-1]= p3[0]=wor p3[1]=pla p4[-2]=play p4[-1]= p4[0]=work p4[1]=play s1[-2]=y s1[-1]=y s1[0]=t s1[1]=t s2[-2]=ay s2[-1]=my s2[0]=ut s2[1]=st s3[-2]=lay s3[-1]= s3[0]=out s3[1]=ist s4[-2]=play s4[-1]= s4[0]=kout s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|my w[-1]|w[0]=my|workout w[0]|w[1]=workout|playlist pos[-2]|pos[-1]=VB|PRP$ pos[-1]|pos[0]=PRP$|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=my w[1..4]=playlist +O w[-2]=my w[-1]=workout w[0]=playlist wl[-2]=my wl[-1]=workout wl[0]=playlist pos[-2]=PRP$ pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LL shape[-1]=LLLLLLL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=w p1[0]=p p2[-2]=my p2[-1]=wo p2[0]=pl p3[-2]= p3[-1]=wor p3[0]=pla p4[-2]= p4[-1]=work p4[0]=play s1[-2]=y s1[-1]=t s1[0]=t s2[-2]=my s2[-1]=ut s2[0]=st s3[-2]= s3[-1]=out s3[0]=ist s4[-2]= s4[-1]=kout s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=my|workout w[-1]|w[0]=workout|playlist pos[-2]|pos[-1]=PRP$|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=my w[-4..-1]=workout __EOS__ + +O w[0]=turn w[1]=on w[2]=a wl[0]=turn wl[1]=on wl[2]=a pos[0]=VB pos[1]=RP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=L shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=o p1[2]=a p2[0]=tu p2[1]=on p2[2]= p3[0]=tur p3[1]= p3[2]= p4[0]=turn p4[1]= p4[2]= s1[0]=n s1[1]=n s1[2]=a s2[0]=rn s2[1]=on s2[2]= s3[0]=urn s3[1]= s3[2]= s4[0]=turn s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=turn|on w[1]|w[2]=on|a pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=a w[1..4]=song __BOS__ +O w[-1]=turn w[0]=on w[1]=a w[2]=song wl[-1]=turn wl[0]=on wl[1]=a wl[2]=song pos[-1]=VB pos[0]=RP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=L shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=t p1[0]=o p1[1]=a p1[2]=s p2[-1]=tu p2[0]=on p2[1]= p2[2]=so p3[-1]=tur p3[0]= p3[1]= p3[2]=son p4[-1]=turn p4[0]= p4[1]= p4[2]=song s1[-1]=n s1[0]=n s1[1]=a s1[2]=g s2[-1]=rn s2[0]=on s2[1]= s2[2]=ng s3[-1]=urn s3[0]= s3[1]= s3[2]=ong s4[-1]=turn s4[0]= s4[1]= s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=turn|on w[0]|w[1]=on|a w[1]|w[2]=a|song pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[1..4]=a w[1..4]=song +O w[-2]=turn w[-1]=on w[0]=a w[1]=song wl[-2]=turn wl[-1]=on wl[0]=a wl[1]=song pos[-2]=VB pos[-1]=RP pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=L shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=o p1[0]=a p1[1]=s p2[-2]=tu p2[-1]=on p2[0]= p2[1]=so p3[-2]=tur p3[-1]= p3[0]= p3[1]=son p4[-2]=turn p4[-1]= p4[0]= p4[1]=song s1[-2]=n s1[-1]=n s1[0]=a s1[1]=g s2[-2]=rn s2[-1]=on s2[0]= s2[1]=ng s3[-2]=urn s3[-1]= s3[0]= s3[1]=ong s4[-2]=turn s4[-1]= s4[0]= s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=turn|on w[-1]|w[0]=on|a w[0]|w[1]=a|song pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[1..4]=song +O w[-2]=on w[-1]=a w[0]=song wl[-2]=on wl[-1]=a wl[0]=song pos[-2]=RP pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=L shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=a p1[0]=s p2[-2]=on p2[-1]= p2[0]=so p3[-2]= p3[-1]= p3[0]=son p4[-2]= p4[-1]= p4[0]=song s1[-2]=n s1[-1]=a s1[0]=g s2[-2]=on s2[-1]= s2[0]=ng s3[-2]= s3[-1]= s3[0]=ong s4[-2]= s4[-1]= s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=on|a w[-1]|w[0]=a|song pos[-2]|pos[-1]=RP|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=a __EOS__ + +O w[0]=play w[1]=greatest w[2]=hits wl[0]=play wl[1]=greatest wl[2]=hits pos[0]=VB pos[1]=JJS pos[2]=NNS chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=LLLLLLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=g p1[2]=h p2[0]=pl p2[1]=gr p2[2]=hi p3[0]=pla p3[1]=gre p3[2]=hit p4[0]=play p4[1]=grea p4[2]=hits s1[0]=y s1[1]=t s1[2]=s s2[0]=ay s2[1]=st s2[2]=ts s3[0]=lay s3[1]=est s3[2]=its s4[0]=play s4[1]=test s4[2]=hits 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|greatest w[1]|w[2]=greatest|hits pos[0]|pos[1]=VB|JJS pos[1]|pos[2]=JJS|NNS chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=greatest w[1..4]=hits w[1..4]=by w[1..4]=Metallica __BOS__ +sort w[-1]=play w[0]=greatest w[1]=hits w[2]=by wl[-1]=play wl[0]=greatest wl[1]=hits wl[2]=by pos[-1]=VB pos[0]=JJS pos[1]=NNS pos[2]=IN chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLLLLLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=g p1[1]=h p1[2]=b p2[-1]=pl p2[0]=gr p2[1]=hi p2[2]=by p3[-1]=pla p3[0]=gre p3[1]=hit p3[2]= p4[-1]=play p4[0]=grea p4[1]=hits p4[2]= s1[-1]=y s1[0]=t s1[1]=s s1[2]=y s2[-1]=ay s2[0]=st s2[1]=ts s2[2]=by s3[-1]=lay s3[0]=est s3[1]=its s3[2]= s4[-1]=play s4[0]=test s4[1]=hits s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|greatest w[0]|w[1]=greatest|hits w[1]|w[2]=hits|by pos[-1]|pos[0]=VB|JJS pos[0]|pos[1]=JJS|NNS pos[1]|pos[2]=NNS|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=hits w[1..4]=by w[1..4]=Metallica +O w[-2]=play w[-1]=greatest w[0]=hits w[1]=by w[2]=Metallica wl[-2]=play wl[-1]=greatest wl[0]=hits wl[1]=by wl[2]=metallica pos[-2]=VB pos[-1]=JJS pos[0]=NNS pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLLLLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=g p1[0]=h p1[1]=b p1[2]=M p2[-2]=pl p2[-1]=gr p2[0]=hi p2[1]=by p2[2]=Me p3[-2]=pla p3[-1]=gre p3[0]=hit p3[1]= p3[2]=Met p4[-2]=play p4[-1]=grea p4[0]=hits p4[1]= p4[2]=Meta s1[-2]=y s1[-1]=t s1[0]=s s1[1]=y s1[2]=a s2[-2]=ay s2[-1]=st s2[0]=ts s2[1]=by s2[2]=ca s3[-2]=lay s3[-1]=est s3[0]=its s3[1]= s3[2]=ica s4[-2]=play s4[-1]=test s4[0]=hits s4[1]= s4[2]=lica 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|greatest w[-1]|w[0]=greatest|hits w[0]|w[1]=hits|by w[1]|w[2]=by|Metallica pos[-2]|pos[-1]=VB|JJS pos[-1]|pos[0]=JJS|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=greatest w[1..4]=by w[1..4]=Metallica +O w[-2]=greatest w[-1]=hits w[0]=by w[1]=Metallica wl[-2]=greatest wl[-1]=hits wl[0]=by wl[1]=metallica pos[-2]=JJS pos[-1]=NNS pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLLLLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=g p1[-1]=h p1[0]=b p1[1]=M p2[-2]=gr p2[-1]=hi p2[0]=by p2[1]=Me p3[-2]=gre p3[-1]=hit p3[0]= p3[1]=Met p4[-2]=grea p4[-1]=hits p4[0]= p4[1]=Meta s1[-2]=t s1[-1]=s s1[0]=y s1[1]=a s2[-2]=st s2[-1]=ts s2[0]=by s2[1]=ca s3[-2]=est s3[-1]=its s3[0]= s3[1]=ica s4[-2]=test s4[-1]=hits s4[0]= s4[1]=lica 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=greatest|hits w[-1]|w[0]=hits|by w[0]|w[1]=by|Metallica pos[-2]|pos[-1]=JJS|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=greatest w[-4..-1]=hits w[1..4]=Metallica +artist w[-2]=hits w[-1]=by w[0]=Metallica wl[-2]=hits wl[-1]=by wl[0]=metallica pos[-2]=NNS pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=h p1[-1]=b p1[0]=M p2[-2]=hi p2[-1]=by p2[0]=Me p3[-2]=hit p3[-1]= p3[0]=Met p4[-2]=hits p4[-1]= p4[0]=Meta s1[-2]=s s1[-1]=y s1[0]=a s2[-2]=ts s2[-1]=by s2[0]=ca s3[-2]=its s3[-1]= s3[0]=ica s4[-2]=hits s4[-1]= s4[0]=lica 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=hits|by w[-1]|w[0]=by|Metallica pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=greatest w[-4..-1]=hits w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=album w[2]=London wl[0]=play wl[1]=album wl[2]=london pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=L p2[0]=pl p2[1]=al p2[2]=Lo p3[0]=pla p3[1]=alb p3[2]=Lon p4[0]=play p4[1]=albu p4[2]=Lond s1[0]=y s1[1]=m s1[2]=n s2[0]=ay s2[1]=um s2[2]=on s3[0]=lay s3[1]=bum s3[2]=don s4[0]=play s4[1]=lbum s4[2]=ndon 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|London pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=London w[1..4]=calling w[1..4]=by __BOS__ +O w[-1]=play w[0]=album w[1]=London w[2]=calling wl[-1]=play wl[0]=album wl[1]=london wl[2]=calling pos[-1]=VB pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLL shape[2]=LLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=L p1[2]=c p2[-1]=pl p2[0]=al p2[1]=Lo p2[2]=ca p3[-1]=pla p3[0]=alb p3[1]=Lon p3[2]=cal p4[-1]=play p4[0]=albu p4[1]=Lond p4[2]=call s1[-1]=y s1[0]=m s1[1]=n s1[2]=g s2[-1]=ay s2[0]=um s2[1]=on s2[2]=ng s3[-1]=lay s3[0]=bum s3[1]=don s3[2]=ing s4[-1]=play s4[0]=lbum s4[1]=ndon s4[2]=ling 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|London w[1]|w[2]=London|calling pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=London w[1..4]=calling w[1..4]=by w[1..4]=The +album w[-2]=play w[-1]=album w[0]=London w[1]=calling w[2]=by wl[-2]=play wl[-1]=album wl[0]=london wl[1]=calling wl[2]=by pos[-2]=VB pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLL shape[1]=LLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=L p1[1]=c p1[2]=b p2[-2]=pl p2[-1]=al p2[0]=Lo p2[1]=ca p2[2]=by p3[-2]=pla p3[-1]=alb p3[0]=Lon p3[1]=cal p3[2]= p4[-2]=play p4[-1]=albu p4[0]=Lond p4[1]=call p4[2]= s1[-2]=y s1[-1]=m s1[0]=n s1[1]=g s1[2]=y s2[-2]=ay s2[-1]=um s2[0]=on s2[1]=ng s2[2]=by s3[-2]=lay s3[-1]=bum s3[0]=don s3[1]=ing s3[2]= s4[-2]=play s4[-1]=lbum s4[0]=ndon s4[1]=ling s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|London w[0]|w[1]=London|calling w[1]|w[2]=calling|by pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[1..4]=calling w[1..4]=by w[1..4]=The w[1..4]=Clash +album w[-2]=album w[-1]=London w[0]=calling w[1]=by w[2]=The wl[-2]=album wl[-1]=london wl[0]=calling wl[1]=by wl[2]=the pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLLL shape[-1]=ULLLLL shape[0]=LLLLLLL shape[1]=LL shape[2]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=a p1[-1]=L p1[0]=c p1[1]=b p1[2]=T p2[-2]=al p2[-1]=Lo p2[0]=ca p2[1]=by p2[2]=Th p3[-2]=alb p3[-1]=Lon p3[0]=cal p3[1]= p3[2]=The p4[-2]=albu p4[-1]=Lond p4[0]=call p4[1]= p4[2]= s1[-2]=m s1[-1]=n s1[0]=g s1[1]=y s1[2]=e s2[-2]=um s2[-1]=on s2[0]=ng s2[1]=by s2[2]=he s3[-2]=bum s3[-1]=don s3[0]=ing s3[1]= s3[2]=The s4[-2]=lbum s4[-1]=ndon s4[0]=ling s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|London w[-1]|w[0]=London|calling w[0]|w[1]=calling|by w[1]|w[2]=by|The pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=London w[1..4]=by w[1..4]=The w[1..4]=Clash +O w[-2]=London w[-1]=calling w[0]=by w[1]=The w[2]=Clash wl[-2]=london wl[-1]=calling wl[0]=by wl[1]=the wl[2]=clash pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=DT pos[2]=DT chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLLLL shape[-1]=LLLLLLL shape[0]=LL shape[1]=ULL shape[2]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=L p1[-1]=c p1[0]=b p1[1]=T p1[2]=C p2[-2]=Lo p2[-1]=ca p2[0]=by p2[1]=Th p2[2]=Cl p3[-2]=Lon p3[-1]=cal p3[0]= p3[1]=The p3[2]=Cla p4[-2]=Lond p4[-1]=call p4[0]= p4[1]= p4[2]=Clas s1[-2]=n s1[-1]=g s1[0]=y s1[1]=e s1[2]=h s2[-2]=on s2[-1]=ng s2[0]=by s2[1]=he s2[2]=sh s3[-2]=don s3[-1]=ing s3[0]= s3[1]=The s3[2]=ash s4[-2]=ndon s4[-1]=ling s4[0]= s4[1]= s4[2]=lash 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=London|calling w[-1]|w[0]=calling|by w[0]|w[1]=by|The w[1]|w[2]=The|Clash pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=London w[-4..-1]=calling w[1..4]=The w[1..4]=Clash +artist w[-2]=calling w[-1]=by w[0]=The w[1]=Clash wl[-2]=calling wl[-1]=by wl[0]=the wl[1]=clash pos[-2]=NNP pos[-1]=IN pos[0]=DT pos[1]=DT chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLLL shape[-1]=LL shape[0]=ULL shape[1]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=c p1[-1]=b p1[0]=T p1[1]=C p2[-2]=ca p2[-1]=by p2[0]=Th p2[1]=Cl p3[-2]=cal p3[-1]= p3[0]=The p3[1]=Cla p4[-2]=call p4[-1]= p4[0]= p4[1]=Clas s1[-2]=g s1[-1]=y s1[0]=e s1[1]=h s2[-2]=ng s2[-1]=by s2[0]=he s2[1]=sh s3[-2]=ing s3[-1]= s3[0]=The s3[1]=ash s4[-2]=ling s4[-1]= s4[0]= s4[1]=lash 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=calling|by w[-1]|w[0]=by|The w[0]|w[1]=The|Clash pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|DT chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=album w[-4..-1]=London w[-4..-1]=calling w[-4..-1]=by w[1..4]=Clash +artist w[-2]=by w[-1]=The w[0]=Clash wl[-2]=by wl[-1]=the wl[0]=clash pos[-2]=IN pos[-1]=DT pos[0]=DT chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=T p1[0]=C p2[-2]=by p2[-1]=Th p2[0]=Cl p3[-2]= p3[-1]=The p3[0]=Cla p4[-2]= p4[-1]= p4[0]=Clas s1[-2]=y s1[-1]=e s1[0]=h s2[-2]=by s2[-1]=he s2[0]=sh s3[-2]= s3[-1]=The s3[0]=ash s4[-2]= s4[-1]= s4[0]=lash 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|The w[-1]|w[0]=The|Clash pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=London w[-4..-1]=calling w[-4..-1]=by w[-4..-1]=The __EOS__ + +O w[0]=play w[1]=the w[2]=song wl[0]=play wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=the p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=he s2[2]=ng s3[0]=lay s3[1]=the s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song w[1..4]=Bird __BOS__ +O w[-1]=play w[0]=the w[1]=song w[2]=Bird wl[-1]=play wl[0]=the wl[1]=song wl[2]=bird pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=s p1[2]=B p2[-1]=pl p2[0]=th p2[1]=so p2[2]=Bi p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Bir p4[-1]=play p4[0]= p4[1]=song p4[2]=Bird s1[-1]=y s1[0]=e s1[1]=g s1[2]=d s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=rd s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ird s4[-1]=play s4[0]= s4[1]=song s4[2]=Bird 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Bird pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Bird +O w[-2]=play w[-1]=the w[0]=song w[1]=Bird wl[-2]=play wl[-1]=the wl[0]=song wl[1]=bird pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=t p1[0]=s p1[1]=B p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=Bi p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Bir p4[-2]=play p4[-1]= p4[0]=song p4[1]=Bird s1[-2]=y s1[-1]=e s1[0]=g s1[1]=d s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=rd s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ird s4[-2]=play s4[-1]= s4[0]=song s4[1]=Bird 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Bird pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[1..4]=Bird +song w[-2]=the w[-1]=song w[0]=Bird wl[-2]=the wl[-1]=song wl[0]=bird pos[-2]=DT pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=s p1[0]=B p2[-2]=th p2[-1]=so p2[0]=Bi p3[-2]=the p3[-1]=son p3[0]=Bir p4[-2]= p4[-1]=song p4[0]=Bird s1[-2]=e s1[-1]=g s1[0]=d s2[-2]=he s2[-1]=ng s2[0]=rd s3[-2]=the s3[-1]=ong s3[0]=ird s4[-2]= s4[-1]=song s4[0]=Bird 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Bird pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song __EOS__ + +O w[0]=play w[1]=Maroon w[2]=5 wl[0]=play wl[1]=maroon wl[2]=5 pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLL shape[2]=D shaped[0]=L shaped[1]=UL shaped[2]=D type[0]=AllLetter type[1]=InitUpper type[2]=AllDigit p1[0]=p p1[1]=M p1[2]=5 p2[0]=pl p2[1]=Ma p2[2]= p3[0]=pla p3[1]=Mar p3[2]= p4[0]=play p4[1]=Maro p4[2]= s1[0]=y s1[1]=n s1[2]=5 s2[0]=ay s2[1]=on s2[2]= s3[0]=lay s3[1]=oon s3[2]= s4[0]=play s4[1]=roon s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=yes ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=no cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Maroon w[1]|w[2]=Maroon|5 pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|D type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllDigit w[1..4]=Maroon w[1..4]=5 __BOS__ +artist w[-1]=play w[0]=Maroon w[1]=5 wl[-1]=play wl[0]=maroon wl[1]=5 pos[-1]=VB pos[0]=NN pos[1]=NN chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULLLLL shape[1]=D shaped[-1]=L shaped[0]=UL shaped[1]=D type[-1]=AllLetter type[0]=InitUpper type[1]=AllDigit p1[-1]=p p1[0]=M p1[1]=5 p2[-1]=pl p2[0]=Ma p2[1]= p3[-1]=pla p3[0]=Mar p3[1]= p4[-1]=play p4[0]=Maro p4[1]= s1[-1]=y s1[0]=n s1[1]=5 s2[-1]=ay s2[0]=on s2[1]= s3[-1]=lay s3[0]=oon s3[1]= s4[-1]=play s4[0]=roon s4[1]= 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=yes ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=no ca[-1]=yes ca[0]=yes ca[1]=no cd[-1]=no cd[0]=no cd[1]=yes cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|Maroon w[0]|w[1]=Maroon|5 pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|D type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllDigit w[-4..-1]=play w[1..4]=5 +artist w[-2]=play w[-1]=Maroon w[0]=5 wl[-2]=play wl[-1]=maroon wl[0]=5 pos[-2]=VB pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=D shaped[-2]=L shaped[-1]=UL shaped[0]=D type[-2]=AllLetter type[-1]=InitUpper type[0]=AllDigit p1[-2]=p p1[-1]=M p1[0]=5 p2[-2]=pl p2[-1]=Ma p2[0]= p3[-2]=pla p3[-1]=Mar p3[0]= p4[-2]=play p4[-1]=Maro p4[0]= s1[-2]=y s1[-1]=n s1[0]=5 s2[-2]=ay s2[-1]=on s2[0]= s3[-2]=lay s3[-1]=oon s3[0]= s4[-2]=play s4[-1]=roon s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=yes ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=no ca[-2]=yes ca[-1]=yes ca[0]=no cd[-2]=no cd[-1]=no cd[0]=yes cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|Maroon w[-1]|w[0]=Maroon|5 pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|D type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllDigit w[-4..-1]=play w[-4..-1]=Maroon __EOS__ + +O w[0]=play w[1]=songs w[2]=from wl[0]=play wl[1]=songs wl[2]=from pos[0]=VBP pos[1]=NNS pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=f p2[0]=pl p2[1]=so p2[2]=fr p3[0]=pla p3[1]=son p3[2]=fro p4[0]=play p4[1]=song p4[2]=from s1[0]=y s1[1]=s s1[2]=m s2[0]=ay s2[1]=gs s2[2]=om s3[0]=lay s3[1]=ngs s3[2]=rom s4[0]=play s4[1]=ongs s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|songs w[1]|w[2]=songs|from pos[0]|pos[1]=VBP|NNS pos[1]|pos[2]=NNS|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=songs w[1..4]=from w[1..4]=playlist w[1..4]=Hot __BOS__ +O w[-1]=play w[0]=songs w[1]=from w[2]=playlist wl[-1]=play wl[0]=songs wl[1]=from wl[2]=playlist pos[-1]=VBP pos[0]=NNS pos[1]=IN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLLL shape[2]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=f p1[2]=p p2[-1]=pl p2[0]=so p2[1]=fr p2[2]=pl p3[-1]=pla p3[0]=son p3[1]=fro p3[2]=pla p4[-1]=play p4[0]=song p4[1]=from p4[2]=play s1[-1]=y s1[0]=s s1[1]=m s1[2]=t s2[-1]=ay s2[0]=gs s2[1]=om s2[2]=st s3[-1]=lay s3[0]=ngs s3[1]=rom s3[2]=ist s4[-1]=play s4[0]=ongs s4[1]=from s4[2]=list 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|songs w[0]|w[1]=songs|from w[1]|w[2]=from|playlist pos[-1]|pos[0]=VBP|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=from w[1..4]=playlist w[1..4]=Hot w[1..4]=Hits +O w[-2]=play w[-1]=songs w[0]=from w[1]=playlist w[2]=Hot wl[-2]=play wl[-1]=songs wl[0]=from wl[1]=playlist wl[2]=hot pos[-2]=VBP pos[-1]=NNS pos[0]=IN pos[1]=NN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLLL shape[1]=LLLLLLLL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=f p1[1]=p p1[2]=H p2[-2]=pl p2[-1]=so p2[0]=fr p2[1]=pl p2[2]=Ho p3[-2]=pla p3[-1]=son p3[0]=fro p3[1]=pla p3[2]=Hot p4[-2]=play p4[-1]=song p4[0]=from p4[1]=play p4[2]= s1[-2]=y s1[-1]=s s1[0]=m s1[1]=t s1[2]=t s2[-2]=ay s2[-1]=gs s2[0]=om s2[1]=st s2[2]=ot s3[-2]=lay s3[-1]=ngs s3[0]=rom s3[1]=ist s3[2]=Hot s4[-2]=play s4[-1]=ongs s4[0]=from s4[1]=list s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|songs w[-1]|w[0]=songs|from w[0]|w[1]=from|playlist w[1]|w[2]=playlist|Hot pos[-2]|pos[-1]=VBP|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NN pos[1]|pos[2]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=songs w[1..4]=playlist w[1..4]=Hot w[1..4]=Hits w[1..4]=UK +O w[-2]=songs w[-1]=from w[0]=playlist w[1]=Hot w[2]=Hits wl[-2]=songs wl[-1]=from wl[0]=playlist wl[1]=hot wl[2]=hits pos[-2]=NNS pos[-1]=IN pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLLL shape[-1]=LLLL shape[0]=LLLLLLLL shape[1]=ULL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=s p1[-1]=f p1[0]=p p1[1]=H p1[2]=H p2[-2]=so p2[-1]=fr p2[0]=pl p2[1]=Ho p2[2]=Hi p3[-2]=son p3[-1]=fro p3[0]=pla p3[1]=Hot p3[2]=Hit p4[-2]=song p4[-1]=from p4[0]=play p4[1]= p4[2]=Hits s1[-2]=s s1[-1]=m s1[0]=t s1[1]=t s1[2]=s s2[-2]=gs s2[-1]=om s2[0]=st s2[1]=ot s2[2]=ts s3[-2]=ngs s3[-1]=rom s3[0]=ist s3[1]=Hot s3[2]=its s4[-2]=ongs s4[-1]=from s4[0]=list s4[1]= s4[2]=Hits 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=songs|from w[-1]|w[0]=from|playlist w[0]|w[1]=playlist|Hot w[1]|w[2]=Hot|Hits pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=songs w[-4..-1]=from w[1..4]=Hot w[1..4]=Hits w[1..4]=UK +playlist w[-2]=from w[-1]=playlist w[0]=Hot w[1]=Hits w[2]=UK wl[-2]=from wl[-1]=playlist wl[0]=hot wl[1]=hits wl[2]=uk pos[-2]=IN pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLLLLL shape[0]=ULL shape[1]=ULLL shape[2]=UU shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=U type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllUpper p1[-2]=f p1[-1]=p p1[0]=H p1[1]=H p1[2]=U p2[-2]=fr p2[-1]=pl p2[0]=Ho p2[1]=Hi p2[2]=UK p3[-2]=fro p3[-1]=pla p3[0]=Hot p3[1]=Hit p3[2]= p4[-2]=from p4[-1]=play p4[0]= p4[1]=Hits p4[2]= s1[-2]=m s1[-1]=t s1[0]=t s1[1]=s s1[2]=K s2[-2]=om s2[-1]=st s2[0]=ot s2[1]=ts s2[2]=UK s3[-2]=rom s3[-1]=ist s3[0]=Hot s3[1]=its s3[2]= s4[-2]=from s4[-1]=list s4[0]= s4[1]=Hits s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=yes al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=from|playlist w[-1]|w[0]=playlist|Hot w[0]|w[1]=Hot|Hits w[1]|w[2]=Hits|UK pos[-2]|pos[-1]=IN|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|U type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllUpper w[-4..-1]=play w[-4..-1]=songs w[-4..-1]=from w[-4..-1]=playlist w[1..4]=Hits w[1..4]=UK +playlist w[-2]=playlist w[-1]=Hot w[0]=Hits w[1]=UK wl[-2]=playlist wl[-1]=hot wl[0]=hits wl[1]=uk pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLLLLLL shape[-1]=ULL shape[0]=ULLL shape[1]=UU shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=U type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllUpper p1[-2]=p p1[-1]=H p1[0]=H p1[1]=U p2[-2]=pl p2[-1]=Ho p2[0]=Hi p2[1]=UK p3[-2]=pla p3[-1]=Hot p3[0]=Hit p3[1]= p4[-2]=play p4[-1]= p4[0]=Hits p4[1]= s1[-2]=t s1[-1]=t s1[0]=s s1[1]=K s2[-2]=st s2[-1]=ot s2[0]=ts s2[1]=UK s3[-2]=ist s3[-1]=Hot s3[0]=its s3[1]= s4[-2]=list s4[-1]= s4[0]=Hits s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=yes al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=no ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=playlist|Hot w[-1]|w[0]=Hot|Hits w[0]|w[1]=Hits|UK pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|U type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllUpper w[-4..-1]=songs w[-4..-1]=from w[-4..-1]=playlist w[-4..-1]=Hot w[1..4]=UK +playlist w[-2]=Hot w[-1]=Hits w[0]=UK wl[-2]=hot wl[-1]=hits wl[0]=uk pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=ULLL shape[0]=UU shaped[-2]=UL shaped[-1]=UL shaped[0]=U type[-2]=InitUpper type[-1]=InitUpper type[0]=AllUpper p1[-2]=H p1[-1]=H p1[0]=U p2[-2]=Ho p2[-1]=Hi p2[0]=UK p3[-2]=Hot p3[-1]=Hit p3[0]= p4[-2]= p4[-1]=Hits p4[0]= s1[-2]=t s1[-1]=s s1[0]=K s2[-2]=ot s2[-1]=ts s2[0]=UK s3[-2]=Hot s3[-1]=its s3[0]= s4[-2]= s4[-1]=Hits s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=yes al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=no ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Hot|Hits w[-1]|w[0]=Hits|UK pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|U type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllUpper w[-4..-1]=from w[-4..-1]=playlist w[-4..-1]=Hot w[-4..-1]=Hits __EOS__ + +O w[0]=play w[1]=some w[2]=relaxing wl[0]=play wl[1]=some wl[2]=relaxing pos[0]=VB pos[1]=DT pos[2]=VBG chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=r p2[0]=pl p2[1]=so p2[2]=re p3[0]=pla p3[1]=som p3[2]=rel p4[0]=play p4[1]=some p4[2]=rela s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=me s2[2]=ng s3[0]=lay s3[1]=ome s3[2]=ing s4[0]=play s4[1]=some s4[2]=xing 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|some w[1]|w[2]=some|relaxing pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|VBG chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=some w[1..4]=relaxing w[1..4]=music __BOS__ +O w[-1]=play w[0]=some w[1]=relaxing w[2]=music wl[-1]=play wl[0]=some wl[1]=relaxing wl[2]=music pos[-1]=VB pos[0]=DT pos[1]=VBG pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLLLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=r p1[2]=m p2[-1]=pl p2[0]=so p2[1]=re p2[2]=mu p3[-1]=pla p3[0]=som p3[1]=rel p3[2]=mus p4[-1]=play p4[0]=some p4[1]=rela p4[2]=musi s1[-1]=y s1[0]=e s1[1]=g s1[2]=c s2[-1]=ay s2[0]=me s2[1]=ng s2[2]=ic s3[-1]=lay s3[0]=ome s3[1]=ing s3[2]=sic s4[-1]=play s4[0]=some s4[1]=xing s4[2]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|some w[0]|w[1]=some|relaxing w[1]|w[2]=relaxing|music pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|VBG pos[1]|pos[2]=VBG|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=relaxing w[1..4]=music +genre w[-2]=play w[-1]=some w[0]=relaxing w[1]=music wl[-2]=play wl[-1]=some wl[0]=relaxing wl[1]=music pos[-2]=VB pos[-1]=DT pos[0]=VBG pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=s p1[0]=r p1[1]=m p2[-2]=pl p2[-1]=so p2[0]=re p2[1]=mu p3[-2]=pla p3[-1]=som p3[0]=rel p3[1]=mus p4[-2]=play p4[-1]=some p4[0]=rela p4[1]=musi s1[-2]=y s1[-1]=e s1[0]=g s1[1]=c s2[-2]=ay s2[-1]=me s2[0]=ng s2[1]=ic s3[-2]=lay s3[-1]=ome s3[0]=ing s3[1]=sic s4[-2]=play s4[-1]=some s4[0]=xing s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|some w[-1]|w[0]=some|relaxing w[0]|w[1]=relaxing|music pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|VBG pos[0]|pos[1]=VBG|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[1..4]=music +O w[-2]=some w[-1]=relaxing w[0]=music wl[-2]=some wl[-1]=relaxing wl[0]=music pos[-2]=DT pos[-1]=VBG pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=LLLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=r p1[0]=m p2[-2]=so p2[-1]=re p2[0]=mu p3[-2]=som p3[-1]=rel p3[0]=mus p4[-2]=some p4[-1]=rela p4[0]=musi s1[-2]=e s1[-1]=g s1[0]=c s2[-2]=me s2[-1]=ng s2[0]=ic s3[-2]=ome s3[-1]=ing s3[0]=sic s4[-2]=some s4[-1]=xing s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|relaxing w[-1]|w[0]=relaxing|music pos[-2]|pos[-1]=DT|VBG pos[-1]|pos[0]=VBG|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=relaxing __EOS__ + +O w[0]=show w[1]=best w[2]=songs wl[0]=show wl[1]=best wl[2]=songs pos[0]=VBP pos[1]=JJS pos[2]=NNS chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=b p1[2]=s p2[0]=sh p2[1]=be p2[2]=so p3[0]=sho p3[1]=bes p3[2]=son p4[0]=show p4[1]=best p4[2]=song s1[0]=w s1[1]=t s1[2]=s s2[0]=ow s2[1]=st s2[2]=gs s3[0]=how s3[1]=est s3[2]=ngs s4[0]=show s4[1]=best s4[2]=ongs 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=show|best w[1]|w[2]=best|songs pos[0]|pos[1]=VBP|JJS pos[1]|pos[2]=JJS|NNS chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=best w[1..4]=songs w[1..4]=by w[1..4]=Rihanna __BOS__ +sort w[-1]=show w[0]=best w[1]=songs w[2]=by wl[-1]=show wl[0]=best wl[1]=songs wl[2]=by pos[-1]=VBP pos[0]=JJS pos[1]=NNS pos[2]=IN chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=s p1[0]=b p1[1]=s p1[2]=b p2[-1]=sh p2[0]=be p2[1]=so p2[2]=by p3[-1]=sho p3[0]=bes p3[1]=son p3[2]= p4[-1]=show p4[0]=best p4[1]=song p4[2]= s1[-1]=w s1[0]=t s1[1]=s s1[2]=y s2[-1]=ow s2[0]=st s2[1]=gs s2[2]=by s3[-1]=how s3[0]=est s3[1]=ngs s3[2]= s4[-1]=show s4[0]=best s4[1]=ongs s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=show|best w[0]|w[1]=best|songs w[1]|w[2]=songs|by pos[-1]|pos[0]=VBP|JJS pos[0]|pos[1]=JJS|NNS pos[1]|pos[2]=NNS|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=show w[1..4]=songs w[1..4]=by w[1..4]=Rihanna +O w[-2]=show w[-1]=best w[0]=songs w[1]=by w[2]=Rihanna wl[-2]=show wl[-1]=best wl[0]=songs wl[1]=by wl[2]=rihanna pos[-2]=VBP pos[-1]=JJS pos[0]=NNS pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=b p1[0]=s p1[1]=b p1[2]=R p2[-2]=sh p2[-1]=be p2[0]=so p2[1]=by p2[2]=Ri p3[-2]=sho p3[-1]=bes p3[0]=son p3[1]= p3[2]=Rih p4[-2]=show p4[-1]=best p4[0]=song p4[1]= p4[2]=Riha s1[-2]=w s1[-1]=t s1[0]=s s1[1]=y s1[2]=a s2[-2]=ow s2[-1]=st s2[0]=gs s2[1]=by s2[2]=na s3[-2]=how s3[-1]=est s3[0]=ngs s3[1]= s3[2]=nna s4[-2]=show s4[-1]=best s4[0]=ongs s4[1]= s4[2]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=show|best w[-1]|w[0]=best|songs w[0]|w[1]=songs|by w[1]|w[2]=by|Rihanna pos[-2]|pos[-1]=VBP|JJS pos[-1]|pos[0]=JJS|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=show w[-4..-1]=best w[1..4]=by w[1..4]=Rihanna +O w[-2]=best w[-1]=songs w[0]=by w[1]=Rihanna wl[-2]=best wl[-1]=songs wl[0]=by wl[1]=rihanna pos[-2]=JJS pos[-1]=NNS pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=b p1[-1]=s p1[0]=b p1[1]=R p2[-2]=be p2[-1]=so p2[0]=by p2[1]=Ri p3[-2]=bes p3[-1]=son p3[0]= p3[1]=Rih p4[-2]=best p4[-1]=song p4[0]= p4[1]=Riha s1[-2]=t s1[-1]=s s1[0]=y s1[1]=a s2[-2]=st s2[-1]=gs s2[0]=by s2[1]=na s3[-2]=est s3[-1]=ngs s3[0]= s3[1]=nna s4[-2]=best s4[-1]=ongs s4[0]= s4[1]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=best|songs w[-1]|w[0]=songs|by w[0]|w[1]=by|Rihanna pos[-2]|pos[-1]=JJS|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=show w[-4..-1]=best w[-4..-1]=songs w[1..4]=Rihanna +artist w[-2]=songs w[-1]=by w[0]=Rihanna wl[-2]=songs wl[-1]=by wl[0]=rihanna pos[-2]=NNS pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=b p1[0]=R p2[-2]=so p2[-1]=by p2[0]=Ri p3[-2]=son p3[-1]= p3[0]=Rih p4[-2]=song p4[-1]= p4[0]=Riha s1[-2]=s s1[-1]=y s1[0]=a s2[-2]=gs s2[-1]=by s2[0]=na s3[-2]=ngs s3[-1]= s3[0]=nna s4[-2]=ongs s4[-1]= s4[0]=anna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=songs|by w[-1]|w[0]=by|Rihanna pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=show w[-4..-1]=best w[-4..-1]=songs w[-4..-1]=by __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=Irreplaceable w[1..4]=by __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=Irreplaceable wl[-1]=can wl[0]=you wl[1]=play wl[2]=irreplaceable pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLLLLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=c p1[0]=y p1[1]=p p1[2]=I p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=Ir p3[-1]=can p3[0]=you p3[1]=pla p3[2]=Irr p4[-1]= p4[0]= p4[1]=play p4[2]=Irre s1[-1]=n s1[0]=u s1[1]=y s1[2]=e s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=le s3[-1]=can s3[0]=you s3[1]=lay s3[2]=ble s4[-1]= s4[0]= s4[1]=play s4[2]=able 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|Irreplaceable pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[1..4]=play w[1..4]=Irreplaceable w[1..4]=by w[1..4]=Beyonce +O w[-2]=can w[-1]=you w[0]=play w[1]=Irreplaceable w[2]=by wl[-2]=can wl[-1]=you wl[0]=play wl[1]=irreplaceable wl[2]=by pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=JJ pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLLLLLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=I p1[2]=b p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=Ir p2[2]=by p3[-2]=can p3[-1]=you p3[0]=pla p3[1]=Irr p3[2]= p4[-2]= p4[-1]= p4[0]=play p4[1]=Irre p4[2]= s1[-2]=n s1[-1]=u s1[0]=y s1[1]=e s1[2]=y s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=le s2[2]=by s3[-2]=can s3[-1]=you s3[0]=lay s3[1]=ble s3[2]= s4[-2]= s4[-1]= s4[0]=play s4[1]=able s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|Irreplaceable w[1]|w[2]=Irreplaceable|by pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|JJ pos[1]|pos[2]=JJ|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=Irreplaceable w[1..4]=by w[1..4]=Beyonce +song w[-2]=you w[-1]=play w[0]=Irreplaceable w[1]=by w[2]=Beyonce wl[-2]=you wl[-1]=play wl[0]=irreplaceable wl[1]=by wl[2]=beyonce pos[-2]=PRP pos[-1]=VB pos[0]=JJ pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLLLLLLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=y p1[-1]=p p1[0]=I p1[1]=b p1[2]=B p2[-2]=yo p2[-1]=pl p2[0]=Ir p2[1]=by p2[2]=Be p3[-2]=you p3[-1]=pla p3[0]=Irr p3[1]= p3[2]=Bey p4[-2]= p4[-1]=play p4[0]=Irre p4[1]= p4[2]=Beyo s1[-2]=u s1[-1]=y s1[0]=e s1[1]=y s1[2]=e s2[-2]=ou s2[-1]=ay s2[0]=le s2[1]=by s2[2]=ce s3[-2]=you s3[-1]=lay s3[0]=ble s3[1]= s3[2]=nce s4[-2]= s4[-1]=play s4[0]=able s4[1]= s4[2]=once 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|Irreplaceable w[0]|w[1]=Irreplaceable|by w[1]|w[2]=by|Beyonce pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|JJ pos[0]|pos[1]=JJ|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[1..4]=by w[1..4]=Beyonce +O w[-2]=play w[-1]=Irreplaceable w[0]=by w[1]=Beyonce wl[-2]=play wl[-1]=irreplaceable wl[0]=by wl[1]=beyonce pos[-2]=VB pos[-1]=JJ pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=ULLLLLLLLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=I p1[0]=b p1[1]=B p2[-2]=pl p2[-1]=Ir p2[0]=by p2[1]=Be p3[-2]=pla p3[-1]=Irr p3[0]= p3[1]=Bey p4[-2]=play p4[-1]=Irre p4[0]= p4[1]=Beyo s1[-2]=y s1[-1]=e s1[0]=y s1[1]=e s2[-2]=ay s2[-1]=le s2[0]=by s2[1]=ce s3[-2]=lay s3[-1]=ble s3[0]= s3[1]=nce s4[-2]=play s4[-1]=able s4[0]= s4[1]=once 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Irreplaceable w[-1]|w[0]=Irreplaceable|by w[0]|w[1]=by|Beyonce pos[-2]|pos[-1]=VB|JJ pos[-1]|pos[0]=JJ|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[-4..-1]=Irreplaceable w[1..4]=Beyonce +artist w[-2]=Irreplaceable w[-1]=by w[0]=Beyonce wl[-2]=irreplaceable wl[-1]=by wl[0]=beyonce pos[-2]=JJ pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLLLLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=I p1[-1]=b p1[0]=B p2[-2]=Ir p2[-1]=by p2[0]=Be p3[-2]=Irr p3[-1]= p3[0]=Bey p4[-2]=Irre p4[-1]= p4[0]=Beyo s1[-2]=e s1[-1]=y s1[0]=e s2[-2]=le s2[-1]=by s2[0]=ce s3[-2]=ble s3[-1]= s3[0]=nce s4[-2]=able s4[-1]= s4[0]=once 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Irreplaceable|by w[-1]|w[0]=by|Beyonce pos[-2]|pos[-1]=JJ|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=you w[-4..-1]=play w[-4..-1]=Irreplaceable w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=my w[2]=faves wl[0]=play wl[1]=my wl[2]=faves pos[0]=VB pos[1]=PRP$ pos[2]=PRP$ chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=LL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=f p2[0]=pl p2[1]=my p2[2]=fa p3[0]=pla p3[1]= p3[2]=fav p4[0]=play p4[1]= p4[2]=fave s1[0]=y s1[1]=y s1[2]=s s2[0]=ay s2[1]=my s2[2]=es s3[0]=lay s3[1]= s3[2]=ves s4[0]=play s4[1]= s4[2]=aves 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|my w[1]|w[2]=my|faves pos[0]|pos[1]=VB|PRP$ pos[1]|pos[2]=PRP$|PRP$ chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=my w[1..4]=faves w[1..4]=playlist __BOS__ +playlist w[-1]=play w[0]=my w[1]=faves w[2]=playlist wl[-1]=play wl[0]=my wl[1]=faves wl[2]=playlist pos[-1]=VB pos[0]=PRP$ pos[1]=PRP$ pos[2]=NN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLL shape[2]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=m p1[1]=f p1[2]=p p2[-1]=pl p2[0]=my p2[1]=fa p2[2]=pl p3[-1]=pla p3[0]= p3[1]=fav p3[2]=pla p4[-1]=play p4[0]= p4[1]=fave p4[2]=play s1[-1]=y s1[0]=y s1[1]=s s1[2]=t s2[-1]=ay s2[0]=my s2[1]=es s2[2]=st s3[-1]=lay s3[0]= s3[1]=ves s3[2]=ist s4[-1]=play s4[0]= s4[1]=aves s4[2]=list 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|my w[0]|w[1]=my|faves w[1]|w[2]=faves|playlist pos[-1]|pos[0]=VB|PRP$ pos[0]|pos[1]=PRP$|PRP$ pos[1]|pos[2]=PRP$|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=faves w[1..4]=playlist +playlist w[-2]=play w[-1]=my w[0]=faves w[1]=playlist wl[-2]=play wl[-1]=my wl[0]=faves wl[1]=playlist pos[-2]=VB pos[-1]=PRP$ pos[0]=PRP$ pos[1]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=m p1[0]=f p1[1]=p p2[-2]=pl p2[-1]=my p2[0]=fa p2[1]=pl p3[-2]=pla p3[-1]= p3[0]=fav p3[1]=pla p4[-2]=play p4[-1]= p4[0]=fave p4[1]=play s1[-2]=y s1[-1]=y s1[0]=s s1[1]=t s2[-2]=ay s2[-1]=my s2[0]=es s2[1]=st s3[-2]=lay s3[-1]= s3[0]=ves s3[1]=ist s4[-2]=play s4[-1]= s4[0]=aves s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|my w[-1]|w[0]=my|faves w[0]|w[1]=faves|playlist pos[-2]|pos[-1]=VB|PRP$ pos[-1]|pos[0]=PRP$|PRP$ pos[0]|pos[1]=PRP$|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=my w[1..4]=playlist +O w[-2]=my w[-1]=faves w[0]=playlist wl[-2]=my wl[-1]=faves wl[0]=playlist pos[-2]=PRP$ pos[-1]=PRP$ pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=LL shape[-1]=LLLLL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=f p1[0]=p p2[-2]=my p2[-1]=fa p2[0]=pl p3[-2]= p3[-1]=fav p3[0]=pla p4[-2]= p4[-1]=fave p4[0]=play s1[-2]=y s1[-1]=s s1[0]=t s2[-2]=my s2[-1]=es s2[0]=st s3[-2]= s3[-1]=ves s3[0]=ist s4[-2]= s4[-1]=aves s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=my|faves w[-1]|w[0]=faves|playlist pos[-2]|pos[-1]=PRP$|PRP$ pos[-1]|pos[0]=PRP$|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=my w[-4..-1]=faves __EOS__ + +O w[0]=put w[1]=on w[2]=some wl[0]=put wl[1]=on wl[2]=some pos[0]=VBN pos[1]=RP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=o p1[2]=s p2[0]=pu p2[1]=on p2[2]=so p3[0]=put p3[1]= p3[2]=som p4[0]= p4[1]= p4[2]=some s1[0]=t s1[1]=n s1[2]=e s2[0]=ut s2[1]=on s2[2]=me s3[0]=put s3[1]= s3[2]=ome s4[0]= s4[1]= s4[2]=some 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|on w[1]|w[2]=on|some pos[0]|pos[1]=VBN|RP pos[1]|pos[2]=RP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=some w[1..4]=Rolling w[1..4]=Stones __BOS__ +O w[-1]=put w[0]=on w[1]=some w[2]=Rolling wl[-1]=put wl[0]=on wl[1]=some wl[2]=rolling pos[-1]=VBN pos[0]=RP pos[1]=DT pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LL shape[1]=LLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=o p1[1]=s p1[2]=R p2[-1]=pu p2[0]=on p2[1]=so p2[2]=Ro p3[-1]=put p3[0]= p3[1]=som p3[2]=Rol p4[-1]= p4[0]= p4[1]=some p4[2]=Roll s1[-1]=t s1[0]=n s1[1]=e s1[2]=g s2[-1]=ut s2[0]=on s2[1]=me s2[2]=ng s3[-1]=put s3[0]= s3[1]=ome s3[2]=ing s4[-1]= s4[0]= s4[1]=some s4[2]=ling 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|on w[0]|w[1]=on|some w[1]|w[2]=some|Rolling pos[-1]|pos[0]=VBN|RP pos[0]|pos[1]=RP|DT pos[1]|pos[2]=DT|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=put w[1..4]=some w[1..4]=Rolling w[1..4]=Stones +O w[-2]=put w[-1]=on w[0]=some w[1]=Rolling w[2]=Stones wl[-2]=put wl[-1]=on wl[0]=some wl[1]=rolling wl[2]=stones pos[-2]=VBN pos[-1]=RP pos[0]=DT pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LL shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=o p1[0]=s p1[1]=R p1[2]=S p2[-2]=pu p2[-1]=on p2[0]=so p2[1]=Ro p2[2]=St p3[-2]=put p3[-1]= p3[0]=som p3[1]=Rol p3[2]=Sto p4[-2]= p4[-1]= p4[0]=some p4[1]=Roll p4[2]=Ston s1[-2]=t s1[-1]=n s1[0]=e s1[1]=g s1[2]=s s2[-2]=ut s2[-1]=on s2[0]=me s2[1]=ng s2[2]=es s3[-2]=put s3[-1]= s3[0]=ome s3[1]=ing s3[2]=nes s4[-2]= s4[-1]= s4[0]=some s4[1]=ling s4[2]=ones 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=put|on w[-1]|w[0]=on|some w[0]|w[1]=some|Rolling w[1]|w[2]=Rolling|Stones pos[-2]|pos[-1]=VBN|RP pos[-1]|pos[0]=RP|DT pos[0]|pos[1]=DT|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=put w[-4..-1]=on w[1..4]=Rolling w[1..4]=Stones +artist w[-2]=on w[-1]=some w[0]=Rolling w[1]=Stones wl[-2]=on wl[-1]=some wl[0]=rolling wl[1]=stones pos[-2]=RP pos[-1]=DT pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LL shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=o p1[-1]=s p1[0]=R p1[1]=S p2[-2]=on p2[-1]=so p2[0]=Ro p2[1]=St p3[-2]= p3[-1]=som p3[0]=Rol p3[1]=Sto p4[-2]= p4[-1]=some p4[0]=Roll p4[1]=Ston s1[-2]=n s1[-1]=e s1[0]=g s1[1]=s s2[-2]=on s2[-1]=me s2[0]=ng s2[1]=es s3[-2]= s3[-1]=ome s3[0]=ing s3[1]=nes s4[-2]= s4[-1]=some s4[0]=ling s4[1]=ones 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=on|some w[-1]|w[0]=some|Rolling w[0]|w[1]=Rolling|Stones pos[-2]|pos[-1]=RP|DT pos[-1]|pos[0]=DT|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=put w[-4..-1]=on w[-4..-1]=some w[1..4]=Stones +artist w[-2]=some w[-1]=Rolling w[0]=Stones wl[-2]=some wl[-1]=rolling wl[0]=stones pos[-2]=DT pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=s p1[-1]=R p1[0]=S p2[-2]=so p2[-1]=Ro p2[0]=St p3[-2]=som p3[-1]=Rol p3[0]=Sto p4[-2]=some p4[-1]=Roll p4[0]=Ston s1[-2]=e s1[-1]=g s1[0]=s s2[-2]=me s2[-1]=ng s2[0]=es s3[-2]=ome s3[-1]=ing s3[0]=nes s4[-2]=some s4[-1]=ling s4[0]=ones 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|Rolling w[-1]|w[0]=Rolling|Stones pos[-2]|pos[-1]=DT|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=put w[-4..-1]=on w[-4..-1]=some w[-4..-1]=Rolling __EOS__ + +O w[0]=music w[1]=Grenade w[2]=in wl[0]=music wl[1]=grenade wl[2]=in pos[0]=NN pos[1]=NNP pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLLL shape[1]=ULLLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=m p1[1]=G p1[2]=i p2[0]=mu p2[1]=Gr p2[2]=in p3[0]=mus p3[1]=Gre p3[2]= p4[0]=musi p4[1]=Gren p4[2]= s1[0]=c s1[1]=e s1[2]=n s2[0]=ic s2[1]=de s2[2]=in s3[0]=sic s3[1]=ade s3[2]= s4[0]=usic s4[1]=nade s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=music|Grenade w[1]|w[2]=Grenade|in pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Grenade w[1..4]=in w[1..4]=my w[1..4]=library __BOS__ +song w[-1]=music w[0]=Grenade w[1]=in w[2]=my wl[-1]=music wl[0]=grenade wl[1]=in wl[2]=my pos[-1]=NN pos[0]=NNP pos[1]=IN pos[2]=PRP$ chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-1]=LLLLL shape[0]=ULLLLLL shape[1]=LL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=m p1[0]=G p1[1]=i p1[2]=m p2[-1]=mu p2[0]=Gr p2[1]=in p2[2]=my p3[-1]=mus p3[0]=Gre p3[1]= p3[2]= p4[-1]=musi p4[0]=Gren p4[1]= p4[2]= s1[-1]=c s1[0]=e s1[1]=n s1[2]=y s2[-1]=ic s2[0]=de s2[1]=in s2[2]=my s3[-1]=sic s3[0]=ade s3[1]= s3[2]= s4[-1]=usic s4[0]=nade s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=music|Grenade w[0]|w[1]=Grenade|in w[1]|w[2]=in|my pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|PRP$ chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=music w[1..4]=in w[1..4]=my w[1..4]=library +O w[-2]=music w[-1]=Grenade w[0]=in w[1]=my w[2]=library wl[-2]=music wl[-1]=grenade wl[0]=in wl[1]=my wl[2]=library pos[-2]=NN pos[-1]=NNP pos[0]=IN pos[1]=PRP$ pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLL shape[-1]=ULLLLLL shape[0]=LL shape[1]=LL shape[2]=LLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=m p1[-1]=G p1[0]=i p1[1]=m p1[2]=l p2[-2]=mu p2[-1]=Gr p2[0]=in p2[1]=my p2[2]=li p3[-2]=mus p3[-1]=Gre p3[0]= p3[1]= p3[2]=lib p4[-2]=musi p4[-1]=Gren p4[0]= p4[1]= p4[2]=libr s1[-2]=c s1[-1]=e s1[0]=n s1[1]=y s1[2]=y s2[-2]=ic s2[-1]=de s2[0]=in s2[1]=my s2[2]=ry s3[-2]=sic s3[-1]=ade s3[0]= s3[1]= s3[2]=ary s4[-2]=usic s4[-1]=nade s4[0]= s4[1]= s4[2]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=music|Grenade w[-1]|w[0]=Grenade|in w[0]|w[1]=in|my w[1]|w[2]=my|library pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=music w[-4..-1]=Grenade w[1..4]=my w[1..4]=library +O w[-2]=Grenade w[-1]=in w[0]=my w[1]=library wl[-2]=grenade wl[-1]=in wl[0]=my wl[1]=library pos[-2]=NNP pos[-1]=IN pos[0]=PRP$ pos[1]=NN chk[-2]=I chk[-1]=O chk[0]=O chk[1]=O shape[-2]=ULLLLLL shape[-1]=LL shape[0]=LL shape[1]=LLLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=G p1[-1]=i p1[0]=m p1[1]=l p2[-2]=Gr p2[-1]=in p2[0]=my p2[1]=li p3[-2]=Gre p3[-1]= p3[0]= p3[1]=lib p4[-2]=Gren p4[-1]= p4[0]= p4[1]=libr s1[-2]=e s1[-1]=n s1[0]=y s1[1]=y s2[-2]=de s2[-1]=in s2[0]=my s2[1]=ry s3[-2]=ade s3[-1]= s3[0]= s3[1]=ary s4[-2]=nade s4[-1]= s4[0]= s4[1]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Grenade|in w[-1]|w[0]=in|my w[0]|w[1]=my|library pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=music w[-4..-1]=Grenade w[-4..-1]=in w[1..4]=library +O w[-2]=in w[-1]=my w[0]=library wl[-2]=in wl[-1]=my wl[0]=library pos[-2]=IN pos[-1]=PRP$ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=i p1[-1]=m p1[0]=l p2[-2]=in p2[-1]=my p2[0]=li p3[-2]= p3[-1]= p3[0]=lib p4[-2]= p4[-1]= p4[0]=libr s1[-2]=n s1[-1]=y s1[0]=y s2[-2]=in s2[-1]=my s2[0]=ry s3[-2]= s3[-1]= s3[0]=ary s4[-2]= s4[-1]= s4[0]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=in|my w[-1]|w[0]=my|library pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=music w[-4..-1]=Grenade w[-4..-1]=in w[-4..-1]=my __EOS__ + +O w[0]=play w[1]=Guns w[2]=N wl[0]=play wl[1]=guns wl[2]=n pos[0]=VB pos[1]=NNPS pos[2]=NNPS chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLL shape[2]=U shaped[0]=L shaped[1]=UL shaped[2]=U type[0]=AllLetter type[1]=InitUpper type[2]=AllUpper p1[0]=p p1[1]=G p1[2]=N p2[0]=pl p2[1]=Gu p2[2]= p3[0]=pla p3[1]=Gun p3[2]= p4[0]=play p4[1]=Guns p4[2]= s1[0]=y s1[1]=s s1[2]=N s2[0]=ay s2[1]=ns s2[2]= s3[0]=lay s3[1]=uns s3[2]= s4[0]=play s4[1]=Guns s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=yes al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Guns w[1]|w[2]=Guns|N pos[0]|pos[1]=VB|NNPS pos[1]|pos[2]=NNPS|NNPS chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|U type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllUpper w[1..4]=Guns w[1..4]=N w[1..4]=Roses __BOS__ +artist w[-1]=play w[0]=Guns w[1]=N w[2]=Roses wl[-1]=play wl[0]=guns wl[1]=n wl[2]=roses pos[-1]=VB pos[0]=NNPS pos[1]=NNPS pos[2]=NNPS chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLL shape[1]=U shape[2]=ULLLL shaped[-1]=L shaped[0]=UL shaped[1]=U shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllUpper type[2]=InitUpper p1[-1]=p p1[0]=G p1[1]=N p1[2]=R p2[-1]=pl p2[0]=Gu p2[1]= p2[2]=Ro p3[-1]=pla p3[0]=Gun p3[1]= p3[2]=Ros p4[-1]=play p4[0]=Guns p4[1]= p4[2]=Rose s1[-1]=y s1[0]=s s1[1]=N s1[2]=s s2[-1]=ay s2[0]=ns s2[1]= s2[2]=es s3[-1]=lay s3[0]=uns s3[1]= s3[2]=ses s4[-1]=play s4[0]=Guns s4[1]= s4[2]=oses 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=yes au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Guns w[0]|w[1]=Guns|N w[1]|w[2]=N|Roses pos[-1]|pos[0]=VB|NNPS pos[0]|pos[1]=NNPS|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|U shaped[1]|shaped[2]=U|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllUpper type[1]|type[2]=AllUpper|InitUpper w[-4..-1]=play w[1..4]=N w[1..4]=Roses +artist w[-2]=play w[-1]=Guns w[0]=N w[1]=Roses wl[-2]=play wl[-1]=guns wl[0]=n wl[1]=roses pos[-2]=VB pos[-1]=NNPS pos[0]=NNPS pos[1]=NNPS chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=U shape[1]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=U shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllUpper type[1]=InitUpper p1[-2]=p p1[-1]=G p1[0]=N p1[1]=R p2[-2]=pl p2[-1]=Gu p2[0]= p2[1]=Ro p3[-2]=pla p3[-1]=Gun p3[0]= p3[1]=Ros p4[-2]=play p4[-1]=Guns p4[0]= p4[1]=Rose s1[-2]=y s1[-1]=s s1[0]=N s1[1]=s s2[-2]=ay s2[-1]=ns s2[0]= s2[1]=es s3[-2]=lay s3[-1]=uns s3[0]= s3[1]=ses s4[-2]=play s4[-1]=Guns s4[0]= s4[1]=oses 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=yes au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Guns w[-1]|w[0]=Guns|N w[0]|w[1]=N|Roses pos[-2]|pos[-1]=VB|NNPS pos[-1]|pos[0]=NNPS|NNPS pos[0]|pos[1]=NNPS|NNPS chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|U shaped[0]|shaped[1]=U|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllUpper type[0]|type[1]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=Guns w[1..4]=Roses +artist w[-2]=Guns w[-1]=N w[0]=Roses wl[-2]=guns wl[-1]=n wl[0]=roses pos[-2]=NNPS pos[-1]=NNPS pos[0]=NNPS chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=U shape[0]=ULLLL shaped[-2]=UL shaped[-1]=U shaped[0]=UL type[-2]=InitUpper type[-1]=AllUpper type[0]=InitUpper p1[-2]=G p1[-1]=N p1[0]=R p2[-2]=Gu p2[-1]= p2[0]=Ro p3[-2]=Gun p3[-1]= p3[0]=Ros p4[-2]=Guns p4[-1]= p4[0]=Rose s1[-2]=s s1[-1]=N s1[0]=s s2[-2]=ns s2[-1]= s2[0]=es s3[-2]=uns s3[-1]= s3[0]=ses s4[-2]=Guns s4[-1]= s4[0]=oses 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=yes au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=no cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Guns|N w[-1]|w[0]=N|Roses pos[-2]|pos[-1]=NNPS|NNPS pos[-1]|pos[0]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|U shaped[-1]|shaped[0]=U|UL type[-2]|type[-1]=InitUpper|AllUpper type[-1]|type[0]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=Guns w[-4..-1]=N __EOS__ + +O w[0]=Play w[1]=chill w[2]=playlist wl[0]=play wl[1]=chill wl[2]=playlist pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=O shape[0]=ULLL shape[1]=LLLLL shape[2]=LLLLLLLL shaped[0]=UL shaped[1]=L shaped[2]=L type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[0]=P p1[1]=c p1[2]=p p2[0]=Pl p2[1]=ch p2[2]=pl p3[0]=Pla p3[1]=chi p3[2]=pla p4[0]=Play p4[1]=chil p4[2]=play s1[0]=y s1[1]=l s1[2]=t s2[0]=ay s2[1]=ll s2[2]=st s3[0]=lay s3[1]=ill s3[2]=ist s4[0]=Play s4[1]=hill s4[2]=list 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=Play|chill w[1]|w[2]=chill|playlist pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=chill w[1..4]=playlist __BOS__ +playlist w[-1]=Play w[0]=chill w[1]=playlist wl[-1]=play wl[0]=chill wl[1]=playlist pos[-1]=VB pos[0]=NN pos[1]=NN chk[-1]=O chk[0]=I chk[1]=O shape[-1]=ULLL shape[0]=LLLLL shape[1]=LLLLLLLL shaped[-1]=UL shaped[0]=L shaped[1]=L type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter p1[-1]=P p1[0]=c p1[1]=p p2[-1]=Pl p2[0]=ch p2[1]=pl p3[-1]=Pla p3[0]=chi p3[1]=pla p4[-1]=Play p4[0]=chil p4[1]=play s1[-1]=y s1[0]=l s1[1]=t s2[-1]=ay s2[0]=ll s2[1]=st s3[-1]=lay s3[0]=ill s3[1]=ist s4[-1]=Play s4[0]=hill s4[1]=list 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=yes iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=no al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=yes cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=Play|chill w[0]|w[1]=chill|playlist pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=Play w[1..4]=playlist +O w[-2]=Play w[-1]=chill w[0]=playlist wl[-2]=play wl[-1]=chill wl[0]=playlist pos[-2]=VB pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=ULLL shape[-1]=LLLLL shape[0]=LLLLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter p1[-2]=P p1[-1]=c p1[0]=p p2[-2]=Pl p2[-1]=ch p2[0]=pl p3[-2]=Pla p3[-1]=chi p3[0]=pla p4[-2]=Play p4[-1]=chil p4[0]=play s1[-2]=y s1[-1]=l s1[0]=t s2[-2]=ay s2[-1]=ll s2[0]=st s3[-2]=lay s3[-1]=ill s3[0]=ist s4[-2]=Play s4[-1]=hill s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Play|chill w[-1]|w[0]=chill|playlist pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=Play w[-4..-1]=chill __EOS__ + +O w[0]=let's w[1]=hear w[2]=Wilco wl[0]=let's wl[1]=hear wl[2]=wilco pos[0]=VB pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=I shape[0]=LLL'L shape[1]=LLLL shape[2]=ULLLL shaped[0]=L'L shaped[1]=L shaped[2]=UL type[0]=NO type[1]=AllLetter type[2]=InitUpper p1[0]=l p1[1]=h p1[2]=W p2[0]=le p2[1]=he p2[2]=Wi p3[0]=let p3[1]=hea p3[2]=Wil p4[0]=let' p4[1]=hear p4[2]=Wilc s1[0]=s s1[1]=r s1[2]=o s2[0]='s s2[1]=ar s2[2]=co s3[0]=t's s3[1]=ear s3[2]=lco s4[0]=et's s4[1]=hear s4[2]=ilco 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=let's|hear w[1]|w[2]=hear|Wilco pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L'L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=NO|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=hear w[1..4]=Wilco __BOS__ +O w[-1]=let's w[0]=hear w[1]=Wilco wl[-1]=let's wl[0]=hear wl[1]=wilco pos[-1]=VB pos[0]=PRP pos[1]=VB chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLL'L shape[0]=LLLL shape[1]=ULLLL shaped[-1]=L'L shaped[0]=L shaped[1]=UL type[-1]=NO type[0]=AllLetter type[1]=InitUpper p1[-1]=l p1[0]=h p1[1]=W p2[-1]=le p2[0]=he p2[1]=Wi p3[-1]=let p3[0]=hea p3[1]=Wil p4[-1]=let' p4[0]=hear p4[1]=Wilc s1[-1]=s s1[0]=r s1[1]=o s2[-1]='s s2[0]=ar s2[1]=co s3[-1]=t's s3[0]=ear s3[1]=lco s4[-1]=et's s4[0]=hear s4[1]=ilco 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=yes cs[0]=no cs[1]=no w[-1]|w[0]=let's|hear w[0]|w[1]=hear|Wilco pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L'L|L shaped[0]|shaped[1]=L|UL type[-1]|type[0]=NO|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=let's w[1..4]=Wilco +artist w[-2]=let's w[-1]=hear w[0]=Wilco wl[-2]=let's wl[-1]=hear wl[0]=wilco pos[-2]=VB pos[-1]=PRP pos[0]=VB chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL'L shape[-1]=LLLL shape[0]=ULLLL shaped[-2]=L'L shaped[-1]=L shaped[0]=UL type[-2]=NO type[-1]=AllLetter type[0]=InitUpper p1[-2]=l p1[-1]=h p1[0]=W p2[-2]=le p2[-1]=he p2[0]=Wi p3[-2]=let p3[-1]=hea p3[0]=Wil p4[-2]=let' p4[-1]=hear p4[0]=Wilc s1[-2]=s s1[-1]=r s1[0]=o s2[-2]='s s2[-1]=ar s2[0]=co s3[-2]=t's s3[-1]=ear s3[0]=lco s4[-2]=et's s4[-1]=hear s4[0]=ilco 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=yes cs[-1]=no cs[0]=no w[-2]|w[-1]=let's|hear w[-1]|w[0]=hear|Wilco pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L'L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=NO|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=let's w[-4..-1]=hear __EOS__ + +O w[0]=play w[1]=What w[2]=Does wl[0]=play wl[1]=what wl[2]=does pos[0]=VB pos[1]=WP pos[2]=WP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLL shape[2]=ULLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=W p1[2]=D p2[0]=pl p2[1]=Wh p2[2]=Do p3[0]=pla p3[1]=Wha p3[2]=Doe p4[0]=play p4[1]=What p4[2]=Does s1[0]=y s1[1]=t s1[2]=s s2[0]=ay s2[1]=at s2[2]=es s3[0]=lay s3[1]=hat s3[2]=oes s4[0]=play s4[1]=What s4[2]=Does 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|What w[1]|w[2]=What|Does pos[0]|pos[1]=VB|WP pos[1]|pos[2]=WP|WP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=What w[1..4]=Does w[1..4]=the w[1..4]=Fox __BOS__ +song w[-1]=play w[0]=What w[1]=Does w[2]=the wl[-1]=play wl[0]=what wl[1]=does wl[2]=the pos[-1]=VB pos[0]=WP pos[1]=WP pos[2]=WP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLL shape[1]=ULLL shape[2]=LLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=W p1[1]=D p1[2]=t p2[-1]=pl p2[0]=Wh p2[1]=Do p2[2]=th p3[-1]=pla p3[0]=Wha p3[1]=Doe p3[2]=the p4[-1]=play p4[0]=What p4[1]=Does p4[2]= s1[-1]=y s1[0]=t s1[1]=s s1[2]=e s2[-1]=ay s2[0]=at s2[1]=es s2[2]=he s3[-1]=lay s3[0]=hat s3[1]=oes s3[2]=the s4[-1]=play s4[0]=What s4[1]=Does s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|What w[0]|w[1]=What|Does w[1]|w[2]=Does|the pos[-1]|pos[0]=VB|WP pos[0]|pos[1]=WP|WP pos[1]|pos[2]=WP|WP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Does w[1..4]=the w[1..4]=Fox w[1..4]=Say +song w[-2]=play w[-1]=What w[0]=Does w[1]=the w[2]=Fox wl[-2]=play wl[-1]=what wl[0]=does wl[1]=the wl[2]=fox pos[-2]=VB pos[-1]=WP pos[0]=WP pos[1]=WP pos[2]=WP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=ULLL shape[1]=LLL shape[2]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=W p1[0]=D p1[1]=t p1[2]=F p2[-2]=pl p2[-1]=Wh p2[0]=Do p2[1]=th p2[2]=Fo p3[-2]=pla p3[-1]=Wha p3[0]=Doe p3[1]=the p3[2]=Fox p4[-2]=play p4[-1]=What p4[0]=Does p4[1]= p4[2]= s1[-2]=y s1[-1]=t s1[0]=s s1[1]=e s1[2]=x s2[-2]=ay s2[-1]=at s2[0]=es s2[1]=he s2[2]=ox s3[-2]=lay s3[-1]=hat s3[0]=oes s3[1]=the s3[2]=Fox s4[-2]=play s4[-1]=What s4[0]=Does s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|What w[-1]|w[0]=What|Does w[0]|w[1]=Does|the w[1]|w[2]=the|Fox pos[-2]|pos[-1]=VB|WP pos[-1]|pos[0]=WP|WP pos[0]|pos[1]=WP|WP pos[1]|pos[2]=WP|WP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=What w[1..4]=the w[1..4]=Fox w[1..4]=Say +song w[-2]=What w[-1]=Does w[0]=the w[1]=Fox w[2]=Say wl[-2]=what wl[-1]=does wl[0]=the wl[1]=fox wl[2]=say pos[-2]=WP pos[-1]=WP pos[0]=WP pos[1]=WP pos[2]=WP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=ULLL shape[0]=LLL shape[1]=ULL shape[2]=ULL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=W p1[-1]=D p1[0]=t p1[1]=F p1[2]=S p2[-2]=Wh p2[-1]=Do p2[0]=th p2[1]=Fo p2[2]=Sa p3[-2]=Wha p3[-1]=Doe p3[0]=the p3[1]=Fox p3[2]=Say p4[-2]=What p4[-1]=Does p4[0]= p4[1]= p4[2]= s1[-2]=t s1[-1]=s s1[0]=e s1[1]=x s1[2]=y s2[-2]=at s2[-1]=es s2[0]=he s2[1]=ox s2[2]=ay s3[-2]=hat s3[-1]=oes s3[0]=the s3[1]=Fox s3[2]=Say s4[-2]=What s4[-1]=Does s4[0]= s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=What|Does w[-1]|w[0]=Does|the w[0]|w[1]=the|Fox w[1]|w[2]=Fox|Say pos[-2]|pos[-1]=WP|WP pos[-1]|pos[0]=WP|WP pos[0]|pos[1]=WP|WP pos[1]|pos[2]=WP|WP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=What w[-4..-1]=Does w[1..4]=Fox w[1..4]=Say +song w[-2]=Does w[-1]=the w[0]=Fox w[1]=Say wl[-2]=does wl[-1]=the wl[0]=fox wl[1]=say pos[-2]=WP pos[-1]=WP pos[0]=WP pos[1]=WP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=LLL shape[0]=ULL shape[1]=ULL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=D p1[-1]=t p1[0]=F p1[1]=S p2[-2]=Do p2[-1]=th p2[0]=Fo p2[1]=Sa p3[-2]=Doe p3[-1]=the p3[0]=Fox p3[1]=Say p4[-2]=Does p4[-1]= p4[0]= p4[1]= s1[-2]=s s1[-1]=e s1[0]=x s1[1]=y s2[-2]=es s2[-1]=he s2[0]=ox s2[1]=ay s3[-2]=oes s3[-1]=the s3[0]=Fox s3[1]=Say s4[-2]=Does s4[-1]= s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Does|the w[-1]|w[0]=the|Fox w[0]|w[1]=Fox|Say pos[-2]|pos[-1]=WP|WP pos[-1]|pos[0]=WP|WP pos[0]|pos[1]=WP|WP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=What w[-4..-1]=Does w[-4..-1]=the w[1..4]=Say +song w[-2]=the w[-1]=Fox w[0]=Say wl[-2]=the wl[-1]=fox wl[0]=say pos[-2]=WP pos[-1]=WP pos[0]=WP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLL shape[-1]=ULL shape[0]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=t p1[-1]=F p1[0]=S p2[-2]=th p2[-1]=Fo p2[0]=Sa p3[-2]=the p3[-1]=Fox p3[0]=Say p4[-2]= p4[-1]= p4[0]= s1[-2]=e s1[-1]=x s1[0]=y s2[-2]=he s2[-1]=ox s2[0]=ay s3[-2]=the s3[-1]=Fox s3[0]=Say s4[-2]= s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|Fox w[-1]|w[0]=Fox|Say pos[-2]|pos[-1]=WP|WP pos[-1]|pos[0]=WP|WP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=What w[-4..-1]=Does w[-4..-1]=the w[-4..-1]=Fox __EOS__ + +O w[0]=play w[1]=the w[2]=Mean wl[0]=play wl[1]=the wl[2]=mean pos[0]=VB pos[1]=DT pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLL shape[2]=ULLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=t p1[2]=M p2[0]=pl p2[1]=th p2[2]=Me p3[0]=pla p3[1]=the p3[2]=Mea p4[0]=play p4[1]= p4[2]=Mean s1[0]=y s1[1]=e s1[2]=n s2[0]=ay s2[1]=he s2[2]=an s3[0]=lay s3[1]=the s3[2]=ean s4[0]=play s4[1]= s4[2]=Mean 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|Mean pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=the w[1..4]=Mean w[1..4]=Kitty w[1..4]=song __BOS__ +O w[-1]=play w[0]=the w[1]=Mean w[2]=Kitty wl[-1]=play wl[0]=the wl[1]=mean wl[2]=kitty pos[-1]=VB pos[0]=DT pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=ULLL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=M p1[2]=K p2[-1]=pl p2[0]=th p2[1]=Me p2[2]=Ki p3[-1]=pla p3[0]=the p3[1]=Mea p3[2]=Kit p4[-1]=play p4[0]= p4[1]=Mean p4[2]=Kitt s1[-1]=y s1[0]=e s1[1]=n s1[2]=y s2[-1]=ay s2[0]=he s2[1]=an s2[2]=ty s3[-1]=lay s3[0]=the s3[1]=ean s3[2]=tty s4[-1]=play s4[0]= s4[1]=Mean s4[2]=itty 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|Mean w[1]|w[2]=Mean|Kitty pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Mean w[1..4]=Kitty w[1..4]=song +song w[-2]=play w[-1]=the w[0]=Mean w[1]=Kitty w[2]=song wl[-2]=play wl[-1]=the wl[0]=mean wl[1]=kitty wl[2]=song pos[-2]=VB pos[-1]=DT pos[0]=NNP pos[1]=NNP pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=ULLL shape[1]=ULLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=M p1[1]=K p1[2]=s p2[-2]=pl p2[-1]=th p2[0]=Me p2[1]=Ki p2[2]=so p3[-2]=pla p3[-1]=the p3[0]=Mea p3[1]=Kit p3[2]=son p4[-2]=play p4[-1]= p4[0]=Mean p4[1]=Kitt p4[2]=song s1[-2]=y s1[-1]=e s1[0]=n s1[1]=y s1[2]=g s2[-2]=ay s2[-1]=he s2[0]=an s2[1]=ty s2[2]=ng s3[-2]=lay s3[-1]=the s3[0]=ean s3[1]=tty s3[2]=ong s4[-2]=play s4[-1]= s4[0]=Mean s4[1]=itty s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|Mean w[0]|w[1]=Mean|Kitty w[1]|w[2]=Kitty|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=Kitty w[1..4]=song +song w[-2]=the w[-1]=Mean w[0]=Kitty w[1]=song wl[-2]=the wl[-1]=mean wl[0]=kitty wl[1]=song pos[-2]=DT pos[-1]=NNP pos[0]=NNP pos[1]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O shape[-2]=LLL shape[-1]=ULLL shape[0]=ULLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-2]=t p1[-1]=M p1[0]=K p1[1]=s p2[-2]=th p2[-1]=Me p2[0]=Ki p2[1]=so p3[-2]=the p3[-1]=Mea p3[0]=Kit p3[1]=son p4[-2]= p4[-1]=Mean p4[0]=Kitt p4[1]=song s1[-2]=e s1[-1]=n s1[0]=y s1[1]=g s2[-2]=he s2[-1]=an s2[0]=ty s2[1]=ng s3[-2]=the s3[-1]=ean s3[0]=tty s3[1]=ong s4[-2]= s4[-1]=Mean s4[0]=itty s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=the|Mean w[-1]|w[0]=Mean|Kitty w[0]|w[1]=Kitty|song pos[-2]|pos[-1]=DT|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=Mean w[1..4]=song +O w[-2]=Mean w[-1]=Kitty w[0]=song wl[-2]=mean wl[-1]=kitty wl[0]=song pos[-2]=NNP pos[-1]=NNP pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULLL shape[-1]=ULLLL shape[0]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=M p1[-1]=K p1[0]=s p2[-2]=Me p2[-1]=Ki p2[0]=so p3[-2]=Mea p3[-1]=Kit p3[0]=son p4[-2]=Mean p4[-1]=Kitt p4[0]=song s1[-2]=n s1[-1]=y s1[0]=g s2[-2]=an s2[-1]=ty s2[0]=ng s3[-2]=ean s3[-1]=tty s3[0]=ong s4[-2]=Mean s4[-1]=itty s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Mean|Kitty w[-1]|w[0]=Kitty|song pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=Mean w[-4..-1]=Kitty __EOS__ + +O w[0]=play w[1]=song w[2]=Thriller wl[0]=play wl[1]=song wl[2]=thriller pos[0]=VBP pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=T p2[0]=pl p2[1]=so p2[2]=Th p3[0]=pla p3[1]=son p3[2]=Thr p4[0]=play p4[1]=song p4[2]=Thri s1[0]=y s1[1]=g s1[2]=r s2[0]=ay s2[1]=ng s2[2]=er s3[0]=lay s3[1]=ong s3[2]=ler s4[0]=play s4[1]=song s4[2]=ller 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|Thriller pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=Thriller __BOS__ +O w[-1]=play w[0]=song w[1]=Thriller wl[-1]=play wl[0]=song wl[1]=thriller pos[-1]=VBP pos[0]=NN pos[1]=NNP chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-1]=p p1[0]=s p1[1]=T p2[-1]=pl p2[0]=so p2[1]=Th p3[-1]=pla p3[0]=son p3[1]=Thr p4[-1]=play p4[0]=song p4[1]=Thri s1[-1]=y s1[0]=g s1[1]=r s2[-1]=ay s2[0]=ng s2[1]=er s3[-1]=lay s3[0]=ong s3[1]=ler s4[-1]=play s4[0]=song s4[1]=ller 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|song w[0]|w[1]=song|Thriller pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=Thriller +song w[-2]=play w[-1]=song w[0]=Thriller wl[-2]=play wl[-1]=song wl[0]=thriller pos[-2]=VBP pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=s p1[0]=T p2[-2]=pl p2[-1]=so p2[0]=Th p3[-2]=pla p3[-1]=son p3[0]=Thr p4[-2]=play p4[-1]=song p4[0]=Thri s1[-2]=y s1[-1]=g s1[0]=r s2[-2]=ay s2[-1]=ng s2[0]=er s3[-2]=lay s3[-1]=ong s3[0]=ler s4[-2]=play s4[-1]=song s4[0]=ller 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Thriller pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song __EOS__ + +O w[0]=play w[1]=song w[2]=The wl[0]=play wl[1]=song wl[2]=the pos[0]=VBP pos[1]=NN pos[2]=DT chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=T p2[0]=pl p2[1]=so p2[2]=Th p3[0]=pla p3[1]=son p3[2]=The p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=e s2[0]=ay s2[1]=ng s2[2]=he s3[0]=lay s3[1]=ong s3[2]=The s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|The pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=The w[1..4]=Cantos w[1..4]=de __BOS__ +O w[-1]=play w[0]=song w[1]=The w[2]=Cantos wl[-1]=play wl[0]=song wl[1]=the wl[2]=cantos pos[-1]=VBP pos[0]=NN pos[1]=DT pos[2]=DT chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=T p1[2]=C p2[-1]=pl p2[0]=so p2[1]=Th p2[2]=Ca p3[-1]=pla p3[0]=son p3[1]=The p3[2]=Can p4[-1]=play p4[0]=song p4[1]= p4[2]=Cant s1[-1]=y s1[0]=g s1[1]=e s1[2]=s s2[-1]=ay s2[0]=ng s2[1]=he s2[2]=os s3[-1]=lay s3[0]=ong s3[1]=The s3[2]=tos s4[-1]=play s4[0]=song s4[1]= s4[2]=ntos 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|The w[1]|w[2]=The|Cantos pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|DT pos[1]|pos[2]=DT|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=The w[1..4]=Cantos w[1..4]=de w[1..4]=Mallorca +song w[-2]=play w[-1]=song w[0]=The w[1]=Cantos w[2]=de wl[-2]=play wl[-1]=song wl[0]=the wl[1]=cantos wl[2]=de pos[-2]=VBP pos[-1]=NN pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=s p1[0]=T p1[1]=C p1[2]=d p2[-2]=pl p2[-1]=so p2[0]=Th p2[1]=Ca p2[2]=de p3[-2]=pla p3[-1]=son p3[0]=The p3[1]=Can p3[2]= p4[-2]=play p4[-1]=song p4[0]= p4[1]=Cant p4[2]= s1[-2]=y s1[-1]=g s1[0]=e s1[1]=s s1[2]=e s2[-2]=ay s2[-1]=ng s2[0]=he s2[1]=os s2[2]=de s3[-2]=lay s3[-1]=ong s3[0]=The s3[1]=tos s3[2]= s4[-2]=play s4[-1]=song s4[0]= s4[1]=ntos s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|The w[0]|w[1]=The|Cantos w[1]|w[2]=Cantos|de pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=song w[1..4]=Cantos w[1..4]=de w[1..4]=Mallorca +song w[-2]=song w[-1]=The w[0]=Cantos w[1]=de w[2]=Mallorca wl[-2]=song wl[-1]=the wl[0]=cantos wl[1]=de wl[2]=mallorca pos[-2]=NN pos[-1]=DT pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLL shape[1]=LL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=T p1[0]=C p1[1]=d p1[2]=M p2[-2]=so p2[-1]=Th p2[0]=Ca p2[1]=de p2[2]=Ma p3[-2]=son p3[-1]=The p3[0]=Can p3[1]= p3[2]=Mal p4[-2]=song p4[-1]= p4[0]=Cant p4[1]= p4[2]=Mall s1[-2]=g s1[-1]=e s1[0]=s s1[1]=e s1[2]=a s2[-2]=ng s2[-1]=he s2[0]=os s2[1]=de s2[2]=ca s3[-2]=ong s3[-1]=The s3[0]=tos s3[1]= s3[2]=rca s4[-2]=song s4[-1]= s4[0]=ntos s4[1]= s4[2]=orca 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|The w[-1]|w[0]=The|Cantos w[0]|w[1]=Cantos|de w[1]|w[2]=de|Mallorca pos[-2]|pos[-1]=NN|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=The w[1..4]=de w[1..4]=Mallorca +song w[-2]=The w[-1]=Cantos w[0]=de w[1]=Mallorca wl[-2]=the wl[-1]=cantos wl[0]=de wl[1]=mallorca pos[-2]=DT pos[-1]=DT pos[0]=DT pos[1]=DT chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=ULLLLL shape[0]=LL shape[1]=ULLLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=T p1[-1]=C p1[0]=d p1[1]=M p2[-2]=Th p2[-1]=Ca p2[0]=de p2[1]=Ma p3[-2]=The p3[-1]=Can p3[0]= p3[1]=Mal p4[-2]= p4[-1]=Cant p4[0]= p4[1]=Mall s1[-2]=e s1[-1]=s s1[0]=e s1[1]=a s2[-2]=he s2[-1]=os s2[0]=de s2[1]=ca s3[-2]=The s3[-1]=tos s3[0]= s3[1]=rca s4[-2]= s4[-1]=ntos s4[0]= s4[1]=orca 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=The|Cantos w[-1]|w[0]=Cantos|de w[0]|w[1]=de|Mallorca pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=The w[-4..-1]=Cantos w[1..4]=Mallorca +song w[-2]=Cantos w[-1]=de w[0]=Mallorca wl[-2]=cantos wl[-1]=de wl[0]=mallorca pos[-2]=DT pos[-1]=DT pos[0]=DT chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=ULLLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=C p1[-1]=d p1[0]=M p2[-2]=Ca p2[-1]=de p2[0]=Ma p3[-2]=Can p3[-1]= p3[0]=Mal p4[-2]=Cant p4[-1]= p4[0]=Mall s1[-2]=s s1[-1]=e s1[0]=a s2[-2]=os s2[-1]=de s2[0]=ca s3[-2]=tos s3[-1]= s3[0]=rca s4[-2]=ntos s4[-1]= s4[0]=orca 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Cantos|de w[-1]|w[0]=de|Mallorca pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=song w[-4..-1]=The w[-4..-1]=Cantos w[-4..-1]=de __EOS__ + +O w[0]=play w[1]=Experimental w[2]=songs wl[0]=play wl[1]=experimental wl[2]=songs pos[0]=VB pos[1]=JJ pos[2]=NNS chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLLLLLL shape[2]=LLLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=E p1[2]=s p2[0]=pl p2[1]=Ex p2[2]=so p3[0]=pla p3[1]=Exp p3[2]=son p4[0]=play p4[1]=Expe p4[2]=song s1[0]=y s1[1]=l s1[2]=s s2[0]=ay s2[1]=al s2[2]=gs s3[0]=lay s3[1]=tal s3[2]=ngs s4[0]=play s4[1]=ntal s4[2]=ongs 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Experimental w[1]|w[2]=Experimental|songs pos[0]|pos[1]=VB|JJ pos[1]|pos[2]=JJ|NNS chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Experimental w[1..4]=songs w[1..4]=on w[1..4]=Spotify __BOS__ +genre w[-1]=play w[0]=Experimental w[1]=songs w[2]=on wl[-1]=play wl[0]=experimental wl[1]=songs wl[2]=on pos[-1]=VB pos[0]=JJ pos[1]=NNS pos[2]=IN chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=ULLLLLLLLLLL shape[1]=LLLLL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=E p1[1]=s p1[2]=o p2[-1]=pl p2[0]=Ex p2[1]=so p2[2]=on p3[-1]=pla p3[0]=Exp p3[1]=son p3[2]= p4[-1]=play p4[0]=Expe p4[1]=song p4[2]= s1[-1]=y s1[0]=l s1[1]=s s1[2]=n s2[-1]=ay s2[0]=al s2[1]=gs s2[2]=on s3[-1]=lay s3[0]=tal s3[1]=ngs s3[2]= s4[-1]=play s4[0]=ntal s4[1]=ongs s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Experimental w[0]|w[1]=Experimental|songs w[1]|w[2]=songs|on pos[-1]|pos[0]=VB|JJ pos[0]|pos[1]=JJ|NNS pos[1]|pos[2]=NNS|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=songs w[1..4]=on w[1..4]=Spotify +O w[-2]=play w[-1]=Experimental w[0]=songs w[1]=on w[2]=Spotify wl[-2]=play wl[-1]=experimental wl[0]=songs wl[1]=on wl[2]=spotify pos[-2]=VB pos[-1]=JJ pos[0]=NNS pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLLLLLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=E p1[0]=s p1[1]=o p1[2]=S p2[-2]=pl p2[-1]=Ex p2[0]=so p2[1]=on p2[2]=Sp p3[-2]=pla p3[-1]=Exp p3[0]=son p3[1]= p3[2]=Spo p4[-2]=play p4[-1]=Expe p4[0]=song p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=l s1[0]=s s1[1]=n s1[2]=y s2[-2]=ay s2[-1]=al s2[0]=gs s2[1]=on s2[2]=fy s3[-2]=lay s3[-1]=tal s3[0]=ngs s3[1]= s3[2]=ify s4[-2]=play s4[-1]=ntal s4[0]=ongs s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Experimental w[-1]|w[0]=Experimental|songs w[0]|w[1]=songs|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=VB|JJ pos[-1]|pos[0]=JJ|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Experimental w[1..4]=on w[1..4]=Spotify +O w[-2]=Experimental w[-1]=songs w[0]=on w[1]=Spotify wl[-2]=experimental wl[-1]=songs wl[0]=on wl[1]=spotify pos[-2]=JJ pos[-1]=NNS pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLLLLLLLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=E p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Ex p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=Exp p3[-1]=son p3[0]= p3[1]=Spo p4[-2]=Expe p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=l s1[-1]=s s1[0]=n s1[1]=y s2[-2]=al s2[-1]=gs s2[0]=on s2[1]=fy s3[-2]=tal s3[-1]=ngs s3[0]= s3[1]=ify s4[-2]=ntal s4[-1]=ongs s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Experimental|songs w[-1]|w[0]=songs|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=JJ|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Experimental w[-4..-1]=songs w[1..4]=Spotify +service w[-2]=songs w[-1]=on w[0]=Spotify wl[-2]=songs wl[-1]=on wl[0]=spotify pos[-2]=NNS pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=s s1[-1]=n s1[0]=y s2[-2]=gs s2[-1]=on s2[0]=fy s3[-2]=ngs s3[-1]= s3[0]=ify s4[-2]=ongs s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=songs|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Experimental w[-4..-1]=songs w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=song w[2]=Poker wl[0]=play wl[1]=song wl[2]=poker pos[0]=VBP pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=P p2[0]=pl p2[1]=so p2[2]=Po p3[0]=pla p3[1]=son p3[2]=Pok p4[0]=play p4[1]=song p4[2]=Poke s1[0]=y s1[1]=g s1[2]=r s2[0]=ay s2[1]=ng s2[2]=er s3[0]=lay s3[1]=ong s3[2]=ker s4[0]=play s4[1]=song s4[2]=oker 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|Poker pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=Poker w[1..4]=Face w[1..4]=by __BOS__ +O w[-1]=play w[0]=song w[1]=Poker w[2]=Face wl[-1]=play wl[0]=song wl[1]=poker wl[2]=face pos[-1]=VBP pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=P p1[2]=F p2[-1]=pl p2[0]=so p2[1]=Po p2[2]=Fa p3[-1]=pla p3[0]=son p3[1]=Pok p3[2]=Fac p4[-1]=play p4[0]=song p4[1]=Poke p4[2]=Face s1[-1]=y s1[0]=g s1[1]=r s1[2]=e s2[-1]=ay s2[0]=ng s2[1]=er s2[2]=ce s3[-1]=lay s3[0]=ong s3[1]=ker s3[2]=ace s4[-1]=play s4[0]=song s4[1]=oker s4[2]=Face 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|Poker w[1]|w[2]=Poker|Face pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Poker w[1..4]=Face w[1..4]=by w[1..4]=Lady +song w[-2]=play w[-1]=song w[0]=Poker w[1]=Face w[2]=by wl[-2]=play wl[-1]=song wl[0]=poker wl[1]=face wl[2]=by pos[-2]=VBP pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=s p1[0]=P p1[1]=F p1[2]=b p2[-2]=pl p2[-1]=so p2[0]=Po p2[1]=Fa p2[2]=by p3[-2]=pla p3[-1]=son p3[0]=Pok p3[1]=Fac p3[2]= p4[-2]=play p4[-1]=song p4[0]=Poke p4[1]=Face p4[2]= s1[-2]=y s1[-1]=g s1[0]=r s1[1]=e s1[2]=y s2[-2]=ay s2[-1]=ng s2[0]=er s2[1]=ce s2[2]=by s3[-2]=lay s3[-1]=ong s3[0]=ker s3[1]=ace s3[2]= s4[-2]=play s4[-1]=song s4[0]=oker s4[1]=Face s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Poker w[0]|w[1]=Poker|Face w[1]|w[2]=Face|by pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=song w[1..4]=Face w[1..4]=by w[1..4]=Lady w[1..4]=Gaga +song w[-2]=song w[-1]=Poker w[0]=Face w[1]=by w[2]=Lady wl[-2]=song wl[-1]=poker wl[0]=face wl[1]=by wl[2]=lady pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULLL shape[1]=LL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=P p1[0]=F p1[1]=b p1[2]=L p2[-2]=so p2[-1]=Po p2[0]=Fa p2[1]=by p2[2]=La p3[-2]=son p3[-1]=Pok p3[0]=Fac p3[1]= p3[2]=Lad p4[-2]=song p4[-1]=Poke p4[0]=Face p4[1]= p4[2]=Lady s1[-2]=g s1[-1]=r s1[0]=e s1[1]=y s1[2]=y s2[-2]=ng s2[-1]=er s2[0]=ce s2[1]=by s2[2]=dy s3[-2]=ong s3[-1]=ker s3[0]=ace s3[1]= s3[2]=ady s4[-2]=song s4[-1]=oker s4[0]=Face s4[1]= s4[2]=Lady 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Poker w[-1]|w[0]=Poker|Face w[0]|w[1]=Face|by w[1]|w[2]=by|Lady pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Poker w[1..4]=by w[1..4]=Lady w[1..4]=Gaga +O w[-2]=Poker w[-1]=Face w[0]=by w[1]=Lady w[2]=Gaga wl[-2]=poker wl[-1]=face wl[0]=by wl[1]=lady wl[2]=gaga pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULLL shape[2]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=P p1[-1]=F p1[0]=b p1[1]=L p1[2]=G p2[-2]=Po p2[-1]=Fa p2[0]=by p2[1]=La p2[2]=Ga p3[-2]=Pok p3[-1]=Fac p3[0]= p3[1]=Lad p3[2]=Gag p4[-2]=Poke p4[-1]=Face p4[0]= p4[1]=Lady p4[2]=Gaga s1[-2]=r s1[-1]=e s1[0]=y s1[1]=y s1[2]=a s2[-2]=er s2[-1]=ce s2[0]=by s2[1]=dy s2[2]=ga s3[-2]=ker s3[-1]=ace s3[0]= s3[1]=ady s3[2]=aga s4[-2]=oker s4[-1]=Face s4[0]= s4[1]=Lady s4[2]=Gaga 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Poker|Face w[-1]|w[0]=Face|by w[0]|w[1]=by|Lady w[1]|w[2]=Lady|Gaga pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Poker w[-4..-1]=Face w[1..4]=Lady w[1..4]=Gaga +artist w[-2]=Face w[-1]=by w[0]=Lady w[1]=Gaga wl[-2]=face wl[-1]=by wl[0]=lady wl[1]=gaga pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=F p1[-1]=b p1[0]=L p1[1]=G p2[-2]=Fa p2[-1]=by p2[0]=La p2[1]=Ga p3[-2]=Fac p3[-1]= p3[0]=Lad p3[1]=Gag p4[-2]=Face p4[-1]= p4[0]=Lady p4[1]=Gaga s1[-2]=e s1[-1]=y s1[0]=y s1[1]=a s2[-2]=ce s2[-1]=by s2[0]=dy s2[1]=ga s3[-2]=ace s3[-1]= s3[0]=ady s3[1]=aga s4[-2]=Face s4[-1]= s4[0]=Lady s4[1]=Gaga 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Face|by w[-1]|w[0]=by|Lady w[0]|w[1]=Lady|Gaga pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=song w[-4..-1]=Poker w[-4..-1]=Face w[-4..-1]=by w[1..4]=Gaga +artist w[-2]=by w[-1]=Lady w[0]=Gaga wl[-2]=by wl[-1]=lady wl[0]=gaga pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLL shape[0]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=L p1[0]=G p2[-2]=by p2[-1]=La p2[0]=Ga p3[-2]= p3[-1]=Lad p3[0]=Gag p4[-2]= p4[-1]=Lady p4[0]=Gaga s1[-2]=y s1[-1]=y s1[0]=a s2[-2]=by s2[-1]=dy s2[0]=ga s3[-2]= s3[-1]=ady s3[0]=aga s4[-2]= s4[-1]=Lady s4[0]=Gaga 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Lady w[-1]|w[0]=Lady|Gaga pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Poker w[-4..-1]=Face w[-4..-1]=by w[-4..-1]=Lady __EOS__ + +O w[0]=I'd w[1]=like w[2]=to wl[0]=i'd wl[1]=like wl[2]=to pos[0]=PRP pos[1]=MD pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=U'L shape[1]=LLLL shape[2]=LL shaped[0]=U'L shaped[1]=L shaped[2]=L type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=l p1[2]=t p2[0]=I' p2[1]=li p2[2]=to p3[0]=I'd p3[1]=lik p3[2]= p4[0]= p4[1]=like p4[2]= s1[0]=d s1[1]=e s1[2]=o s2[0]='d s2[1]=ke s2[2]=to s3[0]=I'd s3[1]=ike s3[2]= s4[0]= s4[1]=like s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=I'd|like w[1]|w[2]=like|to pos[0]|pos[1]=PRP|MD pos[1]|pos[2]=MD|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=like w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I'd w[0]=like w[1]=to w[2]=listen wl[-1]=i'd wl[0]=like wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=MD pos[1]=VB pos[2]=TO chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U'L shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U'L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=l p1[1]=t p1[2]=l p2[-1]=I' p2[0]=li p2[1]=to p2[2]=li p3[-1]=I'd p3[0]=lik p3[1]= p3[2]=lis p4[-1]= p4[0]=like p4[1]= p4[2]=list s1[-1]=d s1[0]=e s1[1]=o s1[2]=n s2[-1]='d s2[0]=ke s2[1]=to s2[2]=en s3[-1]=I'd s3[0]=ike s3[1]= s3[2]=ten s4[-1]= s4[0]=like s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I'd|like w[0]|w[1]=like|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|MD pos[0]|pos[1]=MD|VB pos[1]|pos[2]=VB|TO chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U'L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=music +O w[-2]=I'd w[-1]=like w[0]=to w[1]=listen w[2]=to wl[-2]=i'd wl[-1]=like wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=MD pos[0]=VB pos[1]=TO pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U'L shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U'L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=l p1[0]=t p1[1]=l p1[2]=t p2[-2]=I' p2[-1]=li p2[0]=to p2[1]=li p2[2]=to p3[-2]=I'd p3[-1]=lik p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=like p4[0]= p4[1]=list p4[2]= s1[-2]=d s1[-1]=e s1[0]=o s1[1]=n s1[2]=o s2[-2]='d s2[-1]=ke s2[0]=to s2[1]=en s2[2]=to s3[-2]=I'd s3[-1]=ike s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=like s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I'd|like w[-1]|w[0]=like|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|MD pos[-1]|pos[0]=MD|VB pos[0]|pos[1]=VB|TO pos[1]|pos[2]=TO|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U'L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[1..4]=listen w[1..4]=to w[1..4]=music +O w[-2]=like w[-1]=to w[0]=listen w[1]=to w[2]=music wl[-2]=like wl[-1]=to wl[0]=listen wl[1]=to wl[2]=music pos[-2]=MD pos[-1]=VB pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=l p1[1]=t p1[2]=m p2[-2]=li p2[-1]=to p2[0]=li p2[1]=to p2[2]=mu p3[-2]=lik p3[-1]= p3[0]=lis p3[1]= p3[2]=mus p4[-2]=like p4[-1]= p4[0]=list p4[1]= p4[2]=musi s1[-2]=e s1[-1]=o s1[0]=n s1[1]=o s1[2]=c s2[-2]=ke s2[-1]=to s2[0]=en s2[1]=to s2[2]=ic s3[-2]=ike s3[-1]= s3[0]=ten s3[1]= s3[2]=sic s4[-2]=like s4[-1]= s4[0]=sten s4[1]= s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=like|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|music pos[-2]|pos[-1]=MD|VB pos[-1]|pos[0]=VB|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[-4..-1]=to w[1..4]=to w[1..4]=music +O w[-2]=to w[-1]=listen w[0]=to w[1]=music wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=music pos[-2]=VB pos[-1]=TO pos[0]=VB pos[1]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=m p2[-2]=to p2[-1]=li p2[0]=to p2[1]=mu p3[-2]= p3[-1]=lis p3[0]= p3[1]=mus p4[-2]= p4[-1]=list p4[0]= p4[1]=musi s1[-2]=o s1[-1]=n s1[0]=o s1[1]=c s2[-2]=to s2[-1]=en s2[0]=to s2[1]=ic s3[-2]= s3[-1]=ten s3[0]= s3[1]=sic s4[-2]= s4[-1]=sten s4[0]= s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|music pos[-2]|pos[-1]=VB|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[-4..-1]=to w[-4..-1]=listen w[1..4]=music +O w[-2]=listen w[-1]=to w[0]=music wl[-2]=listen wl[-1]=to wl[0]=music pos[-2]=TO pos[-1]=VB pos[0]=IN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=l p1[-1]=t p1[0]=m p2[-2]=li p2[-1]=to p2[0]=mu p3[-2]=lis p3[-1]= p3[0]=mus p4[-2]=list p4[-1]= p4[0]=musi s1[-2]=n s1[-1]=o s1[0]=c s2[-2]=en s2[-1]=to s2[0]=ic s3[-2]=ten s3[-1]= s3[0]=sic s4[-2]=sten s4[-1]= s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|music pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=like w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to __EOS__ + +O w[0]=turn w[1]=on w[2]=the wl[0]=turn wl[1]=on wl[2]=the pos[0]=VB pos[1]=RP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=o p1[2]=t p2[0]=tu p2[1]=on p2[2]=th p3[0]=tur p3[1]= p3[2]=the p4[0]=turn p4[1]= p4[2]= s1[0]=n s1[1]=n s1[2]=e s2[0]=rn s2[1]=on s2[2]=he s3[0]=urn s3[1]= s3[2]=the s4[0]=turn s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=turn|on w[1]|w[2]=on|the pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=the w[1..4]=music __BOS__ +O w[-1]=turn w[0]=on w[1]=the w[2]=music wl[-1]=turn wl[0]=on wl[1]=the wl[2]=music pos[-1]=VB pos[0]=RP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=t p1[0]=o p1[1]=t p1[2]=m p2[-1]=tu p2[0]=on p2[1]=th p2[2]=mu p3[-1]=tur p3[0]= p3[1]=the p3[2]=mus p4[-1]=turn p4[0]= p4[1]= p4[2]=musi s1[-1]=n s1[0]=n s1[1]=e s1[2]=c s2[-1]=rn s2[0]=on s2[1]=he s2[2]=ic s3[-1]=urn s3[0]= s3[1]=the s3[2]=sic s4[-1]=turn s4[0]= s4[1]= s4[2]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=turn|on w[0]|w[1]=on|the w[1]|w[2]=the|music pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[1..4]=the w[1..4]=music +O w[-2]=turn w[-1]=on w[0]=the w[1]=music wl[-2]=turn wl[-1]=on wl[0]=the wl[1]=music pos[-2]=VB pos[-1]=RP pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=o p1[0]=t p1[1]=m p2[-2]=tu p2[-1]=on p2[0]=th p2[1]=mu p3[-2]=tur p3[-1]= p3[0]=the p3[1]=mus p4[-2]=turn p4[-1]= p4[0]= p4[1]=musi s1[-2]=n s1[-1]=n s1[0]=e s1[1]=c s2[-2]=rn s2[-1]=on s2[0]=he s2[1]=ic s3[-2]=urn s3[-1]= s3[0]=the s3[1]=sic s4[-2]=turn s4[-1]= s4[0]= s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=turn|on w[-1]|w[0]=on|the w[0]|w[1]=the|music pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[1..4]=music +O w[-2]=on w[-1]=the w[0]=music wl[-2]=on wl[-1]=the wl[0]=music pos[-2]=RP pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=t p1[0]=m p2[-2]=on p2[-1]=th p2[0]=mu p3[-2]= p3[-1]=the p3[0]=mus p4[-2]= p4[-1]= p4[0]=musi s1[-2]=n s1[-1]=e s1[0]=c s2[-2]=on s2[-1]=he s2[0]=ic s3[-2]= s3[-1]=the s3[0]=sic s4[-2]= s4[-1]= s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=on|the w[-1]|w[0]=the|music pos[-2]|pos[-1]=RP|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=the __EOS__ + +O w[0]=play w[1]=Anaconda w[2]=by wl[0]=play wl[1]=anaconda wl[2]=by pos[0]=VB pos[1]=NNP pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=A p1[2]=b p2[0]=pl p2[1]=An p2[2]=by p3[0]=pla p3[1]=Ana p3[2]= p4[0]=play p4[1]=Anac p4[2]= s1[0]=y s1[1]=a s1[2]=y s2[0]=ay s2[1]=da s2[2]=by s3[0]=lay s3[1]=nda s3[2]= s4[0]=play s4[1]=onda s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Anaconda w[1]|w[2]=Anaconda|by pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Anaconda w[1..4]=by w[1..4]=Nicki w[1..4]=Minaj __BOS__ +song w[-1]=play w[0]=Anaconda w[1]=by w[2]=Nicki wl[-1]=play wl[0]=anaconda wl[1]=by wl[2]=nicki pos[-1]=VB pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=LL shape[2]=ULLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=A p1[1]=b p1[2]=N p2[-1]=pl p2[0]=An p2[1]=by p2[2]=Ni p3[-1]=pla p3[0]=Ana p3[1]= p3[2]=Nic p4[-1]=play p4[0]=Anac p4[1]= p4[2]=Nick s1[-1]=y s1[0]=a s1[1]=y s1[2]=i s2[-1]=ay s2[0]=da s2[1]=by s2[2]=ki s3[-1]=lay s3[0]=nda s3[1]= s3[2]=cki s4[-1]=play s4[0]=onda s4[1]= s4[2]=icki 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Anaconda w[0]|w[1]=Anaconda|by w[1]|w[2]=by|Nicki pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Nicki w[1..4]=Minaj +O w[-2]=play w[-1]=Anaconda w[0]=by w[1]=Nicki w[2]=Minaj wl[-2]=play wl[-1]=anaconda wl[0]=by wl[1]=nicki wl[2]=minaj pos[-2]=VB pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=A p1[0]=b p1[1]=N p1[2]=M p2[-2]=pl p2[-1]=An p2[0]=by p2[1]=Ni p2[2]=Mi p3[-2]=pla p3[-1]=Ana p3[0]= p3[1]=Nic p3[2]=Min p4[-2]=play p4[-1]=Anac p4[0]= p4[1]=Nick p4[2]=Mina s1[-2]=y s1[-1]=a s1[0]=y s1[1]=i s1[2]=j s2[-2]=ay s2[-1]=da s2[0]=by s2[1]=ki s2[2]=aj s3[-2]=lay s3[-1]=nda s3[0]= s3[1]=cki s3[2]=naj s4[-2]=play s4[-1]=onda s4[0]= s4[1]=icki s4[2]=inaj 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Anaconda w[-1]|w[0]=Anaconda|by w[0]|w[1]=by|Nicki w[1]|w[2]=Nicki|Minaj pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Anaconda w[1..4]=Nicki w[1..4]=Minaj +artist w[-2]=Anaconda w[-1]=by w[0]=Nicki w[1]=Minaj wl[-2]=anaconda wl[-1]=by wl[0]=nicki wl[1]=minaj pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=A p1[-1]=b p1[0]=N p1[1]=M p2[-2]=An p2[-1]=by p2[0]=Ni p2[1]=Mi p3[-2]=Ana p3[-1]= p3[0]=Nic p3[1]=Min p4[-2]=Anac p4[-1]= p4[0]=Nick p4[1]=Mina s1[-2]=a s1[-1]=y s1[0]=i s1[1]=j s2[-2]=da s2[-1]=by s2[0]=ki s2[1]=aj s3[-2]=nda s3[-1]= s3[0]=cki s3[1]=naj s4[-2]=onda s4[-1]= s4[0]=icki s4[1]=inaj 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Anaconda|by w[-1]|w[0]=by|Nicki w[0]|w[1]=Nicki|Minaj pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Anaconda w[-4..-1]=by w[1..4]=Minaj +artist w[-2]=by w[-1]=Nicki w[0]=Minaj wl[-2]=by wl[-1]=nicki wl[0]=minaj pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=N p1[0]=M p2[-2]=by p2[-1]=Ni p2[0]=Mi p3[-2]= p3[-1]=Nic p3[0]=Min p4[-2]= p4[-1]=Nick p4[0]=Mina s1[-2]=y s1[-1]=i s1[0]=j s2[-2]=by s2[-1]=ki s2[0]=aj s3[-2]= s3[-1]=cki s3[0]=naj s4[-2]= s4[-1]=icki s4[0]=inaj 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Nicki w[-1]|w[0]=Nicki|Minaj pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Anaconda w[-4..-1]=by w[-4..-1]=Nicki __EOS__ + +O w[0]=play w[1]=Apparently w[2]=by wl[0]=play wl[1]=apparently wl[2]=by pos[0]=VB pos[1]=RB pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=A p1[2]=b p2[0]=pl p2[1]=Ap p2[2]=by p3[0]=pla p3[1]=App p3[2]= p4[0]=play p4[1]=Appa p4[2]= s1[0]=y s1[1]=y s1[2]=y s2[0]=ay s2[1]=ly s2[2]=by s3[0]=lay s3[1]=tly s3[2]= s4[0]=play s4[1]=ntly s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Apparently w[1]|w[2]=Apparently|by pos[0]|pos[1]=VB|RB pos[1]|pos[2]=RB|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Apparently w[1..4]=by w[1..4]=J w[1..4]=Cole __BOS__ +song w[-1]=play w[0]=Apparently w[1]=by w[2]=J wl[-1]=play wl[0]=apparently wl[1]=by wl[2]=j pos[-1]=VB pos[0]=RB pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLLLLL shape[1]=LL shape[2]=U shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=U type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllUpper p1[-1]=p p1[0]=A p1[1]=b p1[2]=J p2[-1]=pl p2[0]=Ap p2[1]=by p2[2]= p3[-1]=pla p3[0]=App p3[1]= p3[2]= p4[-1]=play p4[0]=Appa p4[1]= p4[2]= s1[-1]=y s1[0]=y s1[1]=y s1[2]=J s2[-1]=ay s2[0]=ly s2[1]=by s2[2]= s3[-1]=lay s3[0]=tly s3[1]= s3[2]= s4[-1]=play s4[0]=ntly s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Apparently w[0]|w[1]=Apparently|by w[1]|w[2]=by|J pos[-1]|pos[0]=VB|RB pos[0]|pos[1]=RB|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|U type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllUpper w[-4..-1]=play w[1..4]=by w[1..4]=J w[1..4]=Cole +O w[-2]=play w[-1]=Apparently w[0]=by w[1]=J w[2]=Cole wl[-2]=play wl[-1]=apparently wl[0]=by wl[1]=j wl[2]=cole pos[-2]=VB pos[-1]=RB pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLLLLL shape[0]=LL shape[1]=U shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=U shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllUpper type[2]=InitUpper p1[-2]=p p1[-1]=A p1[0]=b p1[1]=J p1[2]=C p2[-2]=pl p2[-1]=Ap p2[0]=by p2[1]= p2[2]=Co p3[-2]=pla p3[-1]=App p3[0]= p3[1]= p3[2]=Col p4[-2]=play p4[-1]=Appa p4[0]= p4[1]= p4[2]=Cole s1[-2]=y s1[-1]=y s1[0]=y s1[1]=J s1[2]=e s2[-2]=ay s2[-1]=ly s2[0]=by s2[1]= s2[2]=le s3[-2]=lay s3[-1]=tly s3[0]= s3[1]= s3[2]=ole s4[-2]=play s4[-1]=ntly s4[0]= s4[1]= s4[2]=Cole 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=yes au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Apparently w[-1]|w[0]=Apparently|by w[0]|w[1]=by|J w[1]|w[2]=J|Cole pos[-2]|pos[-1]=VB|RB pos[-1]|pos[0]=RB|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=Apparently w[1..4]=J w[1..4]=Cole +artist w[-2]=Apparently w[-1]=by w[0]=J w[1]=Cole wl[-2]=apparently wl[-1]=by wl[0]=j wl[1]=cole pos[-2]=RB pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLLLLL shape[-1]=LL shape[0]=U shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=U shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllUpper type[1]=InitUpper p1[-2]=A p1[-1]=b p1[0]=J p1[1]=C p2[-2]=Ap p2[-1]=by p2[0]= p2[1]=Co p3[-2]=App p3[-1]= p3[0]= p3[1]=Col p4[-2]=Appa p4[-1]= p4[0]= p4[1]=Cole s1[-2]=y s1[-1]=y s1[0]=J s1[1]=e s2[-2]=ly s2[-1]=by s2[0]= s2[1]=le s3[-2]=tly s3[-1]= s3[0]= s3[1]=ole s4[-2]=ntly s4[-1]= s4[0]= s4[1]=Cole 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=yes au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Apparently|by w[-1]|w[0]=by|J w[0]|w[1]=J|Cole pos[-2]|pos[-1]=RB|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=Apparently w[-4..-1]=by w[1..4]=Cole +artist w[-2]=by w[-1]=J w[0]=Cole wl[-2]=by wl[-1]=j wl[0]=cole pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=U shape[0]=ULLL shaped[-2]=L shaped[-1]=U shaped[0]=UL type[-2]=AllLetter type[-1]=AllUpper type[0]=InitUpper p1[-2]=b p1[-1]=J p1[0]=C p2[-2]=by p2[-1]= p2[0]=Co p3[-2]= p3[-1]= p3[0]=Col p4[-2]= p4[-1]= p4[0]=Cole s1[-2]=y s1[-1]=J s1[0]=e s2[-2]=by s2[-1]= s2[0]=le s3[-2]= s3[-1]= s3[0]=ole s4[-2]= s4[-1]= s4[0]=Cole 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=yes au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=no cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|J w[-1]|w[0]=J|Cole pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|UL type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|InitUpper w[-4..-1]=play w[-4..-1]=Apparently w[-4..-1]=by w[-4..-1]=J __EOS__ + +O w[0]=play w[1]=Thriller w[2]=Michael wl[0]=play wl[1]=thriller wl[2]=michael pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=T p1[2]=M p2[0]=pl p2[1]=Th p2[2]=Mi p3[0]=pla p3[1]=Thr p3[2]=Mic p4[0]=play p4[1]=Thri p4[2]=Mich s1[0]=y s1[1]=r s1[2]=l s2[0]=ay s2[1]=er s2[2]=el s3[0]=lay s3[1]=ler s3[2]=ael s4[0]=play s4[1]=ller s4[2]=hael 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Thriller w[1]|w[2]=Thriller|Michael pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Thriller w[1..4]=Michael w[1..4]=Jackson __BOS__ +song w[-1]=play w[0]=Thriller w[1]=Michael w[2]=Jackson wl[-1]=play wl[0]=thriller wl[1]=michael wl[2]=jackson pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=ULLLLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=T p1[1]=M p1[2]=J p2[-1]=pl p2[0]=Th p2[1]=Mi p2[2]=Ja p3[-1]=pla p3[0]=Thr p3[1]=Mic p3[2]=Jac p4[-1]=play p4[0]=Thri p4[1]=Mich p4[2]=Jack s1[-1]=y s1[0]=r s1[1]=l s1[2]=n s2[-1]=ay s2[0]=er s2[1]=el s2[2]=on s3[-1]=lay s3[0]=ler s3[1]=ael s3[2]=son s4[-1]=play s4[0]=ller s4[1]=hael s4[2]=kson 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Thriller w[0]|w[1]=Thriller|Michael w[1]|w[2]=Michael|Jackson pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Michael w[1..4]=Jackson +artist w[-2]=play w[-1]=Thriller w[0]=Michael w[1]=Jackson wl[-2]=play wl[-1]=thriller wl[0]=michael wl[1]=jackson pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=ULLLLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=p p1[-1]=T p1[0]=M p1[1]=J p2[-2]=pl p2[-1]=Th p2[0]=Mi p2[1]=Ja p3[-2]=pla p3[-1]=Thr p3[0]=Mic p3[1]=Jac p4[-2]=play p4[-1]=Thri p4[0]=Mich p4[1]=Jack s1[-2]=y s1[-1]=r s1[0]=l s1[1]=n s2[-2]=ay s2[-1]=er s2[0]=el s2[1]=on s3[-2]=lay s3[-1]=ler s3[0]=ael s3[1]=son s4[-2]=play s4[-1]=ller s4[0]=hael s4[1]=kson 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Thriller w[-1]|w[0]=Thriller|Michael w[0]|w[1]=Michael|Jackson pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Thriller w[1..4]=Jackson +artist w[-2]=Thriller w[-1]=Michael w[0]=Jackson wl[-2]=thriller wl[-1]=michael wl[0]=jackson pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLLLL shape[-1]=ULLLLLL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=T p1[-1]=M p1[0]=J p2[-2]=Th p2[-1]=Mi p2[0]=Ja p3[-2]=Thr p3[-1]=Mic p3[0]=Jac p4[-2]=Thri p4[-1]=Mich p4[0]=Jack s1[-2]=r s1[-1]=l s1[0]=n s2[-2]=er s2[-1]=el s2[0]=on s3[-2]=ler s3[-1]=ael s3[0]=son s4[-2]=ller s4[-1]=hael s4[0]=kson 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Thriller|Michael w[-1]|w[0]=Michael|Jackson pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Thriller w[-4..-1]=Michael __EOS__ + +O w[0]=play w[1]=Keep w[2]=On wl[0]=play wl[1]=keep wl[2]=on pos[0]=VB pos[1]=VB pos[2]=VB chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLL shape[2]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=K p1[2]=O p2[0]=pl p2[1]=Ke p2[2]=On p3[0]=pla p3[1]=Kee p3[2]= p4[0]=play p4[1]=Keep p4[2]= s1[0]=y s1[1]=p s1[2]=n s2[0]=ay s2[1]=ep s2[2]=On s3[0]=lay s3[1]=eep s3[2]= s4[0]=play s4[1]=Keep s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Keep w[1]|w[2]=Keep|On pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Keep w[1..4]=On w[1..4]=Walking w[1..4]=by __BOS__ +song w[-1]=play w[0]=Keep w[1]=On w[2]=Walking wl[-1]=play wl[0]=keep wl[1]=on wl[2]=walking pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=VB chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLL shape[1]=UL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=K p1[1]=O p1[2]=W p2[-1]=pl p2[0]=Ke p2[1]=On p2[2]=Wa p3[-1]=pla p3[0]=Kee p3[1]= p3[2]=Wal p4[-1]=play p4[0]=Keep p4[1]= p4[2]=Walk s1[-1]=y s1[0]=p s1[1]=n s1[2]=g s2[-1]=ay s2[0]=ep s2[1]=On s2[2]=ng s3[-1]=lay s3[0]=eep s3[1]= s3[2]=ing s4[-1]=play s4[0]=Keep s4[1]= s4[2]=king 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Keep w[0]|w[1]=Keep|On w[1]|w[2]=On|Walking pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=On w[1..4]=Walking w[1..4]=by w[1..4]=CeCe +song w[-2]=play w[-1]=Keep w[0]=On w[1]=Walking w[2]=by wl[-2]=play wl[-1]=keep wl[0]=on wl[1]=walking wl[2]=by pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULLL shape[0]=UL shape[1]=ULLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=K p1[0]=O p1[1]=W p1[2]=b p2[-2]=pl p2[-1]=Ke p2[0]=On p2[1]=Wa p2[2]=by p3[-2]=pla p3[-1]=Kee p3[0]= p3[1]=Wal p3[2]= p4[-2]=play p4[-1]=Keep p4[0]= p4[1]=Walk p4[2]= s1[-2]=y s1[-1]=p s1[0]=n s1[1]=g s1[2]=y s2[-2]=ay s2[-1]=ep s2[0]=On s2[1]=ng s2[2]=by s3[-2]=lay s3[-1]=eep s3[0]= s3[1]=ing s3[2]= s4[-2]=play s4[-1]=Keep s4[0]= s4[1]=king s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Keep w[-1]|w[0]=Keep|On w[0]|w[1]=On|Walking w[1]|w[2]=Walking|by pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Keep w[1..4]=Walking w[1..4]=by w[1..4]=CeCe +song w[-2]=Keep w[-1]=On w[0]=Walking w[1]=by w[2]=CeCe wl[-2]=keep wl[-1]=on wl[0]=walking wl[1]=by wl[2]=cece pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLL shape[-1]=UL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULUL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=ULUL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=K p1[-1]=O p1[0]=W p1[1]=b p1[2]=C p2[-2]=Ke p2[-1]=On p2[0]=Wa p2[1]=by p2[2]=Ce p3[-2]=Kee p3[-1]= p3[0]=Wal p3[1]= p3[2]=CeC p4[-2]=Keep p4[-1]= p4[0]=Walk p4[1]= p4[2]=CeCe s1[-2]=p s1[-1]=n s1[0]=g s1[1]=y s1[2]=e s2[-2]=ep s2[-1]=On s2[0]=ng s2[1]=by s2[2]=Ce s3[-2]=eep s3[-1]= s3[0]=ing s3[1]= s3[2]=eCe s4[-2]=Keep s4[-1]= s4[0]=king s4[1]= s4[2]=CeCe 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Keep|On w[-1]|w[0]=On|Walking w[0]|w[1]=Walking|by w[1]|w[2]=by|CeCe pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|ULUL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Keep w[-4..-1]=On w[1..4]=by w[1..4]=CeCe +O w[-2]=On w[-1]=Walking w[0]=by w[1]=CeCe wl[-2]=on wl[-1]=walking wl[0]=by wl[1]=cece pos[-2]=VB pos[-1]=VB pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=UL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULUL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=ULUL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=O p1[-1]=W p1[0]=b p1[1]=C p2[-2]=On p2[-1]=Wa p2[0]=by p2[1]=Ce p3[-2]= p3[-1]=Wal p3[0]= p3[1]=CeC p4[-2]= p4[-1]=Walk p4[0]= p4[1]=CeCe s1[-2]=n s1[-1]=g s1[0]=y s1[1]=e s2[-2]=On s2[-1]=ng s2[0]=by s2[1]=Ce s3[-2]= s3[-1]=ing s3[0]= s3[1]=eCe s4[-2]= s4[-1]=king s4[0]= s4[1]=CeCe 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=On|Walking w[-1]|w[0]=Walking|by w[0]|w[1]=by|CeCe pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|ULUL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Keep w[-4..-1]=On w[-4..-1]=Walking w[1..4]=CeCe +artist w[-2]=Walking w[-1]=by w[0]=CeCe wl[-2]=walking wl[-1]=by wl[0]=cece pos[-2]=VB pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULUL shaped[-2]=UL shaped[-1]=L shaped[0]=ULUL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=W p1[-1]=b p1[0]=C p2[-2]=Wa p2[-1]=by p2[0]=Ce p3[-2]=Wal p3[-1]= p3[0]=CeC p4[-2]=Walk p4[-1]= p4[0]=CeCe s1[-2]=g s1[-1]=y s1[0]=e s2[-2]=ng s2[-1]=by s2[0]=Ce s3[-2]=ing s3[-1]= s3[0]=eCe s4[-2]=king s4[-1]= s4[0]=CeCe 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Walking|by w[-1]|w[0]=by|CeCe pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|ULUL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Keep w[-4..-1]=On w[-4..-1]=Walking w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=the w[2]=song wl[0]=play wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=the p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=he s2[2]=ng s3[0]=lay s3[1]=the s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song w[1..4]=Nothing w[1..4]=Gonna __BOS__ +O w[-1]=play w[0]=the w[1]=song w[2]=Nothing wl[-1]=play wl[0]=the wl[1]=song wl[2]=nothing pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=s p1[2]=N p2[-1]=pl p2[0]=th p2[1]=so p2[2]=No p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Not p4[-1]=play p4[0]= p4[1]=song p4[2]=Noth s1[-1]=y s1[0]=e s1[1]=g s1[2]=g s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=ng s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ing s4[-1]=play s4[0]= s4[1]=song s4[2]=hing 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Nothing pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Nothing w[1..4]=Gonna w[1..4]=Stop +O w[-2]=play w[-1]=the w[0]=song w[1]=Nothing w[2]=Gonna wl[-2]=play wl[-1]=the wl[0]=song wl[1]=nothing wl[2]=gonna pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=t p1[0]=s p1[1]=N p1[2]=G p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=No p2[2]=Go p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Not p3[2]=Gon p4[-2]=play p4[-1]= p4[0]=song p4[1]=Noth p4[2]=Gonn s1[-2]=y s1[-1]=e s1[0]=g s1[1]=g s1[2]=a s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=ng s2[2]=na s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ing s3[2]=nna s4[-2]=play s4[-1]= s4[0]=song s4[1]=hing s4[2]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Nothing w[1]|w[2]=Nothing|Gonna pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[1..4]=Nothing w[1..4]=Gonna w[1..4]=Stop w[1..4]=Us +song w[-2]=the w[-1]=song w[0]=Nothing w[1]=Gonna w[2]=Stop wl[-2]=the wl[-1]=song wl[0]=nothing wl[1]=gonna wl[2]=stop pos[-2]=DT pos[-1]=JJ pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=t p1[-1]=s p1[0]=N p1[1]=G p1[2]=S p2[-2]=th p2[-1]=so p2[0]=No p2[1]=Go p2[2]=St p3[-2]=the p3[-1]=son p3[0]=Not p3[1]=Gon p3[2]=Sto p4[-2]= p4[-1]=song p4[0]=Noth p4[1]=Gonn p4[2]=Stop s1[-2]=e s1[-1]=g s1[0]=g s1[1]=a s1[2]=p s2[-2]=he s2[-1]=ng s2[0]=ng s2[1]=na s2[2]=op s3[-2]=the s3[-1]=ong s3[0]=ing s3[1]=nna s3[2]=top s4[-2]= s4[-1]=song s4[0]=hing s4[1]=onna s4[2]=Stop 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Nothing w[0]|w[1]=Nothing|Gonna w[1]|w[2]=Gonna|Stop pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[1..4]=Gonna w[1..4]=Stop w[1..4]=Us w[1..4]=Now +song w[-2]=song w[-1]=Nothing w[0]=Gonna w[1]=Stop w[2]=Us wl[-2]=song wl[-1]=nothing wl[0]=gonna wl[1]=stop wl[2]=us pos[-2]=JJ pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLL shape[1]=ULLL shape[2]=UL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=s p1[-1]=N p1[0]=G p1[1]=S p1[2]=U p2[-2]=so p2[-1]=No p2[0]=Go p2[1]=St p2[2]=Us p3[-2]=son p3[-1]=Not p3[0]=Gon p3[1]=Sto p3[2]= p4[-2]=song p4[-1]=Noth p4[0]=Gonn p4[1]=Stop p4[2]= s1[-2]=g s1[-1]=g s1[0]=a s1[1]=p s1[2]=s s2[-2]=ng s2[-1]=ng s2[0]=na s2[1]=op s2[2]=Us s3[-2]=ong s3[-1]=ing s3[0]=nna s3[1]=top s3[2]= s4[-2]=song s4[-1]=hing s4[0]=onna s4[1]=Stop s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Nothing w[-1]|w[0]=Nothing|Gonna w[0]|w[1]=Gonna|Stop w[1]|w[2]=Stop|Us pos[-2]|pos[-1]=JJ|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Nothing w[1..4]=Stop w[1..4]=Us w[1..4]=Now +song w[-2]=Nothing w[-1]=Gonna w[0]=Stop w[1]=Us w[2]=Now wl[-2]=nothing wl[-1]=gonna wl[0]=stop wl[1]=us wl[2]=now pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLLLL shape[-1]=ULLLL shape[0]=ULLL shape[1]=UL shape[2]=ULL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=N p1[-1]=G p1[0]=S p1[1]=U p1[2]=N p2[-2]=No p2[-1]=Go p2[0]=St p2[1]=Us p2[2]=No p3[-2]=Not p3[-1]=Gon p3[0]=Sto p3[1]= p3[2]=Now p4[-2]=Noth p4[-1]=Gonn p4[0]=Stop p4[1]= p4[2]= s1[-2]=g s1[-1]=a s1[0]=p s1[1]=s s1[2]=w s2[-2]=ng s2[-1]=na s2[0]=op s2[1]=Us s2[2]=ow s3[-2]=ing s3[-1]=nna s3[0]=top s3[1]= s3[2]=Now s4[-2]=hing s4[-1]=onna s4[0]=Stop s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Nothing|Gonna w[-1]|w[0]=Gonna|Stop w[0]|w[1]=Stop|Us w[1]|w[2]=Us|Now pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Nothing w[-4..-1]=Gonna w[1..4]=Us w[1..4]=Now +song w[-2]=Gonna w[-1]=Stop w[0]=Us w[1]=Now wl[-2]=gonna wl[-1]=stop wl[0]=us wl[1]=now pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLLL shape[-1]=ULLL shape[0]=UL shape[1]=ULL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=G p1[-1]=S p1[0]=U p1[1]=N p2[-2]=Go p2[-1]=St p2[0]=Us p2[1]=No p3[-2]=Gon p3[-1]=Sto p3[0]= p3[1]=Now p4[-2]=Gonn p4[-1]=Stop p4[0]= p4[1]= s1[-2]=a s1[-1]=p s1[0]=s s1[1]=w s2[-2]=na s2[-1]=op s2[0]=Us s2[1]=ow s3[-2]=nna s3[-1]=top s3[0]= s3[1]=Now s4[-2]=onna s4[-1]=Stop s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Gonna|Stop w[-1]|w[0]=Stop|Us w[0]|w[1]=Us|Now pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=song w[-4..-1]=Nothing w[-4..-1]=Gonna w[-4..-1]=Stop w[1..4]=Now +song w[-2]=Stop w[-1]=Us w[0]=Now wl[-2]=stop wl[-1]=us wl[0]=now pos[-2]=NN pos[-1]=NN pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=UL shape[0]=ULL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=S p1[-1]=U p1[0]=N p2[-2]=St p2[-1]=Us p2[0]=No p3[-2]=Sto p3[-1]= p3[0]=Now p4[-2]=Stop p4[-1]= p4[0]= s1[-2]=p s1[-1]=s s1[0]=w s2[-2]=op s2[-1]=Us s2[0]=ow s3[-2]=top s3[-1]= s3[0]=Now s4[-2]=Stop s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Stop|Us w[-1]|w[0]=Us|Now pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Nothing w[-4..-1]=Gonna w[-4..-1]=Stop w[-4..-1]=Us __EOS__ + +O w[0]=play w[1]=Beyonce wl[0]=play wl[1]=beyonce pos[0]=VB pos[1]=NNP chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=ULLLLLL shaped[0]=L shaped[1]=UL type[0]=AllLetter type[1]=InitUpper p1[0]=p p1[1]=B p2[0]=pl p2[1]=Be p3[0]=pla p3[1]=Bey p4[0]=play p4[1]=Beyo s1[0]=y s1[1]=e s2[0]=ay s2[1]=ce s3[0]=lay s3[1]=nce s4[0]=play s4[1]=once 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|Beyonce pos[0]|pos[1]=VB|NNP chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|UL type[0]|type[1]=AllLetter|InitUpper w[1..4]=Beyonce __BOS__ +artist w[-1]=play w[0]=Beyonce wl[-1]=play wl[0]=beyonce pos[-1]=VB pos[0]=NNP chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=ULLLLLL shaped[-1]=L shaped[0]=UL type[-1]=AllLetter type[0]=InitUpper p1[-1]=p p1[0]=B p2[-1]=pl p2[0]=Be p3[-1]=pla p3[0]=Bey p4[-1]=play p4[0]=Beyo s1[-1]=y s1[0]=e s2[-1]=ay s2[0]=ce s3[-1]=lay s3[0]=nce s4[-1]=play s4[0]=once 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|Beyonce pos[-1]|pos[0]=VB|NNP chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|UL type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=How w[1..4]=You __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=How wl[-1]=can wl[0]=you wl[1]=play wl[2]=how pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=WRB chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=ULL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=c p1[0]=y p1[1]=p p1[2]=H p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=Ho p3[-1]=can p3[0]=you p3[1]=pla p3[2]=How p4[-1]= p4[0]= p4[1]=play p4[2]= s1[-1]=n s1[0]=u s1[1]=y s1[2]=w s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=ow s3[-1]=can s3[0]=you s3[1]=lay s3[2]=How s4[-1]= s4[0]= s4[1]=play s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|How pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|WRB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[1..4]=play w[1..4]=How w[1..4]=You w[1..4]=Remind +O w[-2]=can w[-1]=you w[0]=play w[1]=How w[2]=You wl[-2]=can wl[-1]=you wl[0]=play wl[1]=how wl[2]=you pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=WRB pos[2]=WRB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=c p1[-1]=y p1[0]=p p1[1]=H p1[2]=Y p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=Ho p2[2]=Yo p3[-2]=can p3[-1]=you p3[0]=pla p3[1]=How p3[2]=You p4[-2]= p4[-1]= p4[0]=play p4[1]= p4[2]= s1[-2]=n s1[-1]=u s1[0]=y s1[1]=w s1[2]=u s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=ow s2[2]=ou s3[-2]=can s3[-1]=you s3[0]=lay s3[1]=How s3[2]=You s4[-2]= s4[-1]= s4[0]=play s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|How w[1]|w[2]=How|You pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|WRB pos[1]|pos[2]=WRB|WRB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[1..4]=How w[1..4]=You w[1..4]=Remind w[1..4]=Me +song w[-2]=you w[-1]=play w[0]=How w[1]=You w[2]=Remind wl[-2]=you wl[-1]=play wl[0]=how wl[1]=you wl[2]=remind pos[-2]=PRP pos[-1]=VB pos[0]=WRB pos[1]=WRB pos[2]=WRB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULL shape[1]=ULL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=y p1[-1]=p p1[0]=H p1[1]=Y p1[2]=R p2[-2]=yo p2[-1]=pl p2[0]=Ho p2[1]=Yo p2[2]=Re p3[-2]=you p3[-1]=pla p3[0]=How p3[1]=You p3[2]=Rem p4[-2]= p4[-1]=play p4[0]= p4[1]= p4[2]=Remi s1[-2]=u s1[-1]=y s1[0]=w s1[1]=u s1[2]=d s2[-2]=ou s2[-1]=ay s2[0]=ow s2[1]=ou s2[2]=nd s3[-2]=you s3[-1]=lay s3[0]=How s3[1]=You s3[2]=ind s4[-2]= s4[-1]=play s4[0]= s4[1]= s4[2]=mind 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|How w[0]|w[1]=How|You w[1]|w[2]=You|Remind pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|WRB pos[0]|pos[1]=WRB|WRB pos[1]|pos[2]=WRB|WRB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[1..4]=You w[1..4]=Remind w[1..4]=Me +song w[-2]=play w[-1]=How w[0]=You w[1]=Remind w[2]=Me wl[-2]=play wl[-1]=how wl[0]=you wl[1]=remind wl[2]=me pos[-2]=VB pos[-1]=WRB pos[0]=WRB pos[1]=WRB pos[2]=WRB chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULL shape[1]=ULLLLL shape[2]=UL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=H p1[0]=Y p1[1]=R p1[2]=M p2[-2]=pl p2[-1]=Ho p2[0]=Yo p2[1]=Re p2[2]=Me p3[-2]=pla p3[-1]=How p3[0]=You p3[1]=Rem p3[2]= p4[-2]=play p4[-1]= p4[0]= p4[1]=Remi p4[2]= s1[-2]=y s1[-1]=w s1[0]=u s1[1]=d s1[2]=e s2[-2]=ay s2[-1]=ow s2[0]=ou s2[1]=nd s2[2]=Me s3[-2]=lay s3[-1]=How s3[0]=You s3[1]=ind s3[2]= s4[-2]=play s4[-1]= s4[0]= s4[1]=mind s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|How w[-1]|w[0]=How|You w[0]|w[1]=You|Remind w[1]|w[2]=Remind|Me pos[-2]|pos[-1]=VB|WRB pos[-1]|pos[0]=WRB|WRB pos[0]|pos[1]=WRB|WRB pos[1]|pos[2]=WRB|WRB chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[-4..-1]=How w[1..4]=Remind w[1..4]=Me +song w[-2]=How w[-1]=You w[0]=Remind w[1]=Me wl[-2]=how wl[-1]=you wl[0]=remind wl[1]=me pos[-2]=WRB pos[-1]=WRB pos[0]=WRB pos[1]=WRB chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=ULL shape[0]=ULLLLL shape[1]=UL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=H p1[-1]=Y p1[0]=R p1[1]=M p2[-2]=Ho p2[-1]=Yo p2[0]=Re p2[1]=Me p3[-2]=How p3[-1]=You p3[0]=Rem p3[1]= p4[-2]= p4[-1]= p4[0]=Remi p4[1]= s1[-2]=w s1[-1]=u s1[0]=d s1[1]=e s2[-2]=ow s2[-1]=ou s2[0]=nd s2[1]=Me s3[-2]=How s3[-1]=You s3[0]=ind s3[1]= s4[-2]= s4[-1]= s4[0]=mind s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=How|You w[-1]|w[0]=You|Remind w[0]|w[1]=Remind|Me pos[-2]|pos[-1]=WRB|WRB pos[-1]|pos[0]=WRB|WRB pos[0]|pos[1]=WRB|WRB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=you w[-4..-1]=play w[-4..-1]=How w[-4..-1]=You w[1..4]=Me +song w[-2]=You w[-1]=Remind w[0]=Me wl[-2]=you wl[-1]=remind wl[0]=me pos[-2]=WRB pos[-1]=WRB pos[0]=WRB chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=ULLLLL shape[0]=UL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=Y p1[-1]=R p1[0]=M p2[-2]=Yo p2[-1]=Re p2[0]=Me p3[-2]=You p3[-1]=Rem p3[0]= p4[-2]= p4[-1]=Remi p4[0]= s1[-2]=u s1[-1]=d s1[0]=e s2[-2]=ou s2[-1]=nd s2[0]=Me s3[-2]=You s3[-1]=ind s3[0]= s4[-2]= s4[-1]=mind s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=You|Remind w[-1]|w[0]=Remind|Me pos[-2]|pos[-1]=WRB|WRB pos[-1]|pos[0]=WRB|WRB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=How w[-4..-1]=You w[-4..-1]=Remind __EOS__ + +song w[0]=Hollaback w[1]=Girl w[2]=music wl[0]=hollaback wl[1]=girl wl[2]=music pos[0]=NNP pos[1]=NNP pos[2]=NN chk[0]=I chk[1]=I chk[2]=O shape[0]=ULLLLLLLL shape[1]=ULLL shape[2]=LLLLL shaped[0]=UL shaped[1]=UL shaped[2]=L type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[0]=H p1[1]=G p1[2]=m p2[0]=Ho p2[1]=Gi p2[2]=mu p3[0]=Hol p3[1]=Gir p3[2]=mus p4[0]=Holl p4[1]=Girl p4[2]=musi s1[0]=k s1[1]=l s1[2]=c s2[0]=ck s2[1]=rl s2[2]=ic s3[0]=ack s3[1]=irl s3[2]=sic s4[0]=back s4[1]=Girl s4[2]=usic 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=Hollaback|Girl w[1]|w[2]=Girl|music pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Girl w[1..4]=music __BOS__ +song w[-1]=Hollaback w[0]=Girl w[1]=music wl[-1]=hollaback wl[0]=girl wl[1]=music pos[-1]=NNP pos[0]=NNP pos[1]=NN chk[-1]=I chk[0]=I chk[1]=O shape[-1]=ULLLLLLLL shape[0]=ULLL shape[1]=LLLLL shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-1]=H p1[0]=G p1[1]=m p2[-1]=Ho p2[0]=Gi p2[1]=mu p3[-1]=Hol p3[0]=Gir p3[1]=mus p4[-1]=Holl p4[0]=Girl p4[1]=musi s1[-1]=k s1[0]=l s1[1]=c s2[-1]=ck s2[0]=rl s2[1]=ic s3[-1]=ack s3[0]=irl s3[1]=sic s4[-1]=back s4[0]=Girl s4[1]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=no al[0]=no al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=Hollaback|Girl w[0]|w[1]=Girl|music pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=Hollaback w[1..4]=music +O w[-2]=Hollaback w[-1]=Girl w[0]=music wl[-2]=hollaback wl[-1]=girl wl[0]=music pos[-2]=NNP pos[-1]=NNP pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULLLLLLLL shape[-1]=ULLL shape[0]=LLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=H p1[-1]=G p1[0]=m p2[-2]=Ho p2[-1]=Gi p2[0]=mu p3[-2]=Hol p3[-1]=Gir p3[0]=mus p4[-2]=Holl p4[-1]=Girl p4[0]=musi s1[-2]=k s1[-1]=l s1[0]=c s2[-2]=ck s2[-1]=rl s2[0]=ic s3[-2]=ack s3[-1]=irl s3[0]=sic s4[-2]=back s4[-1]=Girl s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Hollaback|Girl w[-1]|w[0]=Girl|music pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=Hollaback w[-4..-1]=Girl __EOS__ + +O w[0]=play w[1]=RnB wl[0]=play wl[1]=rnb pos[0]=VB pos[1]=NN chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=ULU shaped[0]=L shaped[1]=ULU type[0]=AllLetter type[1]=InitUpper p1[0]=p p1[1]=R p2[0]=pl p2[1]=Rn p3[0]=pla p3[1]=RnB p4[0]=play p4[1]= s1[0]=y s1[1]=B s2[0]=ay s2[1]=nB s3[0]=lay s3[1]=RnB s4[0]=play s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|RnB pos[0]|pos[1]=VB|NN chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|ULU type[0]|type[1]=AllLetter|InitUpper w[1..4]=RnB __BOS__ +genre w[-1]=play w[0]=RnB wl[-1]=play wl[0]=rnb pos[-1]=VB pos[0]=NN chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=ULU shaped[-1]=L shaped[0]=ULU type[-1]=AllLetter type[0]=InitUpper p1[-1]=p p1[0]=R p2[-1]=pl p2[0]=Rn p3[-1]=pla p3[0]=RnB p4[-1]=play p4[0]= s1[-1]=y s1[0]=B s2[-1]=ay s2[0]=nB s3[-1]=lay s3[0]=RnB s4[-1]=play s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|RnB pos[-1]|pos[0]=VB|NN chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|ULU type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play __EOS__ + +O w[0]=play w[1]=Meghan w[2]=Trainor wl[0]=play wl[1]=meghan wl[2]=trainor pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=M p1[2]=T p2[0]=pl p2[1]=Me p2[2]=Tr p3[0]=pla p3[1]=Meg p3[2]=Tra p4[0]=play p4[1]=Megh p4[2]=Trai s1[0]=y s1[1]=n s1[2]=r s2[0]=ay s2[1]=an s2[2]=or s3[0]=lay s3[1]=han s3[2]=nor s4[0]=play s4[1]=ghan s4[2]=inor 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Meghan w[1]|w[2]=Meghan|Trainor pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Meghan w[1..4]=Trainor __BOS__ +artist w[-1]=play w[0]=Meghan w[1]=Trainor wl[-1]=play wl[0]=meghan wl[1]=trainor pos[-1]=VB pos[0]=NNP pos[1]=NNP chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULLLLL shape[1]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=M p1[1]=T p2[-1]=pl p2[0]=Me p2[1]=Tr p3[-1]=pla p3[0]=Meg p3[1]=Tra p4[-1]=play p4[0]=Megh p4[1]=Trai s1[-1]=y s1[0]=n s1[1]=r s2[-1]=ay s2[0]=an s2[1]=or s3[-1]=lay s3[0]=han s3[1]=nor s4[-1]=play s4[0]=ghan s4[1]=inor 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|Meghan w[0]|w[1]=Meghan|Trainor pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Trainor +artist w[-2]=play w[-1]=Meghan w[0]=Trainor wl[-2]=play wl[-1]=meghan wl[0]=trainor pos[-2]=VB pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=M p1[0]=T p2[-2]=pl p2[-1]=Me p2[0]=Tr p3[-2]=pla p3[-1]=Meg p3[0]=Tra p4[-2]=play p4[-1]=Megh p4[0]=Trai s1[-2]=y s1[-1]=n s1[0]=r s2[-2]=ay s2[-1]=an s2[0]=or s3[-2]=lay s3[-1]=han s3[0]=nor s4[-2]=play s4[-1]=ghan s4[0]=inor 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|Meghan w[-1]|w[0]=Meghan|Trainor pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Meghan __EOS__ + +O w[0]=play w[1]=album w[2]=Master wl[0]=play wl[1]=album wl[2]=master pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=M p2[0]=pl p2[1]=al p2[2]=Ma p3[0]=pla p3[1]=alb p3[2]=Mas p4[0]=play p4[1]=albu p4[2]=Mast s1[0]=y s1[1]=m s1[2]=r s2[0]=ay s2[1]=um s2[2]=er s3[0]=lay s3[1]=bum s3[2]=ter s4[0]=play s4[1]=lbum s4[2]=ster 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Master pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Master w[1..4]=of w[1..4]=Puppets __BOS__ +O w[-1]=play w[0]=album w[1]=Master w[2]=of wl[-1]=play wl[0]=album wl[1]=master wl[2]=of pos[-1]=VB pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=M p1[2]=o p2[-1]=pl p2[0]=al p2[1]=Ma p2[2]=of p3[-1]=pla p3[0]=alb p3[1]=Mas p3[2]= p4[-1]=play p4[0]=albu p4[1]=Mast p4[2]= s1[-1]=y s1[0]=m s1[1]=r s1[2]=f s2[-1]=ay s2[0]=um s2[1]=er s2[2]=of s3[-1]=lay s3[0]=bum s3[1]=ter s3[2]= s4[-1]=play s4[0]=lbum s4[1]=ster s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Master w[1]|w[2]=Master|of pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Master w[1..4]=of w[1..4]=Puppets +album w[-2]=play w[-1]=album w[0]=Master w[1]=of w[2]=Puppets wl[-2]=play wl[-1]=album wl[0]=master wl[1]=of wl[2]=puppets pos[-2]=VB pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=M p1[1]=o p1[2]=P p2[-2]=pl p2[-1]=al p2[0]=Ma p2[1]=of p2[2]=Pu p3[-2]=pla p3[-1]=alb p3[0]=Mas p3[1]= p3[2]=Pup p4[-2]=play p4[-1]=albu p4[0]=Mast p4[1]= p4[2]=Pupp s1[-2]=y s1[-1]=m s1[0]=r s1[1]=f s1[2]=s s2[-2]=ay s2[-1]=um s2[0]=er s2[1]=of s2[2]=ts s3[-2]=lay s3[-1]=bum s3[0]=ter s3[1]= s3[2]=ets s4[-2]=play s4[-1]=lbum s4[0]=ster s4[1]= s4[2]=pets 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Master w[0]|w[1]=Master|of w[1]|w[2]=of|Puppets pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=of w[1..4]=Puppets +album w[-2]=album w[-1]=Master w[0]=of w[1]=Puppets wl[-2]=album wl[-1]=master wl[0]=of wl[1]=puppets pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLLL shape[-1]=ULLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=a p1[-1]=M p1[0]=o p1[1]=P p2[-2]=al p2[-1]=Ma p2[0]=of p2[1]=Pu p3[-2]=alb p3[-1]=Mas p3[0]= p3[1]=Pup p4[-2]=albu p4[-1]=Mast p4[0]= p4[1]=Pupp s1[-2]=m s1[-1]=r s1[0]=f s1[1]=s s2[-2]=um s2[-1]=er s2[0]=of s2[1]=ts s3[-2]=bum s3[-1]=ter s3[0]= s3[1]=ets s4[-2]=lbum s4[-1]=ster s4[0]= s4[1]=pets 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=album|Master w[-1]|w[0]=Master|of w[0]|w[1]=of|Puppets pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Master w[1..4]=Puppets +album w[-2]=Master w[-1]=of w[0]=Puppets wl[-2]=master wl[-1]=of wl[0]=puppets pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=M p1[-1]=o p1[0]=P p2[-2]=Ma p2[-1]=of p2[0]=Pu p3[-2]=Mas p3[-1]= p3[0]=Pup p4[-2]=Mast p4[-1]= p4[0]=Pupp s1[-2]=r s1[-1]=f s1[0]=s s2[-2]=er s2[-1]=of s2[0]=ts s3[-2]=ter s3[-1]= s3[0]=ets s4[-2]=ster s4[-1]= s4[0]=pets 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Master|of w[-1]|w[0]=of|Puppets pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Master w[-4..-1]=of __EOS__ + +O w[0]=play w[1]=the w[2]=song wl[0]=play wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=the p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=he s2[2]=ng s3[0]=lay s3[1]=the s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song w[1..4]=Pots w[1..4]=of __BOS__ +O w[-1]=play w[0]=the w[1]=song w[2]=Pots wl[-1]=play wl[0]=the wl[1]=song wl[2]=pots pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=NNS chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=s p1[2]=P p2[-1]=pl p2[0]=th p2[1]=so p2[2]=Po p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Pot p4[-1]=play p4[0]= p4[1]=song p4[2]=Pots s1[-1]=y s1[0]=e s1[1]=g s1[2]=s s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=ts s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ots s4[-1]=play s4[0]= s4[1]=song s4[2]=Pots 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Pots pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NNS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Pots w[1..4]=of w[1..4]=gold +O w[-2]=play w[-1]=the w[0]=song w[1]=Pots w[2]=of wl[-2]=play wl[-1]=the wl[0]=song wl[1]=pots wl[2]=of pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=NNS pos[2]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p1[1]=P p1[2]=o p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=Po p2[2]=of p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Pot p3[2]= p4[-2]=play p4[-1]= p4[0]=song p4[1]=Pots p4[2]= s1[-2]=y s1[-1]=e s1[0]=g s1[1]=s s1[2]=f s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=ts s2[2]=of s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ots s3[2]= s4[-2]=play s4[-1]= s4[0]=song s4[1]=Pots s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Pots w[1]|w[2]=Pots|of pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NNS pos[1]|pos[2]=NNS|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=Pots w[1..4]=of w[1..4]=gold w[1..4]=by +song w[-2]=the w[-1]=song w[0]=Pots w[1]=of w[2]=gold wl[-2]=the wl[-1]=song wl[0]=pots wl[1]=of wl[2]=gold pos[-2]=DT pos[-1]=JJ pos[0]=NNS pos[1]=NNS pos[2]=NNS chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLL shape[1]=LL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=s p1[0]=P p1[1]=o p1[2]=g p2[-2]=th p2[-1]=so p2[0]=Po p2[1]=of p2[2]=go p3[-2]=the p3[-1]=son p3[0]=Pot p3[1]= p3[2]=gol p4[-2]= p4[-1]=song p4[0]=Pots p4[1]= p4[2]=gold s1[-2]=e s1[-1]=g s1[0]=s s1[1]=f s1[2]=d s2[-2]=he s2[-1]=ng s2[0]=ts s2[1]=of s2[2]=ld s3[-2]=the s3[-1]=ong s3[0]=ots s3[1]= s3[2]=old s4[-2]= s4[-1]=song s4[0]=Pots s4[1]= s4[2]=gold 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Pots w[0]|w[1]=Pots|of w[1]|w[2]=of|gold pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NNS pos[0]|pos[1]=NNS|NNS pos[1]|pos[2]=NNS|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[1..4]=of w[1..4]=gold w[1..4]=by w[1..4]=the +song w[-2]=song w[-1]=Pots w[0]=of w[1]=gold w[2]=by wl[-2]=song wl[-1]=pots wl[0]=of wl[1]=gold wl[2]=by pos[-2]=JJ pos[-1]=NNS pos[0]=NNS pos[1]=NNS pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULLL shape[0]=LL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=P p1[0]=o p1[1]=g p1[2]=b p2[-2]=so p2[-1]=Po p2[0]=of p2[1]=go p2[2]=by p3[-2]=son p3[-1]=Pot p3[0]= p3[1]=gol p3[2]= p4[-2]=song p4[-1]=Pots p4[0]= p4[1]=gold p4[2]= s1[-2]=g s1[-1]=s s1[0]=f s1[1]=d s1[2]=y s2[-2]=ng s2[-1]=ts s2[0]=of s2[1]=ld s2[2]=by s3[-2]=ong s3[-1]=ots s3[0]= s3[1]=old s3[2]= s4[-2]=song s4[-1]=Pots s4[0]= s4[1]=gold s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Pots w[-1]|w[0]=Pots|of w[0]|w[1]=of|gold w[1]|w[2]=gold|by pos[-2]|pos[-1]=JJ|NNS pos[-1]|pos[0]=NNS|NNS pos[0]|pos[1]=NNS|NNS pos[1]|pos[2]=NNS|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Pots w[1..4]=gold w[1..4]=by w[1..4]=the w[1..4]=artist +song w[-2]=Pots w[-1]=of w[0]=gold w[1]=by w[2]=the wl[-2]=pots wl[-1]=of wl[0]=gold wl[1]=by wl[2]=the pos[-2]=NNS pos[-1]=NNS pos[0]=NNS pos[1]=IN pos[2]=DT chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=ULLL shape[-1]=LL shape[0]=LLLL shape[1]=LL shape[2]=LLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=P p1[-1]=o p1[0]=g p1[1]=b p1[2]=t p2[-2]=Po p2[-1]=of p2[0]=go p2[1]=by p2[2]=th p3[-2]=Pot p3[-1]= p3[0]=gol p3[1]= p3[2]=the p4[-2]=Pots p4[-1]= p4[0]=gold p4[1]= p4[2]= s1[-2]=s s1[-1]=f s1[0]=d s1[1]=y s1[2]=e s2[-2]=ts s2[-1]=of s2[0]=ld s2[1]=by s2[2]=he s3[-2]=ots s3[-1]= s3[0]=old s3[1]= s3[2]=the s4[-2]=Pots s4[-1]= s4[0]=gold s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Pots|of w[-1]|w[0]=of|gold w[0]|w[1]=gold|by w[1]|w[2]=by|the pos[-2]|pos[-1]=NNS|NNS pos[-1]|pos[0]=NNS|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Pots w[-4..-1]=of w[1..4]=by w[1..4]=the w[1..4]=artist w[1..4]=Mamas +O w[-2]=of w[-1]=gold w[0]=by w[1]=the w[2]=artist wl[-2]=of wl[-1]=gold wl[0]=by wl[1]=the wl[2]=artist pos[-2]=NNS pos[-1]=NNS pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LL shape[1]=LLL shape[2]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=o p1[-1]=g p1[0]=b p1[1]=t p1[2]=a p2[-2]=of p2[-1]=go p2[0]=by p2[1]=th p2[2]=ar p3[-2]= p3[-1]=gol p3[0]= p3[1]=the p3[2]=art p4[-2]= p4[-1]=gold p4[0]= p4[1]= p4[2]=arti s1[-2]=f s1[-1]=d s1[0]=y s1[1]=e s1[2]=t s2[-2]=of s2[-1]=ld s2[0]=by s2[1]=he s2[2]=st s3[-2]= s3[-1]=old s3[0]= s3[1]=the s3[2]=ist s4[-2]= s4[-1]=gold s4[0]= s4[1]= s4[2]=tist 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=of|gold w[-1]|w[0]=gold|by w[0]|w[1]=by|the w[1]|w[2]=the|artist pos[-2]|pos[-1]=NNS|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=song w[-4..-1]=Pots w[-4..-1]=of w[-4..-1]=gold w[1..4]=the w[1..4]=artist w[1..4]=Mamas w[1..4]=Gun +O w[-2]=gold w[-1]=by w[0]=the w[1]=artist w[2]=Mamas wl[-2]=gold wl[-1]=by wl[0]=the wl[1]=artist wl[2]=mamas pos[-2]=NNS pos[-1]=IN pos[0]=DT pos[1]=NN pos[2]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=g p1[-1]=b p1[0]=t p1[1]=a p1[2]=M p2[-2]=go p2[-1]=by p2[0]=th p2[1]=ar p2[2]=Ma p3[-2]=gol p3[-1]= p3[0]=the p3[1]=art p3[2]=Mam p4[-2]=gold p4[-1]= p4[0]= p4[1]=arti p4[2]=Mama s1[-2]=d s1[-1]=y s1[0]=e s1[1]=t s1[2]=s s2[-2]=ld s2[-1]=by s2[0]=he s2[1]=st s2[2]=as s3[-2]=old s3[-1]= s3[0]=the s3[1]=ist s3[2]=mas s4[-2]=gold s4[-1]= s4[0]= s4[1]=tist s4[2]=amas 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=gold|by w[-1]|w[0]=by|the w[0]|w[1]=the|artist w[1]|w[2]=artist|Mamas pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Pots w[-4..-1]=of w[-4..-1]=gold w[-4..-1]=by w[1..4]=artist w[1..4]=Mamas w[1..4]=Gun +O w[-2]=by w[-1]=the w[0]=artist w[1]=Mamas w[2]=Gun wl[-2]=by wl[-1]=the wl[0]=artist wl[1]=mamas wl[2]=gun pos[-2]=IN pos[-1]=DT pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=LLL shape[0]=LLLLLL shape[1]=ULLLL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=b p1[-1]=t p1[0]=a p1[1]=M p1[2]=G p2[-2]=by p2[-1]=th p2[0]=ar p2[1]=Ma p2[2]=Gu p3[-2]= p3[-1]=the p3[0]=art p3[1]=Mam p3[2]=Gun p4[-2]= p4[-1]= p4[0]=arti p4[1]=Mama p4[2]= s1[-2]=y s1[-1]=e s1[0]=t s1[1]=s s1[2]=n s2[-2]=by s2[-1]=he s2[0]=st s2[1]=as s2[2]=un s3[-2]= s3[-1]=the s3[0]=ist s3[1]=mas s3[2]=Gun s4[-2]= s4[-1]= s4[0]=tist s4[1]=amas s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|the w[-1]|w[0]=the|artist w[0]|w[1]=artist|Mamas w[1]|w[2]=Mamas|Gun pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=of w[-4..-1]=gold w[-4..-1]=by w[-4..-1]=the w[1..4]=Mamas w[1..4]=Gun +artist w[-2]=the w[-1]=artist w[0]=Mamas w[1]=Gun wl[-2]=the wl[-1]=artist wl[0]=mamas wl[1]=gun pos[-2]=DT pos[-1]=NN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLL shape[-1]=LLLLLL shape[0]=ULLLL shape[1]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=t p1[-1]=a p1[0]=M p1[1]=G p2[-2]=th p2[-1]=ar p2[0]=Ma p2[1]=Gu p3[-2]=the p3[-1]=art p3[0]=Mam p3[1]=Gun p4[-2]= p4[-1]=arti p4[0]=Mama p4[1]= s1[-2]=e s1[-1]=t s1[0]=s s1[1]=n s2[-2]=he s2[-1]=st s2[0]=as s2[1]=un s3[-2]=the s3[-1]=ist s3[0]=mas s3[1]=Gun s4[-2]= s4[-1]=tist s4[0]=amas s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=the|artist w[-1]|w[0]=artist|Mamas w[0]|w[1]=Mamas|Gun pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=gold w[-4..-1]=by w[-4..-1]=the w[-4..-1]=artist w[1..4]=Gun +artist w[-2]=artist w[-1]=Mamas w[0]=Gun wl[-2]=artist wl[-1]=mamas wl[0]=gun pos[-2]=NN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLLLL shape[-1]=ULLLL shape[0]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=a p1[-1]=M p1[0]=G p2[-2]=ar p2[-1]=Ma p2[0]=Gu p3[-2]=art p3[-1]=Mam p3[0]=Gun p4[-2]=arti p4[-1]=Mama p4[0]= s1[-2]=t s1[-1]=s s1[0]=n s2[-2]=st s2[-1]=as s2[0]=un s3[-2]=ist s3[-1]=mas s3[0]=Gun s4[-2]=tist s4[-1]=amas s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=artist|Mamas w[-1]|w[0]=Mamas|Gun pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=by w[-4..-1]=the w[-4..-1]=artist w[-4..-1]=Mamas __EOS__ + +O w[0]=play w[1]=the w[2]=album wl[0]=play wl[1]=the wl[2]=album pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=a p2[0]=pl p2[1]=th p2[2]=al p3[0]=pla p3[1]=the p3[2]=alb p4[0]=play p4[1]= p4[2]=albu s1[0]=y s1[1]=e s1[2]=m s2[0]=ay s2[1]=he s2[2]=um s3[0]=lay s3[1]=the s3[2]=bum s4[0]=play s4[1]= s4[2]=lbum 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|album pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=album w[1..4]=The w[1..4]=Wall __BOS__ +O w[-1]=play w[0]=the w[1]=album w[2]=The wl[-1]=play wl[0]=the wl[1]=album wl[2]=the pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLL shape[2]=ULL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=a p1[2]=T p2[-1]=pl p2[0]=th p2[1]=al p2[2]=Th p3[-1]=pla p3[0]=the p3[1]=alb p3[2]=The p4[-1]=play p4[0]= p4[1]=albu p4[2]= s1[-1]=y s1[0]=e s1[1]=m s1[2]=e s2[-1]=ay s2[0]=he s2[1]=um s2[2]=he s3[-1]=lay s3[0]=the s3[1]=bum s3[2]=The s4[-1]=play s4[0]= s4[1]=lbum s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|album w[1]|w[2]=album|The pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=album w[1..4]=The w[1..4]=Wall w[1..4]=on +O w[-2]=play w[-1]=the w[0]=album w[1]=The w[2]=Wall wl[-2]=play wl[-1]=the wl[0]=album wl[1]=the wl[2]=wall pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLL shape[1]=ULL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=t p1[0]=a p1[1]=T p1[2]=W p2[-2]=pl p2[-1]=th p2[0]=al p2[1]=Th p2[2]=Wa p3[-2]=pla p3[-1]=the p3[0]=alb p3[1]=The p3[2]=Wal p4[-2]=play p4[-1]= p4[0]=albu p4[1]= p4[2]=Wall s1[-2]=y s1[-1]=e s1[0]=m s1[1]=e s1[2]=l s2[-2]=ay s2[-1]=he s2[0]=um s2[1]=he s2[2]=ll s3[-2]=lay s3[-1]=the s3[0]=bum s3[1]=The s3[2]=all s4[-2]=play s4[-1]= s4[0]=lbum s4[1]= s4[2]=Wall 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|album w[0]|w[1]=album|The w[1]|w[2]=The|Wall pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[1..4]=The w[1..4]=Wall w[1..4]=on w[1..4]=Spotify +album w[-2]=the w[-1]=album w[0]=The w[1]=Wall w[2]=on wl[-2]=the wl[-1]=album wl[0]=the wl[1]=wall wl[2]=on pos[-2]=DT pos[-1]=NN pos[0]=DT pos[1]=DT pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLL shape[-1]=LLLLL shape[0]=ULL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=t p1[-1]=a p1[0]=T p1[1]=W p1[2]=o p2[-2]=th p2[-1]=al p2[0]=Th p2[1]=Wa p2[2]=on p3[-2]=the p3[-1]=alb p3[0]=The p3[1]=Wal p3[2]= p4[-2]= p4[-1]=albu p4[0]= p4[1]=Wall p4[2]= s1[-2]=e s1[-1]=m s1[0]=e s1[1]=l s1[2]=n s2[-2]=he s2[-1]=um s2[0]=he s2[1]=ll s2[2]=on s3[-2]=the s3[-1]=bum s3[0]=The s3[1]=all s3[2]= s4[-2]= s4[-1]=lbum s4[0]= s4[1]=Wall s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|album w[-1]|w[0]=album|The w[0]|w[1]=The|Wall w[1]|w[2]=Wall|on pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=album w[1..4]=Wall w[1..4]=on w[1..4]=Spotify +album w[-2]=album w[-1]=The w[0]=Wall w[1]=on w[2]=Spotify wl[-2]=album wl[-1]=the wl[0]=wall wl[1]=on wl[2]=spotify pos[-2]=NN pos[-1]=DT pos[0]=DT pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLLL shape[-1]=ULL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=a p1[-1]=T p1[0]=W p1[1]=o p1[2]=S p2[-2]=al p2[-1]=Th p2[0]=Wa p2[1]=on p2[2]=Sp p3[-2]=alb p3[-1]=The p3[0]=Wal p3[1]= p3[2]=Spo p4[-2]=albu p4[-1]= p4[0]=Wall p4[1]= p4[2]=Spot s1[-2]=m s1[-1]=e s1[0]=l s1[1]=n s1[2]=y s2[-2]=um s2[-1]=he s2[0]=ll s2[1]=on s2[2]=fy s3[-2]=bum s3[-1]=The s3[0]=all s3[1]= s3[2]=ify s4[-2]=lbum s4[-1]= s4[0]=Wall s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|The w[-1]|w[0]=The|Wall w[0]|w[1]=Wall|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=NN|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=album w[-4..-1]=The w[1..4]=on w[1..4]=Spotify +O w[-2]=The w[-1]=Wall w[0]=on w[1]=Spotify wl[-2]=the wl[-1]=wall wl[0]=on wl[1]=spotify pos[-2]=DT pos[-1]=DT pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=T p1[-1]=W p1[0]=o p1[1]=S p2[-2]=Th p2[-1]=Wa p2[0]=on p2[1]=Sp p3[-2]=The p3[-1]=Wal p3[0]= p3[1]=Spo p4[-2]= p4[-1]=Wall p4[0]= p4[1]=Spot s1[-2]=e s1[-1]=l s1[0]=n s1[1]=y s2[-2]=he s2[-1]=ll s2[0]=on s2[1]=fy s3[-2]=The s3[-1]=all s3[0]= s3[1]=ify s4[-2]= s4[-1]=Wall s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=The|Wall w[-1]|w[0]=Wall|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=album w[-4..-1]=The w[-4..-1]=Wall w[1..4]=Spotify +service w[-2]=Wall w[-1]=on w[0]=Spotify wl[-2]=wall wl[-1]=on wl[0]=spotify pos[-2]=DT pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=W p1[-1]=o p1[0]=S p2[-2]=Wa p2[-1]=on p2[0]=Sp p3[-2]=Wal p3[-1]= p3[0]=Spo p4[-2]=Wall p4[-1]= p4[0]=Spot s1[-2]=l s1[-1]=n s1[0]=y s2[-2]=ll s2[-1]=on s2[0]=fy s3[-2]=all s3[-1]= s3[0]=ify s4[-2]=Wall s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Wall|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=DT|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=album w[-4..-1]=The w[-4..-1]=Wall w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=some w[2]=romantic wl[0]=play wl[1]=some wl[2]=romantic pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=r p2[0]=pl p2[1]=so p2[2]=ro p3[0]=pla p3[1]=som p3[2]=rom p4[0]=play p4[1]=some p4[2]=roma s1[0]=y s1[1]=e s1[2]=c s2[0]=ay s2[1]=me s2[2]=ic s3[0]=lay s3[1]=ome s3[2]=tic s4[0]=play s4[1]=some s4[2]=ntic 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|some w[1]|w[2]=some|romantic pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=some w[1..4]=romantic w[1..4]=songs __BOS__ +O w[-1]=play w[0]=some w[1]=romantic w[2]=songs wl[-1]=play wl[0]=some wl[1]=romantic wl[2]=songs pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=NNS chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLLLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=s p1[1]=r p1[2]=s p2[-1]=pl p2[0]=so p2[1]=ro p2[2]=so p3[-1]=pla p3[0]=som p3[1]=rom p3[2]=son p4[-1]=play p4[0]=some p4[1]=roma p4[2]=song s1[-1]=y s1[0]=e s1[1]=c s1[2]=s s2[-1]=ay s2[0]=me s2[1]=ic s2[2]=gs s3[-1]=lay s3[0]=ome s3[1]=tic s3[2]=ngs s4[-1]=play s4[0]=some s4[1]=ntic s4[2]=ongs 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|some w[0]|w[1]=some|romantic w[1]|w[2]=romantic|songs pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NNS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=romantic w[1..4]=songs +genre w[-2]=play w[-1]=some w[0]=romantic w[1]=songs wl[-2]=play wl[-1]=some wl[0]=romantic wl[1]=songs pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=NNS chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=s p1[0]=r p1[1]=s p2[-2]=pl p2[-1]=so p2[0]=ro p2[1]=so p3[-2]=pla p3[-1]=som p3[0]=rom p3[1]=son p4[-2]=play p4[-1]=some p4[0]=roma p4[1]=song s1[-2]=y s1[-1]=e s1[0]=c s1[1]=s s2[-2]=ay s2[-1]=me s2[0]=ic s2[1]=gs s3[-2]=lay s3[-1]=ome s3[0]=tic s3[1]=ngs s4[-2]=play s4[-1]=some s4[0]=ntic s4[1]=ongs 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|some w[-1]|w[0]=some|romantic w[0]|w[1]=romantic|songs pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[1..4]=songs +O w[-2]=some w[-1]=romantic w[0]=songs wl[-2]=some wl[-1]=romantic wl[0]=songs pos[-2]=DT pos[-1]=JJ pos[0]=NNS chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=LLLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=r p1[0]=s p2[-2]=so p2[-1]=ro p2[0]=so p3[-2]=som p3[-1]=rom p3[0]=son p4[-2]=some p4[-1]=roma p4[0]=song s1[-2]=e s1[-1]=c s1[0]=s s2[-2]=me s2[-1]=ic s2[0]=gs s3[-2]=ome s3[-1]=tic s3[0]=ngs s4[-2]=some s4[-1]=ntic s4[0]=ongs 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|romantic w[-1]|w[0]=romantic|songs pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NNS chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=some w[-4..-1]=romantic __EOS__ + +O w[0]=play w[1]=Best w[2]=of wl[0]=play wl[1]=best wl[2]=of pos[0]=VB pos[1]=JJS pos[2]=JJS chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=B p1[2]=o p2[0]=pl p2[1]=Be p2[2]=of p3[0]=pla p3[1]=Bes p3[2]= p4[0]=play p4[1]=Best p4[2]= s1[0]=y s1[1]=t s1[2]=f s2[0]=ay s2[1]=st s2[2]=of s3[0]=lay s3[1]=est s3[2]= s4[0]=play s4[1]=Best s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Best w[1]|w[2]=Best|of pos[0]|pos[1]=VB|JJS pos[1]|pos[2]=JJS|JJS chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Best w[1..4]=of w[1..4]=You w[1..4]=by __BOS__ +song w[-1]=play w[0]=Best w[1]=of w[2]=You wl[-1]=play wl[0]=best wl[1]=of wl[2]=you pos[-1]=VB pos[0]=JJS pos[1]=JJS pos[2]=JJS chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLL shape[1]=LL shape[2]=ULL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=B p1[1]=o p1[2]=Y p2[-1]=pl p2[0]=Be p2[1]=of p2[2]=Yo p3[-1]=pla p3[0]=Bes p3[1]= p3[2]=You p4[-1]=play p4[0]=Best p4[1]= p4[2]= s1[-1]=y s1[0]=t s1[1]=f s1[2]=u s2[-1]=ay s2[0]=st s2[1]=of s2[2]=ou s3[-1]=lay s3[0]=est s3[1]= s3[2]=You s4[-1]=play s4[0]=Best s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Best w[0]|w[1]=Best|of w[1]|w[2]=of|You pos[-1]|pos[0]=VB|JJS pos[0]|pos[1]=JJS|JJS pos[1]|pos[2]=JJS|JJS chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=of w[1..4]=You w[1..4]=by w[1..4]=Foo +song w[-2]=play w[-1]=Best w[0]=of w[1]=You w[2]=by wl[-2]=play wl[-1]=best wl[0]=of wl[1]=you wl[2]=by pos[-2]=VB pos[-1]=JJS pos[0]=JJS pos[1]=JJS pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=B p1[0]=o p1[1]=Y p1[2]=b p2[-2]=pl p2[-1]=Be p2[0]=of p2[1]=Yo p2[2]=by p3[-2]=pla p3[-1]=Bes p3[0]= p3[1]=You p3[2]= p4[-2]=play p4[-1]=Best p4[0]= p4[1]= p4[2]= s1[-2]=y s1[-1]=t s1[0]=f s1[1]=u s1[2]=y s2[-2]=ay s2[-1]=st s2[0]=of s2[1]=ou s2[2]=by s3[-2]=lay s3[-1]=est s3[0]= s3[1]=You s3[2]= s4[-2]=play s4[-1]=Best s4[0]= s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Best w[-1]|w[0]=Best|of w[0]|w[1]=of|You w[1]|w[2]=You|by pos[-2]|pos[-1]=VB|JJS pos[-1]|pos[0]=JJS|JJS pos[0]|pos[1]=JJS|JJS pos[1]|pos[2]=JJS|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Best w[1..4]=You w[1..4]=by w[1..4]=Foo w[1..4]=Fighters +song w[-2]=Best w[-1]=of w[0]=You w[1]=by w[2]=Foo wl[-2]=best wl[-1]=of wl[0]=you wl[1]=by wl[2]=foo pos[-2]=JJS pos[-1]=JJS pos[0]=JJS pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULL shape[1]=LL shape[2]=ULL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=B p1[-1]=o p1[0]=Y p1[1]=b p1[2]=F p2[-2]=Be p2[-1]=of p2[0]=Yo p2[1]=by p2[2]=Fo p3[-2]=Bes p3[-1]= p3[0]=You p3[1]= p3[2]=Foo p4[-2]=Best p4[-1]= p4[0]= p4[1]= p4[2]= s1[-2]=t s1[-1]=f s1[0]=u s1[1]=y s1[2]=o s2[-2]=st s2[-1]=of s2[0]=ou s2[1]=by s2[2]=oo s3[-2]=est s3[-1]= s3[0]=You s3[1]= s3[2]=Foo s4[-2]=Best s4[-1]= s4[0]= s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Best|of w[-1]|w[0]=of|You w[0]|w[1]=You|by w[1]|w[2]=by|Foo pos[-2]|pos[-1]=JJS|JJS pos[-1]|pos[0]=JJS|JJS pos[0]|pos[1]=JJS|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Best w[-4..-1]=of w[1..4]=by w[1..4]=Foo w[1..4]=Fighters +O w[-2]=of w[-1]=You w[0]=by w[1]=Foo w[2]=Fighters wl[-2]=of wl[-1]=you wl[0]=by wl[1]=foo wl[2]=fighters pos[-2]=JJS pos[-1]=JJS pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=ULL shape[0]=LL shape[1]=ULL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=o p1[-1]=Y p1[0]=b p1[1]=F p1[2]=F p2[-2]=of p2[-1]=Yo p2[0]=by p2[1]=Fo p2[2]=Fi p3[-2]= p3[-1]=You p3[0]= p3[1]=Foo p3[2]=Fig p4[-2]= p4[-1]= p4[0]= p4[1]= p4[2]=Figh s1[-2]=f s1[-1]=u s1[0]=y s1[1]=o s1[2]=s s2[-2]=of s2[-1]=ou s2[0]=by s2[1]=oo s2[2]=rs s3[-2]= s3[-1]=You s3[0]= s3[1]=Foo s3[2]=ers s4[-2]= s4[-1]= s4[0]= s4[1]= s4[2]=ters 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=of|You w[-1]|w[0]=You|by w[0]|w[1]=by|Foo w[1]|w[2]=Foo|Fighters pos[-2]|pos[-1]=JJS|JJS pos[-1]|pos[0]=JJS|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Best w[-4..-1]=of w[-4..-1]=You w[1..4]=Foo w[1..4]=Fighters +artist w[-2]=You w[-1]=by w[0]=Foo w[1]=Fighters wl[-2]=you wl[-1]=by wl[0]=foo wl[1]=fighters pos[-2]=JJS pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=LL shape[0]=ULL shape[1]=ULLLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=Y p1[-1]=b p1[0]=F p1[1]=F p2[-2]=Yo p2[-1]=by p2[0]=Fo p2[1]=Fi p3[-2]=You p3[-1]= p3[0]=Foo p3[1]=Fig p4[-2]= p4[-1]= p4[0]= p4[1]=Figh s1[-2]=u s1[-1]=y s1[0]=o s1[1]=s s2[-2]=ou s2[-1]=by s2[0]=oo s2[1]=rs s3[-2]=You s3[-1]= s3[0]=Foo s3[1]=ers s4[-2]= s4[-1]= s4[0]= s4[1]=ters 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=You|by w[-1]|w[0]=by|Foo w[0]|w[1]=Foo|Fighters pos[-2]|pos[-1]=JJS|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Best w[-4..-1]=of w[-4..-1]=You w[-4..-1]=by w[1..4]=Fighters +artist w[-2]=by w[-1]=Foo w[0]=Fighters wl[-2]=by wl[-1]=foo wl[0]=fighters pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=F p1[0]=F p2[-2]=by p2[-1]=Fo p2[0]=Fi p3[-2]= p3[-1]=Foo p3[0]=Fig p4[-2]= p4[-1]= p4[0]=Figh s1[-2]=y s1[-1]=o s1[0]=s s2[-2]=by s2[-1]=oo s2[0]=rs s3[-2]= s3[-1]=Foo s3[0]=ers s4[-2]= s4[-1]= s4[0]=ters 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Foo w[-1]|w[0]=Foo|Fighters pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=of w[-4..-1]=You w[-4..-1]=by w[-4..-1]=Foo __EOS__ + +O w[0]=play w[1]=me w[2]=some wl[0]=play wl[1]=me wl[2]=some pos[0]=VB pos[1]=PRP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=s p2[0]=pl p2[1]=me p2[2]=so p3[0]=pla p3[1]= p3[2]=som p4[0]=play p4[1]= p4[2]=some s1[0]=y s1[1]=e s1[2]=e s2[0]=ay s2[1]=me s2[2]=me s3[0]=lay s3[1]= s3[2]=ome s4[0]=play s4[1]= s4[2]=some 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|me w[1]|w[2]=me|some pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=me w[1..4]=some w[1..4]=relaxing w[1..4]=music __BOS__ +O w[-1]=play w[0]=me w[1]=some w[2]=relaxing wl[-1]=play wl[0]=me wl[1]=some wl[2]=relaxing pos[-1]=VB pos[0]=PRP pos[1]=DT pos[2]=VBG chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=m p1[1]=s p1[2]=r p2[-1]=pl p2[0]=me p2[1]=so p2[2]=re p3[-1]=pla p3[0]= p3[1]=som p3[2]=rel p4[-1]=play p4[0]= p4[1]=some p4[2]=rela s1[-1]=y s1[0]=e s1[1]=e s1[2]=g s2[-1]=ay s2[0]=me s2[1]=me s2[2]=ng s3[-1]=lay s3[0]= s3[1]=ome s3[2]=ing s4[-1]=play s4[0]= s4[1]=some s4[2]=xing 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|me w[0]|w[1]=me|some w[1]|w[2]=some|relaxing pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|DT pos[1]|pos[2]=DT|VBG chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=some w[1..4]=relaxing w[1..4]=music +O w[-2]=play w[-1]=me w[0]=some w[1]=relaxing w[2]=music wl[-2]=play wl[-1]=me wl[0]=some wl[1]=relaxing wl[2]=music pos[-2]=VB pos[-1]=PRP pos[0]=DT pos[1]=VBG pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLLLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=m p1[0]=s p1[1]=r p1[2]=m p2[-2]=pl p2[-1]=me p2[0]=so p2[1]=re p2[2]=mu p3[-2]=pla p3[-1]= p3[0]=som p3[1]=rel p3[2]=mus p4[-2]=play p4[-1]= p4[0]=some p4[1]=rela p4[2]=musi s1[-2]=y s1[-1]=e s1[0]=e s1[1]=g s1[2]=c s2[-2]=ay s2[-1]=me s2[0]=me s2[1]=ng s2[2]=ic s3[-2]=lay s3[-1]= s3[0]=ome s3[1]=ing s3[2]=sic s4[-2]=play s4[-1]= s4[0]=some s4[1]=xing s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|me w[-1]|w[0]=me|some w[0]|w[1]=some|relaxing w[1]|w[2]=relaxing|music pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|DT pos[0]|pos[1]=DT|VBG pos[1]|pos[2]=VBG|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[1..4]=relaxing w[1..4]=music +genre w[-2]=me w[-1]=some w[0]=relaxing w[1]=music wl[-2]=me wl[-1]=some wl[0]=relaxing wl[1]=music pos[-2]=PRP pos[-1]=DT pos[0]=VBG pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=m p1[-1]=s p1[0]=r p1[1]=m p2[-2]=me p2[-1]=so p2[0]=re p2[1]=mu p3[-2]= p3[-1]=som p3[0]=rel p3[1]=mus p4[-2]= p4[-1]=some p4[0]=rela p4[1]=musi s1[-2]=e s1[-1]=e s1[0]=g s1[1]=c s2[-2]=me s2[-1]=me s2[0]=ng s2[1]=ic s3[-2]= s3[-1]=ome s3[0]=ing s3[1]=sic s4[-2]= s4[-1]=some s4[0]=xing s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=me|some w[-1]|w[0]=some|relaxing w[0]|w[1]=relaxing|music pos[-2]|pos[-1]=PRP|DT pos[-1]|pos[0]=DT|VBG pos[0]|pos[1]=VBG|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some w[1..4]=music +O w[-2]=some w[-1]=relaxing w[0]=music wl[-2]=some wl[-1]=relaxing wl[0]=music pos[-2]=DT pos[-1]=VBG pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=LLLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=r p1[0]=m p2[-2]=so p2[-1]=re p2[0]=mu p3[-2]=som p3[-1]=rel p3[0]=mus p4[-2]=some p4[-1]=rela p4[0]=musi s1[-2]=e s1[-1]=g s1[0]=c s2[-2]=me s2[-1]=ng s2[0]=ic s3[-2]=ome s3[-1]=ing s3[0]=sic s4[-2]=some s4[-1]=xing s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|relaxing w[-1]|w[0]=relaxing|music pos[-2]|pos[-1]=DT|VBG pos[-1]|pos[0]=VBG|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some w[-4..-1]=relaxing __EOS__ + +O w[0]=play w[1]=artist w[2]=ACDC wl[0]=play wl[1]=artist wl[2]=acdc pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLLL shape[2]=UUUU shaped[0]=L shaped[1]=L shaped[2]=U type[0]=AllLetter type[1]=AllLetter type[2]=AllUpper p1[0]=p p1[1]=a p1[2]=A p2[0]=pl p2[1]=ar p2[2]=AC p3[0]=pla p3[1]=art p3[2]=ACD p4[0]=play p4[1]=arti p4[2]=ACDC s1[0]=y s1[1]=t s1[2]=C s2[0]=ay s2[1]=st s2[2]=DC s3[0]=lay s3[1]=ist s3[2]=CDC s4[0]=play s4[1]=tist s4[2]=ACDC 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=yes al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|artist w[1]|w[2]=artist|ACDC pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|U type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllUpper w[1..4]=artist w[1..4]=ACDC __BOS__ +O w[-1]=play w[0]=artist w[1]=ACDC wl[-1]=play wl[0]=artist wl[1]=acdc pos[-1]=VB pos[0]=NN pos[1]=NNP chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLLLL shape[1]=UUUU shaped[-1]=L shaped[0]=L shaped[1]=U type[-1]=AllLetter type[0]=AllLetter type[1]=AllUpper p1[-1]=p p1[0]=a p1[1]=A p2[-1]=pl p2[0]=ar p2[1]=AC p3[-1]=pla p3[0]=art p3[1]=ACD p4[-1]=play p4[0]=arti p4[1]=ACDC s1[-1]=y s1[0]=t s1[1]=C s2[-1]=ay s2[0]=st s2[1]=DC s3[-1]=lay s3[0]=ist s3[1]=CDC s4[-1]=play s4[0]=tist s4[1]=ACDC 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=yes al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=no ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|artist w[0]|w[1]=artist|ACDC pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|U type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllUpper w[-4..-1]=play w[1..4]=ACDC +artist w[-2]=play w[-1]=artist w[0]=ACDC wl[-2]=play wl[-1]=artist wl[0]=acdc pos[-2]=VB pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLLLL shape[0]=UUUU shaped[-2]=L shaped[-1]=L shaped[0]=U type[-2]=AllLetter type[-1]=AllLetter type[0]=AllUpper p1[-2]=p p1[-1]=a p1[0]=A p2[-2]=pl p2[-1]=ar p2[0]=AC p3[-2]=pla p3[-1]=art p3[0]=ACD p4[-2]=play p4[-1]=arti p4[0]=ACDC s1[-2]=y s1[-1]=t s1[0]=C s2[-2]=ay s2[-1]=st s2[0]=DC s3[-2]=lay s3[-1]=ist s3[0]=CDC s4[-2]=play s4[-1]=tist s4[0]=ACDC 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=yes al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=no ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|artist w[-1]|w[0]=artist|ACDC pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|U type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllUpper w[-4..-1]=play w[-4..-1]=artist __EOS__ + +O w[0]=can w[1]=you w[2]=open wl[0]=can wl[1]=you wl[2]=open pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=o p2[0]=ca p2[1]=yo p2[2]=op p3[0]=can p3[1]=you p3[2]=ope p4[0]= p4[1]= p4[2]=open s1[0]=n s1[1]=u s1[2]=n s2[0]=an s2[1]=ou s2[2]=en s3[0]=can s3[1]=you s3[2]=pen s4[0]= s4[1]= s4[2]=open 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|open pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=open w[1..4]=Shape w[1..4]=of __BOS__ +O w[-1]=can w[0]=you w[1]=open w[2]=Shape wl[-1]=can wl[0]=you wl[1]=open wl[2]=shape pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=c p1[0]=y p1[1]=o p1[2]=S p2[-1]=ca p2[0]=yo p2[1]=op p2[2]=Sh p3[-1]=can p3[0]=you p3[1]=ope p3[2]=Sha p4[-1]= p4[0]= p4[1]=open p4[2]=Shap s1[-1]=n s1[0]=u s1[1]=n s1[2]=e s2[-1]=an s2[0]=ou s2[1]=en s2[2]=pe s3[-1]=can s3[0]=you s3[1]=pen s3[2]=ape s4[-1]= s4[0]= s4[1]=open s4[2]=hape 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|open w[1]|w[2]=open|Shape pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[1..4]=open w[1..4]=Shape w[1..4]=of w[1..4]=My +O w[-2]=can w[-1]=you w[0]=open w[1]=Shape w[2]=of wl[-2]=can wl[-1]=you wl[0]=open wl[1]=shape wl[2]=of pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=o p1[1]=S p1[2]=o p2[-2]=ca p2[-1]=yo p2[0]=op p2[1]=Sh p2[2]=of p3[-2]=can p3[-1]=you p3[0]=ope p3[1]=Sha p3[2]= p4[-2]= p4[-1]= p4[0]=open p4[1]=Shap p4[2]= s1[-2]=n s1[-1]=u s1[0]=n s1[1]=e s1[2]=f s2[-2]=an s2[-1]=ou s2[0]=en s2[1]=pe s2[2]=of s3[-2]=can s3[-1]=you s3[0]=pen s3[1]=ape s3[2]= s4[-2]= s4[-1]= s4[0]=open s4[1]=hape s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|open w[0]|w[1]=open|Shape w[1]|w[2]=Shape|of pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=Shape w[1..4]=of w[1..4]=My w[1..4]=Heart +song w[-2]=you w[-1]=open w[0]=Shape w[1]=of w[2]=My wl[-2]=you wl[-1]=open wl[0]=shape wl[1]=of wl[2]=my pos[-2]=PRP pos[-1]=VB pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLL shape[1]=LL shape[2]=UL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=y p1[-1]=o p1[0]=S p1[1]=o p1[2]=M p2[-2]=yo p2[-1]=op p2[0]=Sh p2[1]=of p2[2]=My p3[-2]=you p3[-1]=ope p3[0]=Sha p3[1]= p3[2]= p4[-2]= p4[-1]=open p4[0]=Shap p4[1]= p4[2]= s1[-2]=u s1[-1]=n s1[0]=e s1[1]=f s1[2]=y s2[-2]=ou s2[-1]=en s2[0]=pe s2[1]=of s2[2]=My s3[-2]=you s3[-1]=pen s3[0]=ape s3[1]= s3[2]= s4[-2]= s4[-1]=open s4[0]=hape s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|open w[-1]|w[0]=open|Shape w[0]|w[1]=Shape|of w[1]|w[2]=of|My pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=open w[1..4]=of w[1..4]=My w[1..4]=Heart w[1..4]=in +song w[-2]=open w[-1]=Shape w[0]=of w[1]=My w[2]=Heart wl[-2]=open wl[-1]=shape wl[0]=of wl[1]=my wl[2]=heart pos[-2]=VB pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=LL shape[1]=UL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=o p1[-1]=S p1[0]=o p1[1]=M p1[2]=H p2[-2]=op p2[-1]=Sh p2[0]=of p2[1]=My p2[2]=He p3[-2]=ope p3[-1]=Sha p3[0]= p3[1]= p3[2]=Hea p4[-2]=open p4[-1]=Shap p4[0]= p4[1]= p4[2]=Hear s1[-2]=n s1[-1]=e s1[0]=f s1[1]=y s1[2]=t s2[-2]=en s2[-1]=pe s2[0]=of s2[1]=My s2[2]=rt s3[-2]=pen s3[-1]=ape s3[0]= s3[1]= s3[2]=art s4[-2]=open s4[-1]=hape s4[0]= s4[1]= s4[2]=eart 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=open|Shape w[-1]|w[0]=Shape|of w[0]|w[1]=of|My w[1]|w[2]=My|Heart pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=open w[-4..-1]=Shape w[1..4]=My w[1..4]=Heart w[1..4]=in w[1..4]=Google +song w[-2]=Shape w[-1]=of w[0]=My w[1]=Heart w[2]=in wl[-2]=shape wl[-1]=of wl[0]=my wl[1]=heart wl[2]=in pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLLL shape[-1]=LL shape[0]=UL shape[1]=ULLLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=S p1[-1]=o p1[0]=M p1[1]=H p1[2]=i p2[-2]=Sh p2[-1]=of p2[0]=My p2[1]=He p2[2]=in p3[-2]=Sha p3[-1]= p3[0]= p3[1]=Hea p3[2]= p4[-2]=Shap p4[-1]= p4[0]= p4[1]=Hear p4[2]= s1[-2]=e s1[-1]=f s1[0]=y s1[1]=t s1[2]=n s2[-2]=pe s2[-1]=of s2[0]=My s2[1]=rt s2[2]=in s3[-2]=ape s3[-1]= s3[0]= s3[1]=art s3[2]= s4[-2]=hape s4[-1]= s4[0]= s4[1]=eart s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Shape|of w[-1]|w[0]=of|My w[0]|w[1]=My|Heart w[1]|w[2]=Heart|in pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=you w[-4..-1]=open w[-4..-1]=Shape w[-4..-1]=of w[1..4]=Heart w[1..4]=in w[1..4]=Google w[1..4]=music +song w[-2]=of w[-1]=My w[0]=Heart w[1]=in w[2]=Google wl[-2]=of wl[-1]=my wl[0]=heart wl[1]=in wl[2]=google pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=UL shape[0]=ULLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=o p1[-1]=M p1[0]=H p1[1]=i p1[2]=G p2[-2]=of p2[-1]=My p2[0]=He p2[1]=in p2[2]=Go p3[-2]= p3[-1]= p3[0]=Hea p3[1]= p3[2]=Goo p4[-2]= p4[-1]= p4[0]=Hear p4[1]= p4[2]=Goog s1[-2]=f s1[-1]=y s1[0]=t s1[1]=n s1[2]=e s2[-2]=of s2[-1]=My s2[0]=rt s2[1]=in s2[2]=le s3[-2]= s3[-1]= s3[0]=art s3[1]= s3[2]=gle s4[-2]= s4[-1]= s4[0]=eart s4[1]= s4[2]=ogle 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=of|My w[-1]|w[0]=My|Heart w[0]|w[1]=Heart|in w[1]|w[2]=in|Google pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=open w[-4..-1]=Shape w[-4..-1]=of w[-4..-1]=My w[1..4]=in w[1..4]=Google w[1..4]=music +O w[-2]=My w[-1]=Heart w[0]=in w[1]=Google w[2]=music wl[-2]=my wl[-1]=heart wl[0]=in wl[1]=google wl[2]=music pos[-2]=NN pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=UL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLLLL shape[2]=LLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=M p1[-1]=H p1[0]=i p1[1]=G p1[2]=m p2[-2]=My p2[-1]=He p2[0]=in p2[1]=Go p2[2]=mu p3[-2]= p3[-1]=Hea p3[0]= p3[1]=Goo p3[2]=mus p4[-2]= p4[-1]=Hear p4[0]= p4[1]=Goog p4[2]=musi s1[-2]=y s1[-1]=t s1[0]=n s1[1]=e s1[2]=c s2[-2]=My s2[-1]=rt s2[0]=in s2[1]=le s2[2]=ic s3[-2]= s3[-1]=art s3[0]= s3[1]=gle s3[2]=sic s4[-2]= s4[-1]=eart s4[0]= s4[1]=ogle s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=My|Heart w[-1]|w[0]=Heart|in w[0]|w[1]=in|Google w[1]|w[2]=Google|music pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Shape w[-4..-1]=of w[-4..-1]=My w[-4..-1]=Heart w[1..4]=Google w[1..4]=music +service w[-2]=Heart w[-1]=in w[0]=Google w[1]=music wl[-2]=heart wl[-1]=in wl[0]=google wl[1]=music pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=LLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter p1[-2]=H p1[-1]=i p1[0]=G p1[1]=m p2[-2]=He p2[-1]=in p2[0]=Go p2[1]=mu p3[-2]=Hea p3[-1]= p3[0]=Goo p3[1]=mus p4[-2]=Hear p4[-1]= p4[0]=Goog p4[1]=musi s1[-2]=t s1[-1]=n s1[0]=e s1[1]=c s2[-2]=rt s2[-1]=in s2[0]=le s2[1]=ic s3[-2]=art s3[-1]= s3[0]=gle s3[1]=sic s4[-2]=eart s4[-1]= s4[0]=ogle s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Heart|in w[-1]|w[0]=in|Google w[0]|w[1]=Google|music pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=of w[-4..-1]=My w[-4..-1]=Heart w[-4..-1]=in w[1..4]=music +service w[-2]=in w[-1]=Google w[0]=music wl[-2]=in wl[-1]=google wl[0]=music pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter p1[-2]=i p1[-1]=G p1[0]=m p2[-2]=in p2[-1]=Go p2[0]=mu p3[-2]= p3[-1]=Goo p3[0]=mus p4[-2]= p4[-1]=Goog p4[0]=musi s1[-2]=n s1[-1]=e s1[0]=c s2[-2]=in s2[-1]=le s2[0]=ic s3[-2]= s3[-1]=gle s3[0]=sic s4[-2]= s4[-1]=ogle s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=in|Google w[-1]|w[0]=Google|music pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=My w[-4..-1]=Heart w[-4..-1]=in w[-4..-1]=Google __EOS__ + +O w[0]=play w[1]=artist w[2]=Meghan wl[0]=play wl[1]=artist wl[2]=meghan pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=M p2[0]=pl p2[1]=ar p2[2]=Me p3[0]=pla p3[1]=art p3[2]=Meg p4[0]=play p4[1]=arti p4[2]=Megh s1[0]=y s1[1]=t s1[2]=n s2[0]=ay s2[1]=st s2[2]=an s3[0]=lay s3[1]=ist s3[2]=han s4[0]=play s4[1]=tist s4[2]=ghan 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|artist w[1]|w[2]=artist|Meghan pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=artist w[1..4]=Meghan w[1..4]=Trainor __BOS__ +O w[-1]=play w[0]=artist w[1]=Meghan w[2]=Trainor wl[-1]=play wl[0]=artist wl[1]=meghan wl[2]=trainor pos[-1]=VB pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLLL shape[1]=ULLLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=a p1[1]=M p1[2]=T p2[-1]=pl p2[0]=ar p2[1]=Me p2[2]=Tr p3[-1]=pla p3[0]=art p3[1]=Meg p3[2]=Tra p4[-1]=play p4[0]=arti p4[1]=Megh p4[2]=Trai s1[-1]=y s1[0]=t s1[1]=n s1[2]=r s2[-1]=ay s2[0]=st s2[1]=an s2[2]=or s3[-1]=lay s3[0]=ist s3[1]=han s3[2]=nor s4[-1]=play s4[0]=tist s4[1]=ghan s4[2]=inor 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|artist w[0]|w[1]=artist|Meghan w[1]|w[2]=Meghan|Trainor pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Meghan w[1..4]=Trainor +artist w[-2]=play w[-1]=artist w[0]=Meghan w[1]=Trainor wl[-2]=play wl[-1]=artist wl[0]=meghan wl[1]=trainor pos[-2]=VB pos[-1]=NN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=LLLLLL shape[0]=ULLLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=p p1[-1]=a p1[0]=M p1[1]=T p2[-2]=pl p2[-1]=ar p2[0]=Me p2[1]=Tr p3[-2]=pla p3[-1]=art p3[0]=Meg p3[1]=Tra p4[-2]=play p4[-1]=arti p4[0]=Megh p4[1]=Trai s1[-2]=y s1[-1]=t s1[0]=n s1[1]=r s2[-2]=ay s2[-1]=st s2[0]=an s2[1]=or s3[-2]=lay s3[-1]=ist s3[0]=han s3[1]=nor s4[-2]=play s4[-1]=tist s4[0]=ghan s4[1]=inor 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|artist w[-1]|w[0]=artist|Meghan w[0]|w[1]=Meghan|Trainor pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=artist w[1..4]=Trainor +artist w[-2]=artist w[-1]=Meghan w[0]=Trainor wl[-2]=artist wl[-1]=meghan wl[0]=trainor pos[-2]=NN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLLLL shape[-1]=ULLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=a p1[-1]=M p1[0]=T p2[-2]=ar p2[-1]=Me p2[0]=Tr p3[-2]=art p3[-1]=Meg p3[0]=Tra p4[-2]=arti p4[-1]=Megh p4[0]=Trai s1[-2]=t s1[-1]=n s1[0]=r s2[-2]=st s2[-1]=an s2[0]=or s3[-2]=ist s3[-1]=han s3[0]=nor s4[-2]=tist s4[-1]=ghan s4[0]=inor 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=artist|Meghan w[-1]|w[0]=Meghan|Trainor pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=artist w[-4..-1]=Meghan __EOS__ + +O w[0]=can w[1]=you w[2]=open wl[0]=can wl[1]=you wl[2]=open pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=o p2[0]=ca p2[1]=yo p2[2]=op p3[0]=can p3[1]=you p3[2]=ope p4[0]= p4[1]= p4[2]=open s1[0]=n s1[1]=u s1[2]=n s2[0]=an s2[1]=ou s2[2]=en s3[0]=can s3[1]=you s3[2]=pen s4[0]= s4[1]= s4[2]=open 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|open pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=open w[1..4]=Careless w[1..4]=Whisper __BOS__ +O w[-1]=can w[0]=you w[1]=open w[2]=Careless wl[-1]=can wl[0]=you wl[1]=open wl[2]=careless pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=c p1[0]=y p1[1]=o p1[2]=C p2[-1]=ca p2[0]=yo p2[1]=op p2[2]=Ca p3[-1]=can p3[0]=you p3[1]=ope p3[2]=Car p4[-1]= p4[0]= p4[1]=open p4[2]=Care s1[-1]=n s1[0]=u s1[1]=n s1[2]=s s2[-1]=an s2[0]=ou s2[1]=en s2[2]=ss s3[-1]=can s3[0]=you s3[1]=pen s3[2]=ess s4[-1]= s4[0]= s4[1]=open s4[2]=less 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|open w[1]|w[2]=open|Careless pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[1..4]=open w[1..4]=Careless w[1..4]=Whisper w[1..4]=song +O w[-2]=can w[-1]=you w[0]=open w[1]=Careless w[2]=Whisper wl[-2]=can wl[-1]=you wl[0]=open wl[1]=careless wl[2]=whisper pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=c p1[-1]=y p1[0]=o p1[1]=C p1[2]=W p2[-2]=ca p2[-1]=yo p2[0]=op p2[1]=Ca p2[2]=Wh p3[-2]=can p3[-1]=you p3[0]=ope p3[1]=Car p3[2]=Whi p4[-2]= p4[-1]= p4[0]=open p4[1]=Care p4[2]=Whis s1[-2]=n s1[-1]=u s1[0]=n s1[1]=s s1[2]=r s2[-2]=an s2[-1]=ou s2[0]=en s2[1]=ss s2[2]=er s3[-2]=can s3[-1]=you s3[0]=pen s3[1]=ess s3[2]=per s4[-2]= s4[-1]= s4[0]=open s4[1]=less s4[2]=sper 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|open w[0]|w[1]=open|Careless w[1]|w[2]=Careless|Whisper pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[1..4]=Careless w[1..4]=Whisper w[1..4]=song +song w[-2]=you w[-1]=open w[0]=Careless w[1]=Whisper w[2]=song wl[-2]=you wl[-1]=open wl[0]=careless wl[1]=whisper wl[2]=song pos[-2]=PRP pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=ULLLLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=y p1[-1]=o p1[0]=C p1[1]=W p1[2]=s p2[-2]=yo p2[-1]=op p2[0]=Ca p2[1]=Wh p2[2]=so p3[-2]=you p3[-1]=ope p3[0]=Car p3[1]=Whi p3[2]=son p4[-2]= p4[-1]=open p4[0]=Care p4[1]=Whis p4[2]=song s1[-2]=u s1[-1]=n s1[0]=s s1[1]=r s1[2]=g s2[-2]=ou s2[-1]=en s2[0]=ss s2[1]=er s2[2]=ng s3[-2]=you s3[-1]=pen s3[0]=ess s3[1]=per s3[2]=ong s4[-2]= s4[-1]=open s4[0]=less s4[1]=sper s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|open w[-1]|w[0]=open|Careless w[0]|w[1]=Careless|Whisper w[1]|w[2]=Whisper|song pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=open w[1..4]=Whisper w[1..4]=song +song w[-2]=open w[-1]=Careless w[0]=Whisper w[1]=song wl[-2]=open wl[-1]=careless wl[0]=whisper wl[1]=song pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=ULLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-2]=o p1[-1]=C p1[0]=W p1[1]=s p2[-2]=op p2[-1]=Ca p2[0]=Wh p2[1]=so p3[-2]=ope p3[-1]=Car p3[0]=Whi p3[1]=son p4[-2]=open p4[-1]=Care p4[0]=Whis p4[1]=song s1[-2]=n s1[-1]=s s1[0]=r s1[1]=g s2[-2]=en s2[-1]=ss s2[0]=er s2[1]=ng s3[-2]=pen s3[-1]=ess s3[0]=per s3[1]=ong s4[-2]=open s4[-1]=less s4[0]=sper s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=open|Careless w[-1]|w[0]=Careless|Whisper w[0]|w[1]=Whisper|song pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=open w[-4..-1]=Careless w[1..4]=song +O w[-2]=Careless w[-1]=Whisper w[0]=song wl[-2]=careless wl[-1]=whisper wl[0]=song pos[-2]=NNP pos[-1]=NNP pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULLLLLLL shape[-1]=ULLLLLL shape[0]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=C p1[-1]=W p1[0]=s p2[-2]=Ca p2[-1]=Wh p2[0]=so p3[-2]=Car p3[-1]=Whi p3[0]=son p4[-2]=Care p4[-1]=Whis p4[0]=song s1[-2]=s s1[-1]=r s1[0]=g s2[-2]=ss s2[-1]=er s2[0]=ng s3[-2]=ess s3[-1]=per s3[0]=ong s4[-2]=less s4[-1]=sper s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Careless|Whisper w[-1]|w[0]=Whisper|song pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=you w[-4..-1]=open w[-4..-1]=Careless w[-4..-1]=Whisper __EOS__ + +O w[0]=play w[1]=song w[2]=Krystof wl[0]=play wl[1]=song wl[2]=krystof pos[0]=VBP pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=K p2[0]=pl p2[1]=so p2[2]=Kr p3[0]=pla p3[1]=son p3[2]=Kry p4[0]=play p4[1]=song p4[2]=Krys s1[0]=y s1[1]=g s1[2]=f s2[0]=ay s2[1]=ng s2[2]=of s3[0]=lay s3[1]=ong s3[2]=tof s4[0]=play s4[1]=song s4[2]=stof 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|Krystof pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=Krystof w[1..4]=Tak w[1..4]=Pojd __BOS__ +O w[-1]=play w[0]=song w[1]=Krystof w[2]=Tak wl[-1]=play wl[0]=song wl[1]=krystof wl[2]=tak pos[-1]=VBP pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=K p1[2]=T p2[-1]=pl p2[0]=so p2[1]=Kr p2[2]=Ta p3[-1]=pla p3[0]=son p3[1]=Kry p3[2]=Tak p4[-1]=play p4[0]=song p4[1]=Krys p4[2]= s1[-1]=y s1[0]=g s1[1]=f s1[2]=k s2[-1]=ay s2[0]=ng s2[1]=of s2[2]=ak s3[-1]=lay s3[0]=ong s3[1]=tof s3[2]=Tak s4[-1]=play s4[0]=song s4[1]=stof s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|Krystof w[1]|w[2]=Krystof|Tak pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Krystof w[1..4]=Tak w[1..4]=Pojd w[1..4]=Hlwdat +artist w[-2]=play w[-1]=song w[0]=Krystof w[1]=Tak w[2]=Pojd wl[-2]=play wl[-1]=song wl[0]=krystof wl[1]=tak wl[2]=pojd pos[-2]=VBP pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=K p1[1]=T p1[2]=P p2[-2]=pl p2[-1]=so p2[0]=Kr p2[1]=Ta p2[2]=Po p3[-2]=pla p3[-1]=son p3[0]=Kry p3[1]=Tak p3[2]=Poj p4[-2]=play p4[-1]=song p4[0]=Krys p4[1]= p4[2]=Pojd s1[-2]=y s1[-1]=g s1[0]=f s1[1]=k s1[2]=d s2[-2]=ay s2[-1]=ng s2[0]=of s2[1]=ak s2[2]=jd s3[-2]=lay s3[-1]=ong s3[0]=tof s3[1]=Tak s3[2]=ojd s4[-2]=play s4[-1]=song s4[0]=stof s4[1]= s4[2]=Pojd 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Krystof w[0]|w[1]=Krystof|Tak w[1]|w[2]=Tak|Pojd pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=Tak w[1..4]=Pojd w[1..4]=Hlwdat w[1..4]=Breh +song w[-2]=song w[-1]=Krystof w[0]=Tak w[1]=Pojd w[2]=Hlwdat wl[-2]=song wl[-1]=krystof wl[0]=tak wl[1]=pojd wl[2]=hlwdat pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULL shape[1]=ULLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=s p1[-1]=K p1[0]=T p1[1]=P p1[2]=H p2[-2]=so p2[-1]=Kr p2[0]=Ta p2[1]=Po p2[2]=Hl p3[-2]=son p3[-1]=Kry p3[0]=Tak p3[1]=Poj p3[2]=Hlw p4[-2]=song p4[-1]=Krys p4[0]= p4[1]=Pojd p4[2]=Hlwd s1[-2]=g s1[-1]=f s1[0]=k s1[1]=d s1[2]=t s2[-2]=ng s2[-1]=of s2[0]=ak s2[1]=jd s2[2]=at s3[-2]=ong s3[-1]=tof s3[0]=Tak s3[1]=ojd s3[2]=dat s4[-2]=song s4[-1]=stof s4[0]= s4[1]=Pojd s4[2]=wdat 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Krystof w[-1]|w[0]=Krystof|Tak w[0]|w[1]=Tak|Pojd w[1]|w[2]=Pojd|Hlwdat pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Krystof w[1..4]=Pojd w[1..4]=Hlwdat w[1..4]=Breh +song w[-2]=Krystof w[-1]=Tak w[0]=Pojd w[1]=Hlwdat w[2]=Breh wl[-2]=krystof wl[-1]=tak wl[0]=pojd wl[1]=hlwdat wl[2]=breh pos[-2]=NNP pos[-1]=NNP pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLLLL shape[-1]=ULL shape[0]=ULLL shape[1]=ULLLLL shape[2]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=K p1[-1]=T p1[0]=P p1[1]=H p1[2]=B p2[-2]=Kr p2[-1]=Ta p2[0]=Po p2[1]=Hl p2[2]=Br p3[-2]=Kry p3[-1]=Tak p3[0]=Poj p3[1]=Hlw p3[2]=Bre p4[-2]=Krys p4[-1]= p4[0]=Pojd p4[1]=Hlwd p4[2]=Breh s1[-2]=f s1[-1]=k s1[0]=d s1[1]=t s1[2]=h s2[-2]=of s2[-1]=ak s2[0]=jd s2[1]=at s2[2]=eh s3[-2]=tof s3[-1]=Tak s3[0]=ojd s3[1]=dat s3[2]=reh s4[-2]=stof s4[-1]= s4[0]=Pojd s4[1]=wdat s4[2]=Breh 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Krystof|Tak w[-1]|w[0]=Tak|Pojd w[0]|w[1]=Pojd|Hlwdat w[1]|w[2]=Hlwdat|Breh pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Krystof w[-4..-1]=Tak w[1..4]=Hlwdat w[1..4]=Breh +song w[-2]=Tak w[-1]=Pojd w[0]=Hlwdat w[1]=Breh wl[-2]=tak wl[-1]=pojd wl[0]=hlwdat wl[1]=breh pos[-2]=NNP pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=ULLL shape[0]=ULLLLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=T p1[-1]=P p1[0]=H p1[1]=B p2[-2]=Ta p2[-1]=Po p2[0]=Hl p2[1]=Br p3[-2]=Tak p3[-1]=Poj p3[0]=Hlw p3[1]=Bre p4[-2]= p4[-1]=Pojd p4[0]=Hlwd p4[1]=Breh s1[-2]=k s1[-1]=d s1[0]=t s1[1]=h s2[-2]=ak s2[-1]=jd s2[0]=at s2[1]=eh s3[-2]=Tak s3[-1]=ojd s3[0]=dat s3[1]=reh s4[-2]= s4[-1]=Pojd s4[0]=wdat s4[1]=Breh 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Tak|Pojd w[-1]|w[0]=Pojd|Hlwdat w[0]|w[1]=Hlwdat|Breh pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=song w[-4..-1]=Krystof w[-4..-1]=Tak w[-4..-1]=Pojd w[1..4]=Breh +song w[-2]=Pojd w[-1]=Hlwdat w[0]=Breh wl[-2]=pojd wl[-1]=hlwdat wl[0]=breh pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=ULLLLL shape[0]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=P p1[-1]=H p1[0]=B p2[-2]=Po p2[-1]=Hl p2[0]=Br p3[-2]=Poj p3[-1]=Hlw p3[0]=Bre p4[-2]=Pojd p4[-1]=Hlwd p4[0]=Breh s1[-2]=d s1[-1]=t s1[0]=h s2[-2]=jd s2[-1]=at s2[0]=eh s3[-2]=ojd s3[-1]=dat s3[0]=reh s4[-2]=Pojd s4[-1]=wdat s4[0]=Breh 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Pojd|Hlwdat w[-1]|w[0]=Hlwdat|Breh pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Krystof w[-4..-1]=Tak w[-4..-1]=Pojd w[-4..-1]=Hlwdat __EOS__ + +O w[0]=play w[1]=Foolin w[2]=by wl[0]=play wl[1]=foolin wl[2]=by pos[0]=VB pos[1]=NNP pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=F p1[2]=b p2[0]=pl p2[1]=Fo p2[2]=by p3[0]=pla p3[1]=Foo p3[2]= p4[0]=play p4[1]=Fool p4[2]= s1[0]=y s1[1]=n s1[2]=y s2[0]=ay s2[1]=in s2[2]=by s3[0]=lay s3[1]=lin s3[2]= s4[0]=play s4[1]=olin s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Foolin w[1]|w[2]=Foolin|by pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Foolin w[1..4]=by w[1..4]=Changing w[1..4]=Faces __BOS__ +song w[-1]=play w[0]=Foolin w[1]=by w[2]=Changing wl[-1]=play wl[0]=foolin wl[1]=by wl[2]=changing pos[-1]=VB pos[0]=NNP pos[1]=IN pos[2]=VBG chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLL shape[1]=LL shape[2]=ULLLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=F p1[1]=b p1[2]=C p2[-1]=pl p2[0]=Fo p2[1]=by p2[2]=Ch p3[-1]=pla p3[0]=Foo p3[1]= p3[2]=Cha p4[-1]=play p4[0]=Fool p4[1]= p4[2]=Chan s1[-1]=y s1[0]=n s1[1]=y s1[2]=g s2[-1]=ay s2[0]=in s2[1]=by s2[2]=ng s3[-1]=lay s3[0]=lin s3[1]= s3[2]=ing s4[-1]=play s4[0]=olin s4[1]= s4[2]=ging 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Foolin w[0]|w[1]=Foolin|by w[1]|w[2]=by|Changing pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|VBG chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Changing w[1..4]=Faces +O w[-2]=play w[-1]=Foolin w[0]=by w[1]=Changing w[2]=Faces wl[-2]=play wl[-1]=foolin wl[0]=by wl[1]=changing wl[2]=faces pos[-2]=VB pos[-1]=NNP pos[0]=IN pos[1]=VBG pos[2]=VBG chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=LL shape[1]=ULLLLLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=F p1[0]=b p1[1]=C p1[2]=F p2[-2]=pl p2[-1]=Fo p2[0]=by p2[1]=Ch p2[2]=Fa p3[-2]=pla p3[-1]=Foo p3[0]= p3[1]=Cha p3[2]=Fac p4[-2]=play p4[-1]=Fool p4[0]= p4[1]=Chan p4[2]=Face s1[-2]=y s1[-1]=n s1[0]=y s1[1]=g s1[2]=s s2[-2]=ay s2[-1]=in s2[0]=by s2[1]=ng s2[2]=es s3[-2]=lay s3[-1]=lin s3[0]= s3[1]=ing s3[2]=ces s4[-2]=play s4[-1]=olin s4[0]= s4[1]=ging s4[2]=aces 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Foolin w[-1]|w[0]=Foolin|by w[0]|w[1]=by|Changing w[1]|w[2]=Changing|Faces pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|VBG pos[1]|pos[2]=VBG|VBG chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Foolin w[1..4]=Changing w[1..4]=Faces +artist w[-2]=Foolin w[-1]=by w[0]=Changing w[1]=Faces wl[-2]=foolin wl[-1]=by wl[0]=changing wl[1]=faces pos[-2]=NNP pos[-1]=IN pos[0]=VBG pos[1]=VBG chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=ULLLLLLL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=F p1[-1]=b p1[0]=C p1[1]=F p2[-2]=Fo p2[-1]=by p2[0]=Ch p2[1]=Fa p3[-2]=Foo p3[-1]= p3[0]=Cha p3[1]=Fac p4[-2]=Fool p4[-1]= p4[0]=Chan p4[1]=Face s1[-2]=n s1[-1]=y s1[0]=g s1[1]=s s2[-2]=in s2[-1]=by s2[0]=ng s2[1]=es s3[-2]=lin s3[-1]= s3[0]=ing s3[1]=ces s4[-2]=olin s4[-1]= s4[0]=ging s4[1]=aces 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Foolin|by w[-1]|w[0]=by|Changing w[0]|w[1]=Changing|Faces pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|VBG pos[0]|pos[1]=VBG|VBG chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Foolin w[-4..-1]=by w[1..4]=Faces +artist w[-2]=by w[-1]=Changing w[0]=Faces wl[-2]=by wl[-1]=changing wl[0]=faces pos[-2]=IN pos[-1]=VBG pos[0]=VBG chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=C p1[0]=F p2[-2]=by p2[-1]=Ch p2[0]=Fa p3[-2]= p3[-1]=Cha p3[0]=Fac p4[-2]= p4[-1]=Chan p4[0]=Face s1[-2]=y s1[-1]=g s1[0]=s s2[-2]=by s2[-1]=ng s2[0]=es s3[-2]= s3[-1]=ing s3[0]=ces s4[-2]= s4[-1]=ging s4[0]=aces 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Changing w[-1]|w[0]=Changing|Faces pos[-2]|pos[-1]=IN|VBG pos[-1]|pos[0]=VBG|VBG chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Foolin w[-4..-1]=by w[-4..-1]=Changing __EOS__ + +O w[0]=play w[1]=music w[2]=for wl[0]=play wl[1]=music wl[2]=for pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=f p2[0]=pl p2[1]=mu p2[2]=fo p3[0]=pla p3[1]=mus p3[2]=for p4[0]=play p4[1]=musi p4[2]= s1[0]=y s1[1]=c s1[2]=r s2[0]=ay s2[1]=ic s2[2]=or s3[0]=lay s3[1]=sic s3[2]=for s4[0]=play s4[1]=usic s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|music w[1]|w[2]=music|for pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=music w[1..4]=for w[1..4]=me __BOS__ +O w[-1]=play w[0]=music w[1]=for w[2]=me wl[-1]=play wl[0]=music wl[1]=for wl[2]=me pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=m p1[1]=f p1[2]=m p2[-1]=pl p2[0]=mu p2[1]=fo p2[2]=me p3[-1]=pla p3[0]=mus p3[1]=for p3[2]= p4[-1]=play p4[0]=musi p4[1]= p4[2]= s1[-1]=y s1[0]=c s1[1]=r s1[2]=e s2[-1]=ay s2[0]=ic s2[1]=or s2[2]=me s3[-1]=lay s3[0]=sic s3[1]=for s3[2]= s4[-1]=play s4[0]=usic s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|music w[0]|w[1]=music|for w[1]|w[2]=for|me pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=for w[1..4]=me +O w[-2]=play w[-1]=music w[0]=for w[1]=me wl[-2]=play wl[-1]=music wl[0]=for wl[1]=me pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLL shape[1]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=m p1[0]=f p1[1]=m p2[-2]=pl p2[-1]=mu p2[0]=fo p2[1]=me p3[-2]=pla p3[-1]=mus p3[0]=for p3[1]= p4[-2]=play p4[-1]=musi p4[0]= p4[1]= s1[-2]=y s1[-1]=c s1[0]=r s1[1]=e s2[-2]=ay s2[-1]=ic s2[0]=or s2[1]=me s3[-2]=lay s3[-1]=sic s3[0]=for s3[1]= s4[-2]=play s4[-1]=usic s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|music w[-1]|w[0]=music|for w[0]|w[1]=for|me pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=music w[1..4]=me +O w[-2]=music w[-1]=for w[0]=me wl[-2]=music wl[-1]=for wl[0]=me pos[-2]=NN pos[-1]=IN pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=f p1[0]=m p2[-2]=mu p2[-1]=fo p2[0]=me p3[-2]=mus p3[-1]=for p3[0]= p4[-2]=musi p4[-1]= p4[0]= s1[-2]=c s1[-1]=r s1[0]=e s2[-2]=ic s2[-1]=or s2[0]=me s3[-2]=sic s3[-1]=for s3[0]= s4[-2]=usic s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=music|for w[-1]|w[0]=for|me pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=music w[-4..-1]=for __EOS__ + +O w[0]=play w[1]=album w[2]=Sounds wl[0]=play wl[1]=album wl[2]=sounds pos[0]=VBP pos[1]=NN pos[2]=VBZ chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=S p2[0]=pl p2[1]=al p2[2]=So p3[0]=pla p3[1]=alb p3[2]=Sou p4[0]=play p4[1]=albu p4[2]=Soun s1[0]=y s1[1]=m s1[2]=s s2[0]=ay s2[1]=um s2[2]=ds s3[0]=lay s3[1]=bum s3[2]=nds s4[0]=play s4[1]=lbum s4[2]=unds 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Sounds pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|VBZ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Sounds w[1..4]=Good w[1..4]=Field __BOS__ +O w[-1]=play w[0]=album w[1]=Sounds w[2]=Good wl[-1]=play wl[0]=album wl[1]=sounds wl[2]=good pos[-1]=VBP pos[0]=NN pos[1]=VBZ pos[2]=VBZ chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=a p1[1]=S p1[2]=G p2[-1]=pl p2[0]=al p2[1]=So p2[2]=Go p3[-1]=pla p3[0]=alb p3[1]=Sou p3[2]=Goo p4[-1]=play p4[0]=albu p4[1]=Soun p4[2]=Good s1[-1]=y s1[0]=m s1[1]=s s1[2]=d s2[-1]=ay s2[0]=um s2[1]=ds s2[2]=od s3[-1]=lay s3[0]=bum s3[1]=nds s3[2]=ood s4[-1]=play s4[0]=lbum s4[1]=unds s4[2]=Good 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Sounds w[1]|w[2]=Sounds|Good pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|VBZ pos[1]|pos[2]=VBZ|VBZ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Sounds w[1..4]=Good w[1..4]=Field w[1..4]=by +album w[-2]=play w[-1]=album w[0]=Sounds w[1]=Good w[2]=Field wl[-2]=play wl[-1]=album wl[0]=sounds wl[1]=good wl[2]=field pos[-2]=VBP pos[-1]=NN pos[0]=VBZ pos[1]=VBZ pos[2]=VBZ chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLL shape[1]=ULLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=S p1[1]=G p1[2]=F p2[-2]=pl p2[-1]=al p2[0]=So p2[1]=Go p2[2]=Fi p3[-2]=pla p3[-1]=alb p3[0]=Sou p3[1]=Goo p3[2]=Fie p4[-2]=play p4[-1]=albu p4[0]=Soun p4[1]=Good p4[2]=Fiel s1[-2]=y s1[-1]=m s1[0]=s s1[1]=d s1[2]=d s2[-2]=ay s2[-1]=um s2[0]=ds s2[1]=od s2[2]=ld s3[-2]=lay s3[-1]=bum s3[0]=nds s3[1]=ood s3[2]=eld s4[-2]=play s4[-1]=lbum s4[0]=unds s4[1]=Good s4[2]=ield 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Sounds w[0]|w[1]=Sounds|Good w[1]|w[2]=Good|Field pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|VBZ pos[0]|pos[1]=VBZ|VBZ pos[1]|pos[2]=VBZ|VBZ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=Good w[1..4]=Field w[1..4]=by w[1..4]=Five +album w[-2]=album w[-1]=Sounds w[0]=Good w[1]=Field w[2]=by wl[-2]=album wl[-1]=sounds wl[0]=good wl[1]=field wl[2]=by pos[-2]=NN pos[-1]=VBZ pos[0]=VBZ pos[1]=VBZ pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLL shape[-1]=ULLLLL shape[0]=ULLL shape[1]=ULLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=a p1[-1]=S p1[0]=G p1[1]=F p1[2]=b p2[-2]=al p2[-1]=So p2[0]=Go p2[1]=Fi p2[2]=by p3[-2]=alb p3[-1]=Sou p3[0]=Goo p3[1]=Fie p3[2]= p4[-2]=albu p4[-1]=Soun p4[0]=Good p4[1]=Fiel p4[2]= s1[-2]=m s1[-1]=s s1[0]=d s1[1]=d s1[2]=y s2[-2]=um s2[-1]=ds s2[0]=od s2[1]=ld s2[2]=by s3[-2]=bum s3[-1]=nds s3[0]=ood s3[1]=eld s3[2]= s4[-2]=lbum s4[-1]=unds s4[0]=Good s4[1]=ield s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Sounds w[-1]|w[0]=Sounds|Good w[0]|w[1]=Good|Field w[1]|w[2]=Field|by pos[-2]|pos[-1]=NN|VBZ pos[-1]|pos[0]=VBZ|VBZ pos[0]|pos[1]=VBZ|VBZ pos[1]|pos[2]=VBZ|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Sounds w[1..4]=Field w[1..4]=by w[1..4]=Five w[1..4]=Seconds +album w[-2]=Sounds w[-1]=Good w[0]=Field w[1]=by w[2]=Five wl[-2]=sounds wl[-1]=good wl[0]=field wl[1]=by wl[2]=five pos[-2]=VBZ pos[-1]=VBZ pos[0]=VBZ pos[1]=IN pos[2]=CD chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLLLL shape[-1]=ULLL shape[0]=ULLLL shape[1]=LL shape[2]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=S p1[-1]=G p1[0]=F p1[1]=b p1[2]=F p2[-2]=So p2[-1]=Go p2[0]=Fi p2[1]=by p2[2]=Fi p3[-2]=Sou p3[-1]=Goo p3[0]=Fie p3[1]= p3[2]=Fiv p4[-2]=Soun p4[-1]=Good p4[0]=Fiel p4[1]= p4[2]=Five s1[-2]=s s1[-1]=d s1[0]=d s1[1]=y s1[2]=e s2[-2]=ds s2[-1]=od s2[0]=ld s2[1]=by s2[2]=ve s3[-2]=nds s3[-1]=ood s3[0]=eld s3[1]= s3[2]=ive s4[-2]=unds s4[-1]=Good s4[0]=ield s4[1]= s4[2]=Five 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Sounds|Good w[-1]|w[0]=Good|Field w[0]|w[1]=Field|by w[1]|w[2]=by|Five pos[-2]|pos[-1]=VBZ|VBZ pos[-1]|pos[0]=VBZ|VBZ pos[0]|pos[1]=VBZ|IN pos[1]|pos[2]=IN|CD chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Sounds w[-4..-1]=Good w[1..4]=by w[1..4]=Five w[1..4]=Seconds w[1..4]=of +O w[-2]=Good w[-1]=Field w[0]=by w[1]=Five w[2]=Seconds wl[-2]=good wl[-1]=field wl[0]=by wl[1]=five wl[2]=seconds pos[-2]=VBZ pos[-1]=VBZ pos[0]=IN pos[1]=CD pos[2]=CD chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=G p1[-1]=F p1[0]=b p1[1]=F p1[2]=S p2[-2]=Go p2[-1]=Fi p2[0]=by p2[1]=Fi p2[2]=Se p3[-2]=Goo p3[-1]=Fie p3[0]= p3[1]=Fiv p3[2]=Sec p4[-2]=Good p4[-1]=Fiel p4[0]= p4[1]=Five p4[2]=Seco s1[-2]=d s1[-1]=d s1[0]=y s1[1]=e s1[2]=s s2[-2]=od s2[-1]=ld s2[0]=by s2[1]=ve s2[2]=ds s3[-2]=ood s3[-1]=eld s3[0]= s3[1]=ive s3[2]=nds s4[-2]=Good s4[-1]=ield s4[0]= s4[1]=Five s4[2]=onds 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Good|Field w[-1]|w[0]=Field|by w[0]|w[1]=by|Five w[1]|w[2]=Five|Seconds pos[-2]|pos[-1]=VBZ|VBZ pos[-1]|pos[0]=VBZ|IN pos[0]|pos[1]=IN|CD pos[1]|pos[2]=CD|CD chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=album w[-4..-1]=Sounds w[-4..-1]=Good w[-4..-1]=Field w[1..4]=Five w[1..4]=Seconds w[1..4]=of w[1..4]=Summer +artist w[-2]=Field w[-1]=by w[0]=Five w[1]=Seconds w[2]=of wl[-2]=field wl[-1]=by wl[0]=five wl[1]=seconds wl[2]=of pos[-2]=VBZ pos[-1]=IN pos[0]=CD pos[1]=CD pos[2]=CD chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLL shape[1]=ULLLLLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=F p1[-1]=b p1[0]=F p1[1]=S p1[2]=o p2[-2]=Fi p2[-1]=by p2[0]=Fi p2[1]=Se p2[2]=of p3[-2]=Fie p3[-1]= p3[0]=Fiv p3[1]=Sec p3[2]= p4[-2]=Fiel p4[-1]= p4[0]=Five p4[1]=Seco p4[2]= s1[-2]=d s1[-1]=y s1[0]=e s1[1]=s s1[2]=f s2[-2]=ld s2[-1]=by s2[0]=ve s2[1]=ds s2[2]=of s3[-2]=eld s3[-1]= s3[0]=ive s3[1]=nds s3[2]= s4[-2]=ield s4[-1]= s4[0]=Five s4[1]=onds s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Field|by w[-1]|w[0]=by|Five w[0]|w[1]=Five|Seconds w[1]|w[2]=Seconds|of pos[-2]|pos[-1]=VBZ|IN pos[-1]|pos[0]=IN|CD pos[0]|pos[1]=CD|CD pos[1]|pos[2]=CD|CD chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Sounds w[-4..-1]=Good w[-4..-1]=Field w[-4..-1]=by w[1..4]=Seconds w[1..4]=of w[1..4]=Summer +artist w[-2]=by w[-1]=Five w[0]=Seconds w[1]=of w[2]=Summer wl[-2]=by wl[-1]=five wl[0]=seconds wl[1]=of wl[2]=summer pos[-2]=IN pos[-1]=CD pos[0]=CD pos[1]=CD pos[2]=CD chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=ULLL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=b p1[-1]=F p1[0]=S p1[1]=o p1[2]=S p2[-2]=by p2[-1]=Fi p2[0]=Se p2[1]=of p2[2]=Su p3[-2]= p3[-1]=Fiv p3[0]=Sec p3[1]= p3[2]=Sum p4[-2]= p4[-1]=Five p4[0]=Seco p4[1]= p4[2]=Summ s1[-2]=y s1[-1]=e s1[0]=s s1[1]=f s1[2]=r s2[-2]=by s2[-1]=ve s2[0]=ds s2[1]=of s2[2]=er s3[-2]= s3[-1]=ive s3[0]=nds s3[1]= s3[2]=mer s4[-2]= s4[-1]=Five s4[0]=onds s4[1]= s4[2]=mmer 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Five w[-1]|w[0]=Five|Seconds w[0]|w[1]=Seconds|of w[1]|w[2]=of|Summer pos[-2]|pos[-1]=IN|CD pos[-1]|pos[0]=CD|CD pos[0]|pos[1]=CD|CD pos[1]|pos[2]=CD|CD chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Good w[-4..-1]=Field w[-4..-1]=by w[-4..-1]=Five w[1..4]=of w[1..4]=Summer +artist w[-2]=Five w[-1]=Seconds w[0]=of w[1]=Summer wl[-2]=five wl[-1]=seconds wl[0]=of wl[1]=summer pos[-2]=CD pos[-1]=CD pos[0]=CD pos[1]=CD chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=F p1[-1]=S p1[0]=o p1[1]=S p2[-2]=Fi p2[-1]=Se p2[0]=of p2[1]=Su p3[-2]=Fiv p3[-1]=Sec p3[0]= p3[1]=Sum p4[-2]=Five p4[-1]=Seco p4[0]= p4[1]=Summ s1[-2]=e s1[-1]=s s1[0]=f s1[1]=r s2[-2]=ve s2[-1]=ds s2[0]=of s2[1]=er s3[-2]=ive s3[-1]=nds s3[0]= s3[1]=mer s4[-2]=Five s4[-1]=onds s4[0]= s4[1]=mmer 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Five|Seconds w[-1]|w[0]=Seconds|of w[0]|w[1]=of|Summer pos[-2]|pos[-1]=CD|CD pos[-1]|pos[0]=CD|CD pos[0]|pos[1]=CD|CD chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=Field w[-4..-1]=by w[-4..-1]=Five w[-4..-1]=Seconds w[1..4]=Summer +artist w[-2]=Seconds w[-1]=of w[0]=Summer wl[-2]=seconds wl[-1]=of wl[0]=summer pos[-2]=CD pos[-1]=CD pos[0]=CD chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=S p1[-1]=o p1[0]=S p2[-2]=Se p2[-1]=of p2[0]=Su p3[-2]=Sec p3[-1]= p3[0]=Sum p4[-2]=Seco p4[-1]= p4[0]=Summ s1[-2]=s s1[-1]=f s1[0]=r s2[-2]=ds s2[-1]=of s2[0]=er s3[-2]=nds s3[-1]= s3[0]=mer s4[-2]=onds s4[-1]= s4[0]=mmer 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Seconds|of w[-1]|w[0]=of|Summer pos[-2]|pos[-1]=CD|CD pos[-1]|pos[0]=CD|CD chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Five w[-4..-1]=Seconds w[-4..-1]=of __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=Crazy +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=Crazy w[1..4]=performed +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=Crazy wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=crazy pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=C p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=Cr p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=Cra p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]=Craz s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=y s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=zy s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=azy s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]=razy 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|Crazy pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=Crazy w[1..4]=performed w[1..4]=by +O w[-2]=to w[-1]=listen w[0]=to w[1]=Crazy w[2]=performed wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=crazy wl[2]=performed pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=NNP pos[2]=VBN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=ULLLL shape[2]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=C p1[2]=p p2[-2]=to p2[-1]=li p2[0]=to p2[1]=Cr p2[2]=pe p3[-2]= p3[-1]=lis p3[0]= p3[1]=Cra p3[2]=per p4[-2]= p4[-1]=list p4[0]= p4[1]=Craz p4[2]=perf s1[-2]=o s1[-1]=n s1[0]=o s1[1]=y s1[2]=d s2[-2]=to s2[-1]=en s2[0]=to s2[1]=zy s2[2]=ed s3[-2]= s3[-1]=ten s3[0]= s3[1]=azy s3[2]=med s4[-2]= s4[-1]=sten s4[0]= s4[1]=razy s4[2]=rmed 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|Crazy w[1]|w[2]=Crazy|performed pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|VBN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=Crazy w[1..4]=performed w[1..4]=by w[1..4]=Aerosmith +song w[-2]=listen w[-1]=to w[0]=Crazy w[1]=performed w[2]=by wl[-2]=listen wl[-1]=to wl[0]=crazy wl[1]=performed wl[2]=by pos[-2]=VB pos[-1]=IN pos[0]=NNP pos[1]=VBN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=ULLLL shape[1]=LLLLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=C p1[1]=p p1[2]=b p2[-2]=li p2[-1]=to p2[0]=Cr p2[1]=pe p2[2]=by p3[-2]=lis p3[-1]= p3[0]=Cra p3[1]=per p3[2]= p4[-2]=list p4[-1]= p4[0]=Craz p4[1]=perf p4[2]= s1[-2]=n s1[-1]=o s1[0]=y s1[1]=d s1[2]=y s2[-2]=en s2[-1]=to s2[0]=zy s2[1]=ed s2[2]=by s3[-2]=ten s3[-1]= s3[0]=azy s3[1]=med s3[2]= s4[-2]=sten s4[-1]= s4[0]=razy s4[1]=rmed s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|Crazy w[0]|w[1]=Crazy|performed w[1]|w[2]=performed|by pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|VBN pos[1]|pos[2]=VBN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=performed w[1..4]=by w[1..4]=Aerosmith +O w[-2]=to w[-1]=Crazy w[0]=performed w[1]=by w[2]=Aerosmith wl[-2]=to wl[-1]=crazy wl[0]=performed wl[1]=by wl[2]=aerosmith pos[-2]=IN pos[-1]=NNP pos[0]=VBN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=LLLLLLLLL shape[1]=LL shape[2]=ULLLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=C p1[0]=p p1[1]=b p1[2]=A p2[-2]=to p2[-1]=Cr p2[0]=pe p2[1]=by p2[2]=Ae p3[-2]= p3[-1]=Cra p3[0]=per p3[1]= p3[2]=Aer p4[-2]= p4[-1]=Craz p4[0]=perf p4[1]= p4[2]=Aero s1[-2]=o s1[-1]=y s1[0]=d s1[1]=y s1[2]=h s2[-2]=to s2[-1]=zy s2[0]=ed s2[1]=by s2[2]=th s3[-2]= s3[-1]=azy s3[0]=med s3[1]= s3[2]=ith s4[-2]= s4[-1]=razy s4[0]=rmed s4[1]= s4[2]=mith 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|Crazy w[-1]|w[0]=Crazy|performed w[0]|w[1]=performed|by w[1]|w[2]=by|Aerosmith pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|VBN pos[0]|pos[1]=VBN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Crazy w[1..4]=by w[1..4]=Aerosmith +O w[-2]=Crazy w[-1]=performed w[0]=by w[1]=Aerosmith wl[-2]=crazy wl[-1]=performed wl[0]=by wl[1]=aerosmith pos[-2]=NNP pos[-1]=VBN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLL shape[-1]=LLLLLLLLL shape[0]=LL shape[1]=ULLLLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=C p1[-1]=p p1[0]=b p1[1]=A p2[-2]=Cr p2[-1]=pe p2[0]=by p2[1]=Ae p3[-2]=Cra p3[-1]=per p3[0]= p3[1]=Aer p4[-2]=Craz p4[-1]=perf p4[0]= p4[1]=Aero s1[-2]=y s1[-1]=d s1[0]=y s1[1]=h s2[-2]=zy s2[-1]=ed s2[0]=by s2[1]=th s3[-2]=azy s3[-1]=med s3[0]= s3[1]=ith s4[-2]=razy s4[-1]=rmed s4[0]= s4[1]=mith 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Crazy|performed w[-1]|w[0]=performed|by w[0]|w[1]=by|Aerosmith pos[-2]|pos[-1]=NNP|VBN pos[-1]|pos[0]=VBN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Crazy w[-4..-1]=performed w[1..4]=Aerosmith +artist w[-2]=performed w[-1]=by w[0]=Aerosmith wl[-2]=performed wl[-1]=by wl[0]=aerosmith pos[-2]=VBN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLLLLLL shape[-1]=LL shape[0]=ULLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=b p1[0]=A p2[-2]=pe p2[-1]=by p2[0]=Ae p3[-2]=per p3[-1]= p3[0]=Aer p4[-2]=perf p4[-1]= p4[0]=Aero s1[-2]=d s1[-1]=y s1[0]=h s2[-2]=ed s2[-1]=by s2[0]=th s3[-2]=med s3[-1]= s3[0]=ith s4[-2]=rmed s4[-1]= s4[0]=mith 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=performed|by w[-1]|w[0]=by|Aerosmith pos[-2]|pos[-1]=VBN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=to w[-4..-1]=Crazy w[-4..-1]=performed w[-4..-1]=by __EOS__ + +artist w[0]=Cher w[1]=Believe wl[0]=cher wl[1]=believe pos[0]=NNP pos[1]=VB chk[0]=I chk[1]=I shape[0]=ULLL shape[1]=ULLLLLL shaped[0]=UL shaped[1]=UL type[0]=InitUpper type[1]=InitUpper p1[0]=C p1[1]=B p2[0]=Ch p2[1]=Be p3[0]=Che p3[1]=Bel p4[0]=Cher p4[1]=Beli s1[0]=r s1[1]=e s2[0]=er s2[1]=ve s3[0]=her s3[1]=eve s4[0]=Cher s4[1]=ieve 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=yes iu[1]=yes au[0]=no au[1]=no al[0]=no al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=yes cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=Cher|Believe pos[0]|pos[1]=NNP|VB chk[0]|chk[1]=I|I shaped[0]|shaped[1]=UL|UL type[0]|type[1]=InitUpper|InitUpper w[1..4]=Believe __BOS__ +song w[-1]=Cher w[0]=Believe wl[-1]=cher wl[0]=believe pos[-1]=NNP pos[0]=VB chk[-1]=I chk[0]=I shape[-1]=ULLL shape[0]=ULLLLLL shaped[-1]=UL shaped[0]=UL type[-1]=InitUpper type[0]=InitUpper p1[-1]=C p1[0]=B p2[-1]=Ch p2[0]=Be p3[-1]=Che p3[0]=Bel p4[-1]=Cher p4[0]=Beli s1[-1]=r s1[0]=e s2[-1]=er s2[0]=ve s3[-1]=her s3[0]=eve s4[-1]=Cher s4[0]=ieve 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=yes iu[0]=yes au[-1]=no au[0]=no al[-1]=no al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=yes cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=Cher|Believe pos[-1]|pos[0]=NNP|VB chk[-1]|chk[0]=I|I shaped[-1]|shaped[0]=UL|UL type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Cher __EOS__ + +O w[0]=play w[1]=Now w[2]=Call wl[0]=play wl[1]=now wl[2]=call pos[0]=VB pos[1]=RB pos[2]=RB chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=ULLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=N p1[2]=C p2[0]=pl p2[1]=No p2[2]=Ca p3[0]=pla p3[1]=Now p3[2]=Cal p4[0]=play p4[1]= p4[2]=Call s1[0]=y s1[1]=w s1[2]=l s2[0]=ay s2[1]=ow s2[2]=ll s3[0]=lay s3[1]=Now s3[2]=all s4[0]=play s4[1]= s4[2]=Call 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Now w[1]|w[2]=Now|Call pos[0]|pos[1]=VB|RB pos[1]|pos[2]=RB|RB chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Now w[1..4]=Call w[1..4]=Mom __BOS__ +song w[-1]=play w[0]=Now w[1]=Call w[2]=Mom wl[-1]=play wl[0]=now wl[1]=call wl[2]=mom pos[-1]=VB pos[0]=RB pos[1]=RB pos[2]=RB chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULL shape[1]=ULLL shape[2]=ULL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=N p1[1]=C p1[2]=M p2[-1]=pl p2[0]=No p2[1]=Ca p2[2]=Mo p3[-1]=pla p3[0]=Now p3[1]=Cal p3[2]=Mom p4[-1]=play p4[0]= p4[1]=Call p4[2]= s1[-1]=y s1[0]=w s1[1]=l s1[2]=m s2[-1]=ay s2[0]=ow s2[1]=ll s2[2]=om s3[-1]=lay s3[0]=Now s3[1]=all s3[2]=Mom s4[-1]=play s4[0]= s4[1]=Call s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Now w[0]|w[1]=Now|Call w[1]|w[2]=Call|Mom pos[-1]|pos[0]=VB|RB pos[0]|pos[1]=RB|RB pos[1]|pos[2]=RB|RB chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Call w[1..4]=Mom +song w[-2]=play w[-1]=Now w[0]=Call w[1]=Mom wl[-2]=play wl[-1]=now wl[0]=call wl[1]=mom pos[-2]=VB pos[-1]=RB pos[0]=RB pos[1]=RB chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLL shape[1]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=p p1[-1]=N p1[0]=C p1[1]=M p2[-2]=pl p2[-1]=No p2[0]=Ca p2[1]=Mo p3[-2]=pla p3[-1]=Now p3[0]=Cal p3[1]=Mom p4[-2]=play p4[-1]= p4[0]=Call p4[1]= s1[-2]=y s1[-1]=w s1[0]=l s1[1]=m s2[-2]=ay s2[-1]=ow s2[0]=ll s2[1]=om s3[-2]=lay s3[-1]=Now s3[0]=all s3[1]=Mom s4[-2]=play s4[-1]= s4[0]=Call s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Now w[-1]|w[0]=Now|Call w[0]|w[1]=Call|Mom pos[-2]|pos[-1]=VB|RB pos[-1]|pos[0]=RB|RB pos[0]|pos[1]=RB|RB chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Now w[1..4]=Mom +song w[-2]=Now w[-1]=Call w[0]=Mom wl[-2]=now wl[-1]=call wl[0]=mom pos[-2]=RB pos[-1]=RB pos[0]=RB chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=ULLL shape[0]=ULL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=N p1[-1]=C p1[0]=M p2[-2]=No p2[-1]=Ca p2[0]=Mo p3[-2]=Now p3[-1]=Cal p3[0]=Mom p4[-2]= p4[-1]=Call p4[0]= s1[-2]=w s1[-1]=l s1[0]=m s2[-2]=ow s2[-1]=ll s2[0]=om s3[-2]=Now s3[-1]=all s3[0]=Mom s4[-2]= s4[-1]=Call s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Now|Call w[-1]|w[0]=Call|Mom pos[-2]|pos[-1]=RB|RB pos[-1]|pos[0]=RB|RB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Now w[-4..-1]=Call __EOS__ + +O w[0]=play w[1]=Yesterday w[2]=by wl[0]=play wl[1]=yesterday wl[2]=by pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=Y p1[2]=b p2[0]=pl p2[1]=Ye p2[2]=by p3[0]=pla p3[1]=Yes p3[2]= p4[0]=play p4[1]=Yest p4[2]= s1[0]=y s1[1]=y s1[2]=y s2[0]=ay s2[1]=ay s2[2]=by s3[0]=lay s3[1]=day s3[2]= s4[0]=play s4[1]=rday s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Yesterday w[1]|w[2]=Yesterday|by pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Yesterday w[1..4]=by w[1..4]=Beatles __BOS__ +song w[-1]=play w[0]=Yesterday w[1]=by w[2]=Beatles wl[-1]=play wl[0]=yesterday wl[1]=by wl[2]=beatles pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=Y p1[1]=b p1[2]=B p2[-1]=pl p2[0]=Ye p2[1]=by p2[2]=Be p3[-1]=pla p3[0]=Yes p3[1]= p3[2]=Bea p4[-1]=play p4[0]=Yest p4[1]= p4[2]=Beat s1[-1]=y s1[0]=y s1[1]=y s1[2]=s s2[-1]=ay s2[0]=ay s2[1]=by s2[2]=es s3[-1]=lay s3[0]=day s3[1]= s3[2]=les s4[-1]=play s4[0]=rday s4[1]= s4[2]=tles 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Yesterday w[0]|w[1]=Yesterday|by w[1]|w[2]=by|Beatles pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Beatles +O w[-2]=play w[-1]=Yesterday w[0]=by w[1]=Beatles wl[-2]=play wl[-1]=yesterday wl[0]=by wl[1]=beatles pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=ULLLLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=Y p1[0]=b p1[1]=B p2[-2]=pl p2[-1]=Ye p2[0]=by p2[1]=Be p3[-2]=pla p3[-1]=Yes p3[0]= p3[1]=Bea p4[-2]=play p4[-1]=Yest p4[0]= p4[1]=Beat s1[-2]=y s1[-1]=y s1[0]=y s1[1]=s s2[-2]=ay s2[-1]=ay s2[0]=by s2[1]=es s3[-2]=lay s3[-1]=day s3[0]= s3[1]=les s4[-2]=play s4[-1]=rday s4[0]= s4[1]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Yesterday w[-1]|w[0]=Yesterday|by w[0]|w[1]=by|Beatles pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Yesterday w[1..4]=Beatles +artist w[-2]=Yesterday w[-1]=by w[0]=Beatles wl[-2]=yesterday wl[-1]=by wl[0]=beatles pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=Y p1[-1]=b p1[0]=B p2[-2]=Ye p2[-1]=by p2[0]=Be p3[-2]=Yes p3[-1]= p3[0]=Bea p4[-2]=Yest p4[-1]= p4[0]=Beat s1[-2]=y s1[-1]=y s1[0]=s s2[-2]=ay s2[-1]=by s2[0]=es s3[-2]=day s3[-1]= s3[0]=les s4[-2]=rday s4[-1]= s4[0]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Yesterday|by w[-1]|w[0]=by|Beatles pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Yesterday w[-4..-1]=by __EOS__ + +artist w[0]=Bart w[1]=Baker w[2]=song wl[0]=bart wl[1]=baker wl[2]=song pos[0]=NNP pos[1]=NNP pos[2]=NN chk[0]=I chk[1]=I chk[2]=O shape[0]=ULLL shape[1]=ULLLL shape[2]=LLLL shaped[0]=UL shaped[1]=UL shaped[2]=L type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[0]=B p1[1]=B p1[2]=s p2[0]=Ba p2[1]=Ba p2[2]=so p3[0]=Bar p3[1]=Bak p3[2]=son p4[0]=Bart p4[1]=Bake p4[2]=song s1[0]=t s1[1]=r s1[2]=g s2[0]=rt s2[1]=er s2[2]=ng s3[0]=art s3[1]=ker s3[2]=ong s4[0]=Bart s4[1]=aker s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=Bart|Baker w[1]|w[2]=Baker|song pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Baker w[1..4]=song __BOS__ +artist w[-1]=Bart w[0]=Baker w[1]=song wl[-1]=bart wl[0]=baker wl[1]=song pos[-1]=NNP pos[0]=NNP pos[1]=NN chk[-1]=I chk[0]=I chk[1]=O shape[-1]=ULLL shape[0]=ULLLL shape[1]=LLLL shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-1]=B p1[0]=B p1[1]=s p2[-1]=Ba p2[0]=Ba p2[1]=so p3[-1]=Bar p3[0]=Bak p3[1]=son p4[-1]=Bart p4[0]=Bake p4[1]=song s1[-1]=t s1[0]=r s1[1]=g s2[-1]=rt s2[0]=er s2[1]=ng s3[-1]=art s3[0]=ker s3[1]=ong s4[-1]=Bart s4[0]=aker s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=no al[0]=no al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=Bart|Baker w[0]|w[1]=Baker|song pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=Bart w[1..4]=song +O w[-2]=Bart w[-1]=Baker w[0]=song wl[-2]=bart wl[-1]=baker wl[0]=song pos[-2]=NNP pos[-1]=NNP pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULLL shape[-1]=ULLLL shape[0]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=B p1[-1]=B p1[0]=s p2[-2]=Ba p2[-1]=Ba p2[0]=so p3[-2]=Bar p3[-1]=Bak p3[0]=son p4[-2]=Bart p4[-1]=Bake p4[0]=song s1[-2]=t s1[-1]=r s1[0]=g s2[-2]=rt s2[-1]=er s2[0]=ng s3[-2]=art s3[-1]=ker s3[0]=ong s4[-2]=Bart s4[-1]=aker s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Bart|Baker w[-1]|w[0]=Baker|song pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=Bart w[-4..-1]=Baker __EOS__ + +O w[0]=play w[1]=the w[2]=newest wl[0]=play wl[1]=the wl[2]=newest pos[0]=VB pos[1]=DT pos[2]=JJS chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=n p2[0]=pl p2[1]=th p2[2]=ne p3[0]=pla p3[1]=the p3[2]=new p4[0]=play p4[1]= p4[2]=newe s1[0]=y s1[1]=e s1[2]=t s2[0]=ay s2[1]=he s2[2]=st s3[0]=lay s3[1]=the s3[2]=est s4[0]=play s4[1]= s4[2]=west 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|newest pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJS chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=newest w[1..4]=song w[1..4]=by __BOS__ +O w[-1]=play w[0]=the w[1]=newest w[2]=song wl[-1]=play wl[0]=the wl[1]=newest wl[2]=song pos[-1]=VB pos[0]=DT pos[1]=JJS pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=n p1[2]=s p2[-1]=pl p2[0]=th p2[1]=ne p2[2]=so p3[-1]=pla p3[0]=the p3[1]=new p3[2]=son p4[-1]=play p4[0]= p4[1]=newe p4[2]=song s1[-1]=y s1[0]=e s1[1]=t s1[2]=g s2[-1]=ay s2[0]=he s2[1]=st s2[2]=ng s3[-1]=lay s3[0]=the s3[1]=est s3[2]=ong s4[-1]=play s4[0]= s4[1]=west s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|newest w[1]|w[2]=newest|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJS pos[1]|pos[2]=JJS|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=newest w[1..4]=song w[1..4]=by w[1..4]=Eminem +sort w[-2]=play w[-1]=the w[0]=newest w[1]=song w[2]=by wl[-2]=play wl[-1]=the wl[0]=newest wl[1]=song wl[2]=by pos[-2]=VB pos[-1]=DT pos[0]=JJS pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=n p1[1]=s p1[2]=b p2[-2]=pl p2[-1]=th p2[0]=ne p2[1]=so p2[2]=by p3[-2]=pla p3[-1]=the p3[0]=new p3[1]=son p3[2]= p4[-2]=play p4[-1]= p4[0]=newe p4[1]=song p4[2]= s1[-2]=y s1[-1]=e s1[0]=t s1[1]=g s1[2]=y s2[-2]=ay s2[-1]=he s2[0]=st s2[1]=ng s2[2]=by s3[-2]=lay s3[-1]=the s3[0]=est s3[1]=ong s3[2]= s4[-2]=play s4[-1]= s4[0]=west s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|newest w[0]|w[1]=newest|song w[1]|w[2]=song|by pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJS pos[0]|pos[1]=JJS|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=song w[1..4]=by w[1..4]=Eminem +O w[-2]=the w[-1]=newest w[0]=song w[1]=by w[2]=Eminem wl[-2]=the wl[-1]=newest wl[0]=song wl[1]=by wl[2]=eminem pos[-2]=DT pos[-1]=JJS pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=n p1[0]=s p1[1]=b p1[2]=E p2[-2]=th p2[-1]=ne p2[0]=so p2[1]=by p2[2]=Em p3[-2]=the p3[-1]=new p3[0]=son p3[1]= p3[2]=Emi p4[-2]= p4[-1]=newe p4[0]=song p4[1]= p4[2]=Emin s1[-2]=e s1[-1]=t s1[0]=g s1[1]=y s1[2]=m s2[-2]=he s2[-1]=st s2[0]=ng s2[1]=by s2[2]=em s3[-2]=the s3[-1]=est s3[0]=ong s3[1]= s3[2]=nem s4[-2]= s4[-1]=west s4[0]=song s4[1]= s4[2]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|newest w[-1]|w[0]=newest|song w[0]|w[1]=song|by w[1]|w[2]=by|Eminem pos[-2]|pos[-1]=DT|JJS pos[-1]|pos[0]=JJS|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=newest w[1..4]=by w[1..4]=Eminem +O w[-2]=newest w[-1]=song w[0]=by w[1]=Eminem wl[-2]=newest wl[-1]=song wl[0]=by wl[1]=eminem pos[-2]=JJS pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=n p1[-1]=s p1[0]=b p1[1]=E p2[-2]=ne p2[-1]=so p2[0]=by p2[1]=Em p3[-2]=new p3[-1]=son p3[0]= p3[1]=Emi p4[-2]=newe p4[-1]=song p4[0]= p4[1]=Emin s1[-2]=t s1[-1]=g s1[0]=y s1[1]=m s2[-2]=st s2[-1]=ng s2[0]=by s2[1]=em s3[-2]=est s3[-1]=ong s3[0]= s3[1]=nem s4[-2]=west s4[-1]=song s4[0]= s4[1]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=newest|song w[-1]|w[0]=song|by w[0]|w[1]=by|Eminem pos[-2]|pos[-1]=JJS|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=newest w[-4..-1]=song w[1..4]=Eminem +artist w[-2]=song w[-1]=by w[0]=Eminem wl[-2]=song wl[-1]=by wl[0]=eminem pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=b p1[0]=E p2[-2]=so p2[-1]=by p2[0]=Em p3[-2]=son p3[-1]= p3[0]=Emi p4[-2]=song p4[-1]= p4[0]=Emin s1[-2]=g s1[-1]=y s1[0]=m s2[-2]=ng s2[-1]=by s2[0]=em s3[-2]=ong s3[-1]= s3[0]=nem s4[-2]=song s4[-1]= s4[0]=inem 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|by w[-1]|w[0]=by|Eminem pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=newest w[-4..-1]=song w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=Laura w[2]=Pausini wl[0]=play wl[1]=laura wl[2]=pausini pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=L p1[2]=P p2[0]=pl p2[1]=La p2[2]=Pa p3[0]=pla p3[1]=Lau p3[2]=Pau p4[0]=play p4[1]=Laur p4[2]=Paus s1[0]=y s1[1]=a s1[2]=i s2[0]=ay s2[1]=ra s2[2]=ni s3[0]=lay s3[1]=ura s3[2]=ini s4[0]=play s4[1]=aura s4[2]=sini 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Laura w[1]|w[2]=Laura|Pausini pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Laura w[1..4]=Pausini __BOS__ +artist w[-1]=play w[0]=Laura w[1]=Pausini wl[-1]=play wl[0]=laura wl[1]=pausini pos[-1]=VB pos[0]=NNP pos[1]=NNP chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=L p1[1]=P p2[-1]=pl p2[0]=La p2[1]=Pa p3[-1]=pla p3[0]=Lau p3[1]=Pau p4[-1]=play p4[0]=Laur p4[1]=Paus s1[-1]=y s1[0]=a s1[1]=i s2[-1]=ay s2[0]=ra s2[1]=ni s3[-1]=lay s3[0]=ura s3[1]=ini s4[-1]=play s4[0]=aura s4[1]=sini 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|Laura w[0]|w[1]=Laura|Pausini pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Pausini +artist w[-2]=play w[-1]=Laura w[0]=Pausini wl[-2]=play wl[-1]=laura wl[0]=pausini pos[-2]=VB pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=L p1[0]=P p2[-2]=pl p2[-1]=La p2[0]=Pa p3[-2]=pla p3[-1]=Lau p3[0]=Pau p4[-2]=play p4[-1]=Laur p4[0]=Paus s1[-2]=y s1[-1]=a s1[0]=i s2[-2]=ay s2[-1]=ra s2[0]=ni s3[-2]=lay s3[-1]=ura s3[0]=ini s4[-2]=play s4[-1]=aura s4[0]=sini 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|Laura w[-1]|w[0]=Laura|Pausini pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Laura __EOS__ + +O w[0]=play w[1]=The w[2]=Police wl[0]=play wl[1]=the wl[2]=police pos[0]=VB pos[1]=DT pos[2]=DT chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=T p1[2]=P p2[0]=pl p2[1]=Th p2[2]=Po p3[0]=pla p3[1]=The p3[2]=Pol p4[0]=play p4[1]= p4[2]=Poli s1[0]=y s1[1]=e s1[2]=e s2[0]=ay s2[1]=he s2[2]=ce s3[0]=lay s3[1]=The s3[2]=ice s4[0]=play s4[1]= s4[2]=lice 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|The w[1]|w[2]=The|Police pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|DT chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=The w[1..4]=Police __BOS__ +artist w[-1]=play w[0]=The w[1]=Police wl[-1]=play wl[0]=the wl[1]=police pos[-1]=VB pos[0]=DT pos[1]=DT chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=T p1[1]=P p2[-1]=pl p2[0]=Th p2[1]=Po p3[-1]=pla p3[0]=The p3[1]=Pol p4[-1]=play p4[0]= p4[1]=Poli s1[-1]=y s1[0]=e s1[1]=e s2[-1]=ay s2[0]=he s2[1]=ce s3[-1]=lay s3[0]=The s3[1]=ice s4[-1]=play s4[0]= s4[1]=lice 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|The w[0]|w[1]=The|Police pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|DT chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Police +artist w[-2]=play w[-1]=The w[0]=Police wl[-2]=play wl[-1]=the wl[0]=police pos[-2]=VB pos[-1]=DT pos[0]=DT chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=T p1[0]=P p2[-2]=pl p2[-1]=Th p2[0]=Po p3[-2]=pla p3[-1]=The p3[0]=Pol p4[-2]=play p4[-1]= p4[0]=Poli s1[-2]=y s1[-1]=e s1[0]=e s2[-2]=ay s2[-1]=he s2[0]=ce s3[-2]=lay s3[-1]=The s3[0]=ice s4[-2]=play s4[-1]= s4[0]=lice 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|The w[-1]|w[0]=The|Police pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=The __EOS__ + +O w[0]=play w[1]=album w[2]=Fly wl[0]=play wl[1]=album wl[2]=fly pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=F p2[0]=pl p2[1]=al p2[2]=Fl p3[0]=pla p3[1]=alb p3[2]=Fly p4[0]=play p4[1]=albu p4[2]= s1[0]=y s1[1]=m s1[2]=y s2[0]=ay s2[1]=um s2[2]=ly s3[0]=lay s3[1]=bum s3[2]=Fly s4[0]=play s4[1]=lbum s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Fly pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Fly w[1..4]=by w[1..4]=Night __BOS__ +O w[-1]=play w[0]=album w[1]=Fly w[2]=by wl[-1]=play wl[0]=album wl[1]=fly wl[2]=by pos[-1]=VB pos[0]=NN pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=F p1[2]=b p2[-1]=pl p2[0]=al p2[1]=Fl p2[2]=by p3[-1]=pla p3[0]=alb p3[1]=Fly p3[2]= p4[-1]=play p4[0]=albu p4[1]= p4[2]= s1[-1]=y s1[0]=m s1[1]=y s1[2]=y s2[-1]=ay s2[0]=um s2[1]=ly s2[2]=by s3[-1]=lay s3[0]=bum s3[1]=Fly s3[2]= s4[-1]=play s4[0]=lbum s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Fly w[1]|w[2]=Fly|by pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Fly w[1..4]=by w[1..4]=Night w[1..4]=by +album w[-2]=play w[-1]=album w[0]=Fly w[1]=by w[2]=Night wl[-2]=play wl[-1]=album wl[0]=fly wl[1]=by wl[2]=night pos[-2]=VB pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=F p1[1]=b p1[2]=N p2[-2]=pl p2[-1]=al p2[0]=Fl p2[1]=by p2[2]=Ni p3[-2]=pla p3[-1]=alb p3[0]=Fly p3[1]= p3[2]=Nig p4[-2]=play p4[-1]=albu p4[0]= p4[1]= p4[2]=Nigh s1[-2]=y s1[-1]=m s1[0]=y s1[1]=y s1[2]=t s2[-2]=ay s2[-1]=um s2[0]=ly s2[1]=by s2[2]=ht s3[-2]=lay s3[-1]=bum s3[0]=Fly s3[1]= s3[2]=ght s4[-2]=play s4[-1]=lbum s4[0]= s4[1]= s4[2]=ight 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Fly w[0]|w[1]=Fly|by w[1]|w[2]=by|Night pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=by w[1..4]=Night w[1..4]=by w[1..4]=Rush +album w[-2]=album w[-1]=Fly w[0]=by w[1]=Night w[2]=by wl[-2]=album wl[-1]=fly wl[0]=by wl[1]=night wl[2]=by pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLL shape[-1]=ULL shape[0]=LL shape[1]=ULLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=a p1[-1]=F p1[0]=b p1[1]=N p1[2]=b p2[-2]=al p2[-1]=Fl p2[0]=by p2[1]=Ni p2[2]=by p3[-2]=alb p3[-1]=Fly p3[0]= p3[1]=Nig p3[2]= p4[-2]=albu p4[-1]= p4[0]= p4[1]=Nigh p4[2]= s1[-2]=m s1[-1]=y s1[0]=y s1[1]=t s1[2]=y s2[-2]=um s2[-1]=ly s2[0]=by s2[1]=ht s2[2]=by s3[-2]=bum s3[-1]=Fly s3[0]= s3[1]=ght s3[2]= s4[-2]=lbum s4[-1]= s4[0]= s4[1]=ight s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Fly w[-1]|w[0]=Fly|by w[0]|w[1]=by|Night w[1]|w[2]=Night|by pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Fly w[1..4]=Night w[1..4]=by w[1..4]=Rush +album w[-2]=Fly w[-1]=by w[0]=Night w[1]=by w[2]=Rush wl[-2]=fly wl[-1]=by wl[0]=night wl[1]=by wl[2]=rush pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULL shape[-1]=LL shape[0]=ULLLL shape[1]=LL shape[2]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=F p1[-1]=b p1[0]=N p1[1]=b p1[2]=R p2[-2]=Fl p2[-1]=by p2[0]=Ni p2[1]=by p2[2]=Ru p3[-2]=Fly p3[-1]= p3[0]=Nig p3[1]= p3[2]=Rus p4[-2]= p4[-1]= p4[0]=Nigh p4[1]= p4[2]=Rush s1[-2]=y s1[-1]=y s1[0]=t s1[1]=y s1[2]=h s2[-2]=ly s2[-1]=by s2[0]=ht s2[1]=by s2[2]=sh s3[-2]=Fly s3[-1]= s3[0]=ght s3[1]= s3[2]=ush s4[-2]= s4[-1]= s4[0]=ight s4[1]= s4[2]=Rush 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Fly|by w[-1]|w[0]=by|Night w[0]|w[1]=Night|by w[1]|w[2]=by|Rush pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Fly w[-4..-1]=by w[1..4]=by w[1..4]=Rush +O w[-2]=by w[-1]=Night w[0]=by w[1]=Rush wl[-2]=by wl[-1]=night wl[0]=by wl[1]=rush pos[-2]=NN pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=b p1[-1]=N p1[0]=b p1[1]=R p2[-2]=by p2[-1]=Ni p2[0]=by p2[1]=Ru p3[-2]= p3[-1]=Nig p3[0]= p3[1]=Rus p4[-2]= p4[-1]=Nigh p4[0]= p4[1]=Rush s1[-2]=y s1[-1]=t s1[0]=y s1[1]=h s2[-2]=by s2[-1]=ht s2[0]=by s2[1]=sh s3[-2]= s3[-1]=ght s3[0]= s3[1]=ush s4[-2]= s4[-1]=ight s4[0]= s4[1]=Rush 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=by|Night w[-1]|w[0]=Night|by w[0]|w[1]=by|Rush pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=album w[-4..-1]=Fly w[-4..-1]=by w[-4..-1]=Night w[1..4]=Rush +artist w[-2]=Night w[-1]=by w[0]=Rush wl[-2]=night wl[-1]=by wl[0]=rush pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=N p1[-1]=b p1[0]=R p2[-2]=Ni p2[-1]=by p2[0]=Ru p3[-2]=Nig p3[-1]= p3[0]=Rus p4[-2]=Nigh p4[-1]= p4[0]=Rush s1[-2]=t s1[-1]=y s1[0]=h s2[-2]=ht s2[-1]=by s2[0]=sh s3[-2]=ght s3[-1]= s3[0]=ush s4[-2]=ight s4[-1]= s4[0]=Rush 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Night|by w[-1]|w[0]=by|Rush pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Fly w[-4..-1]=by w[-4..-1]=Night w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=Focus w[2]=by wl[0]=play wl[1]=focus wl[2]=by pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=F p1[2]=b p2[0]=pl p2[1]=Fo p2[2]=by p3[0]=pla p3[1]=Foc p3[2]= p4[0]=play p4[1]=Focu p4[2]= s1[0]=y s1[1]=s s1[2]=y s2[0]=ay s2[1]=us s2[2]=by s3[0]=lay s3[1]=cus s3[2]= s4[0]=play s4[1]=ocus s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Focus w[1]|w[2]=Focus|by pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Focus w[1..4]=by w[1..4]=Ariana w[1..4]=Grande __BOS__ +song w[-1]=play w[0]=Focus w[1]=by w[2]=Ariana wl[-1]=play wl[0]=focus wl[1]=by wl[2]=ariana pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLL shape[1]=LL shape[2]=ULLLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=F p1[1]=b p1[2]=A p2[-1]=pl p2[0]=Fo p2[1]=by p2[2]=Ar p3[-1]=pla p3[0]=Foc p3[1]= p3[2]=Ari p4[-1]=play p4[0]=Focu p4[1]= p4[2]=Aria s1[-1]=y s1[0]=s s1[1]=y s1[2]=a s2[-1]=ay s2[0]=us s2[1]=by s2[2]=na s3[-1]=lay s3[0]=cus s3[1]= s3[2]=ana s4[-1]=play s4[0]=ocus s4[1]= s4[2]=iana 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Focus w[0]|w[1]=Focus|by w[1]|w[2]=by|Ariana pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Ariana w[1..4]=Grande +O w[-2]=play w[-1]=Focus w[0]=by w[1]=Ariana w[2]=Grande wl[-2]=play wl[-1]=focus wl[0]=by wl[1]=ariana wl[2]=grande pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=F p1[0]=b p1[1]=A p1[2]=G p2[-2]=pl p2[-1]=Fo p2[0]=by p2[1]=Ar p2[2]=Gr p3[-2]=pla p3[-1]=Foc p3[0]= p3[1]=Ari p3[2]=Gra p4[-2]=play p4[-1]=Focu p4[0]= p4[1]=Aria p4[2]=Gran s1[-2]=y s1[-1]=s s1[0]=y s1[1]=a s1[2]=e s2[-2]=ay s2[-1]=us s2[0]=by s2[1]=na s2[2]=de s3[-2]=lay s3[-1]=cus s3[0]= s3[1]=ana s3[2]=nde s4[-2]=play s4[-1]=ocus s4[0]= s4[1]=iana s4[2]=ande 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Focus w[-1]|w[0]=Focus|by w[0]|w[1]=by|Ariana w[1]|w[2]=Ariana|Grande pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Focus w[1..4]=Ariana w[1..4]=Grande +artist w[-2]=Focus w[-1]=by w[0]=Ariana w[1]=Grande wl[-2]=focus wl[-1]=by wl[0]=ariana wl[1]=grande pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=ULLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=F p1[-1]=b p1[0]=A p1[1]=G p2[-2]=Fo p2[-1]=by p2[0]=Ar p2[1]=Gr p3[-2]=Foc p3[-1]= p3[0]=Ari p3[1]=Gra p4[-2]=Focu p4[-1]= p4[0]=Aria p4[1]=Gran s1[-2]=s s1[-1]=y s1[0]=a s1[1]=e s2[-2]=us s2[-1]=by s2[0]=na s2[1]=de s3[-2]=cus s3[-1]= s3[0]=ana s3[1]=nde s4[-2]=ocus s4[-1]= s4[0]=iana s4[1]=ande 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Focus|by w[-1]|w[0]=by|Ariana w[0]|w[1]=Ariana|Grande pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Focus w[-4..-1]=by w[1..4]=Grande +artist w[-2]=by w[-1]=Ariana w[0]=Grande wl[-2]=by wl[-1]=ariana wl[0]=grande pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=A p1[0]=G p2[-2]=by p2[-1]=Ar p2[0]=Gr p3[-2]= p3[-1]=Ari p3[0]=Gra p4[-2]= p4[-1]=Aria p4[0]=Gran s1[-2]=y s1[-1]=a s1[0]=e s2[-2]=by s2[-1]=na s2[0]=de s3[-2]= s3[-1]=ana s3[0]=nde s4[-2]= s4[-1]=iana s4[0]=ande 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Ariana w[-1]|w[0]=Ariana|Grande pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Focus w[-4..-1]=by w[-4..-1]=Ariana __EOS__ + +song w[0]=Blank w[1]=Space w[2]=song wl[0]=blank wl[1]=space wl[2]=song pos[0]=NNP pos[1]=NNP pos[2]=NN chk[0]=I chk[1]=I chk[2]=O shape[0]=ULLLL shape[1]=ULLLL shape[2]=LLLL shaped[0]=UL shaped[1]=UL shaped[2]=L type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[0]=B p1[1]=S p1[2]=s p2[0]=Bl p2[1]=Sp p2[2]=so p3[0]=Bla p3[1]=Spa p3[2]=son p4[0]=Blan p4[1]=Spac p4[2]=song s1[0]=k s1[1]=e s1[2]=g s2[0]=nk s2[1]=ce s2[2]=ng s3[0]=ank s3[1]=ace s3[2]=ong s4[0]=lank s4[1]=pace s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=Blank|Space w[1]|w[2]=Space|song pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Space w[1..4]=song __BOS__ +song w[-1]=Blank w[0]=Space w[1]=song wl[-1]=blank wl[0]=space wl[1]=song pos[-1]=NNP pos[0]=NNP pos[1]=NN chk[-1]=I chk[0]=I chk[1]=O shape[-1]=ULLLL shape[0]=ULLLL shape[1]=LLLL shaped[-1]=UL shaped[0]=UL shaped[1]=L type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-1]=B p1[0]=S p1[1]=s p2[-1]=Bl p2[0]=Sp p2[1]=so p3[-1]=Bla p3[0]=Spa p3[1]=son p4[-1]=Blan p4[0]=Spac p4[1]=song s1[-1]=k s1[0]=e s1[1]=g s2[-1]=nk s2[0]=ce s2[1]=ng s3[-1]=ank s3[0]=ace s3[1]=ong s4[-1]=lank s4[0]=pace s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=no al[0]=no al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=Blank|Space w[0]|w[1]=Space|song pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=Blank w[1..4]=song +O w[-2]=Blank w[-1]=Space w[0]=song wl[-2]=blank wl[-1]=space wl[0]=song pos[-2]=NNP pos[-1]=NNP pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULLLL shape[-1]=ULLLL shape[0]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=B p1[-1]=S p1[0]=s p2[-2]=Bl p2[-1]=Sp p2[0]=so p3[-2]=Bla p3[-1]=Spa p3[0]=son p4[-2]=Blan p4[-1]=Spac p4[0]=song s1[-2]=k s1[-1]=e s1[0]=g s2[-2]=nk s2[-1]=ce s2[0]=ng s3[-2]=ank s3[-1]=ace s3[0]=ong s4[-2]=lank s4[-1]=pace s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Blank|Space w[-1]|w[0]=Space|song pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=Blank w[-4..-1]=Space __EOS__ + +song w[0]=Can't w[1]=Feel w[2]=My wl[0]=can't wl[1]=feel wl[2]=my pos[0]=MD pos[1]=MD pos[2]=MD chk[0]=I chk[1]=I chk[2]=I shape[0]=ULL'L shape[1]=ULLL shape[2]=UL shaped[0]=UL'L shaped[1]=UL shaped[2]=UL type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[0]=C p1[1]=F p1[2]=M p2[0]=Ca p2[1]=Fe p2[2]=My p3[0]=Can p3[1]=Fee p3[2]= p4[0]=Can' p4[1]=Feel p4[2]= s1[0]=t s1[1]=l s1[2]=y s2[0]='t s2[1]=el s2[2]=My s3[0]=n't s3[1]=eel s3[2]= s4[0]=an't s4[1]=Feel s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=Can't|Feel w[1]|w[2]=Feel|My pos[0]|pos[1]=MD|MD pos[1]|pos[2]=MD|MD chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=UL'L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Feel w[1..4]=My w[1..4]=Face w[1..4]=on __BOS__ +song w[-1]=Can't w[0]=Feel w[1]=My w[2]=Face wl[-1]=can't wl[0]=feel wl[1]=my wl[2]=face pos[-1]=MD pos[0]=MD pos[1]=MD pos[2]=MD chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-1]=ULL'L shape[0]=ULLL shape[1]=UL shape[2]=ULLL shaped[-1]=UL'L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=C p1[0]=F p1[1]=M p1[2]=F p2[-1]=Ca p2[0]=Fe p2[1]=My p2[2]=Fa p3[-1]=Can p3[0]=Fee p3[1]= p3[2]=Fac p4[-1]=Can' p4[0]=Feel p4[1]= p4[2]=Face s1[-1]=t s1[0]=l s1[1]=y s1[2]=e s2[-1]='t s2[0]=el s2[1]=My s2[2]=ce s3[-1]=n't s3[0]=eel s3[1]= s3[2]=ace s4[-1]=an't s4[0]=Feel s4[1]= s4[2]=Face 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=Can't|Feel w[0]|w[1]=Feel|My w[1]|w[2]=My|Face pos[-1]|pos[0]=MD|MD pos[0]|pos[1]=MD|MD pos[1]|pos[2]=MD|MD chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=UL'L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=Can't w[1..4]=My w[1..4]=Face w[1..4]=on w[1..4]=Google +song w[-2]=Can't w[-1]=Feel w[0]=My w[1]=Face w[2]=on wl[-2]=can't wl[-1]=feel wl[0]=my wl[1]=face wl[2]=on pos[-2]=MD pos[-1]=MD pos[0]=MD pos[1]=MD pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULL'L shape[-1]=ULLL shape[0]=UL shape[1]=ULLL shape[2]=LL shaped[-2]=UL'L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=C p1[-1]=F p1[0]=M p1[1]=F p1[2]=o p2[-2]=Ca p2[-1]=Fe p2[0]=My p2[1]=Fa p2[2]=on p3[-2]=Can p3[-1]=Fee p3[0]= p3[1]=Fac p3[2]= p4[-2]=Can' p4[-1]=Feel p4[0]= p4[1]=Face p4[2]= s1[-2]=t s1[-1]=l s1[0]=y s1[1]=e s1[2]=n s2[-2]='t s2[-1]=el s2[0]=My s2[1]=ce s2[2]=on s3[-2]=n't s3[-1]=eel s3[0]= s3[1]=ace s3[2]= s4[-2]=an't s4[-1]=Feel s4[0]= s4[1]=Face s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Can't|Feel w[-1]|w[0]=Feel|My w[0]|w[1]=My|Face w[1]|w[2]=Face|on pos[-2]|pos[-1]=MD|MD pos[-1]|pos[0]=MD|MD pos[0]|pos[1]=MD|MD pos[1]|pos[2]=MD|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL'L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Can't w[-4..-1]=Feel w[1..4]=Face w[1..4]=on w[1..4]=Google w[1..4]=Music +song w[-2]=Feel w[-1]=My w[0]=Face w[1]=on w[2]=Google wl[-2]=feel wl[-1]=my wl[0]=face wl[1]=on wl[2]=google pos[-2]=MD pos[-1]=MD pos[0]=MD pos[1]=NNP pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLL shape[-1]=UL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=F p1[-1]=M p1[0]=F p1[1]=o p1[2]=G p2[-2]=Fe p2[-1]=My p2[0]=Fa p2[1]=on p2[2]=Go p3[-2]=Fee p3[-1]= p3[0]=Fac p3[1]= p3[2]=Goo p4[-2]=Feel p4[-1]= p4[0]=Face p4[1]= p4[2]=Goog s1[-2]=l s1[-1]=y s1[0]=e s1[1]=n s1[2]=e s2[-2]=el s2[-1]=My s2[0]=ce s2[1]=on s2[2]=le s3[-2]=eel s3[-1]= s3[0]=ace s3[1]= s3[2]=gle s4[-2]=Feel s4[-1]= s4[0]=Face s4[1]= s4[2]=ogle 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Feel|My w[-1]|w[0]=My|Face w[0]|w[1]=Face|on w[1]|w[2]=on|Google pos[-2]|pos[-1]=MD|MD pos[-1]|pos[0]=MD|MD pos[0]|pos[1]=MD|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Can't w[-4..-1]=Feel w[-4..-1]=My w[1..4]=on w[1..4]=Google w[1..4]=Music +O w[-2]=My w[-1]=Face w[0]=on w[1]=Google w[2]=Music wl[-2]=my wl[-1]=face wl[0]=on wl[1]=google wl[2]=music pos[-2]=MD pos[-1]=MD pos[0]=NNP pos[1]=IN pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=UL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLL shape[2]=ULLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=M p1[-1]=F p1[0]=o p1[1]=G p1[2]=M p2[-2]=My p2[-1]=Fa p2[0]=on p2[1]=Go p2[2]=Mu p3[-2]= p3[-1]=Fac p3[0]= p3[1]=Goo p3[2]=Mus p4[-2]= p4[-1]=Face p4[0]= p4[1]=Goog p4[2]=Musi s1[-2]=y s1[-1]=e s1[0]=n s1[1]=e s1[2]=c s2[-2]=My s2[-1]=ce s2[0]=on s2[1]=le s2[2]=ic s3[-2]= s3[-1]=ace s3[0]= s3[1]=gle s3[2]=sic s4[-2]= s4[-1]=Face s4[0]= s4[1]=ogle s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=My|Face w[-1]|w[0]=Face|on w[0]|w[1]=on|Google w[1]|w[2]=Google|Music pos[-2]|pos[-1]=MD|MD pos[-1]|pos[0]=MD|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=Can't w[-4..-1]=Feel w[-4..-1]=My w[-4..-1]=Face w[1..4]=Google w[1..4]=Music +service w[-2]=Face w[-1]=on w[0]=Google w[1]=Music wl[-2]=face wl[-1]=on wl[0]=google wl[1]=music pos[-2]=MD pos[-1]=NNP pos[0]=IN pos[1]=IN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=F p1[-1]=o p1[0]=G p1[1]=M p2[-2]=Fa p2[-1]=on p2[0]=Go p2[1]=Mu p3[-2]=Fac p3[-1]= p3[0]=Goo p3[1]=Mus p4[-2]=Face p4[-1]= p4[0]=Goog p4[1]=Musi s1[-2]=e s1[-1]=n s1[0]=e s1[1]=c s2[-2]=ce s2[-1]=on s2[0]=le s2[1]=ic s3[-2]=ace s3[-1]= s3[0]=gle s3[1]=sic s4[-2]=Face s4[-1]= s4[0]=ogle s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Face|on w[-1]|w[0]=on|Google w[0]|w[1]=Google|Music pos[-2]|pos[-1]=MD|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Feel w[-4..-1]=My w[-4..-1]=Face w[-4..-1]=on w[1..4]=Music +service w[-2]=on w[-1]=Google w[0]=Music wl[-2]=on wl[-1]=google wl[0]=music pos[-2]=NNP pos[-1]=IN pos[0]=IN chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=o p1[-1]=G p1[0]=M p2[-2]=on p2[-1]=Go p2[0]=Mu p3[-2]= p3[-1]=Goo p3[0]=Mus p4[-2]= p4[-1]=Goog p4[0]=Musi s1[-2]=n s1[-1]=e s1[0]=c s2[-2]=on s2[-1]=le s2[0]=ic s3[-2]= s3[-1]=gle s3[0]=sic s4[-2]= s4[-1]=ogle s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=on|Google w[-1]|w[0]=Google|Music pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=My w[-4..-1]=Face w[-4..-1]=on w[-4..-1]=Google __EOS__ + +O w[0]=play w[1]=song w[2]=by wl[0]=play wl[1]=song wl[2]=by pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=son p3[2]= p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=y s2[0]=ay s2[1]=ng s2[2]=by s3[0]=lay s3[1]=ong s3[2]= s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|by pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=song w[1..4]=by w[1..4]=Shaggy __BOS__ +O w[-1]=play w[0]=song w[1]=by w[2]=Shaggy wl[-1]=play wl[0]=song wl[1]=by wl[2]=shaggy pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=S p2[-1]=pl p2[0]=so p2[1]=by p2[2]=Sh p3[-1]=pla p3[0]=son p3[1]= p3[2]=Sha p4[-1]=play p4[0]=song p4[1]= p4[2]=Shag s1[-1]=y s1[0]=g s1[1]=y s1[2]=y s2[-1]=ay s2[0]=ng s2[1]=by s2[2]=gy s3[-1]=lay s3[0]=ong s3[1]= s3[2]=ggy s4[-1]=play s4[0]=song s4[1]= s4[2]=aggy 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|by w[1]|w[2]=by|Shaggy pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Shaggy +O w[-2]=play w[-1]=song w[0]=by w[1]=Shaggy wl[-2]=play wl[-1]=song wl[0]=by wl[1]=shaggy pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=s p1[0]=b p1[1]=S p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=Sh p3[-2]=pla p3[-1]=son p3[0]= p3[1]=Sha p4[-2]=play p4[-1]=song p4[0]= p4[1]=Shag s1[-2]=y s1[-1]=g s1[0]=y s1[1]=y s2[-2]=ay s2[-1]=ng s2[0]=by s2[1]=gy s3[-2]=lay s3[-1]=ong s3[0]= s3[1]=ggy s4[-2]=play s4[-1]=song s4[0]= s4[1]=aggy 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|by w[0]|w[1]=by|Shaggy pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=Shaggy +artist w[-2]=song w[-1]=by w[0]=Shaggy wl[-2]=song wl[-1]=by wl[0]=shaggy pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=b p1[0]=S p2[-2]=so p2[-1]=by p2[0]=Sh p3[-2]=son p3[-1]= p3[0]=Sha p4[-2]=song p4[-1]= p4[0]=Shag s1[-2]=g s1[-1]=y s1[0]=y s2[-2]=ng s2[-1]=by s2[0]=gy s3[-2]=ong s3[-1]= s3[0]=ggy s4[-2]=song s4[-1]= s4[0]=aggy 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|by w[-1]|w[0]=by|Shaggy pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=Thinking w[2]=Out wl[0]=play wl[1]=thinking wl[2]=out pos[0]=VB pos[1]=VBG pos[2]=VBG chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=ULL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=T p1[2]=O p2[0]=pl p2[1]=Th p2[2]=Ou p3[0]=pla p3[1]=Thi p3[2]=Out p4[0]=play p4[1]=Thin p4[2]= s1[0]=y s1[1]=g s1[2]=t s2[0]=ay s2[1]=ng s2[2]=ut s3[0]=lay s3[1]=ing s3[2]=Out s4[0]=play s4[1]=king s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Thinking w[1]|w[2]=Thinking|Out pos[0]|pos[1]=VB|VBG pos[1]|pos[2]=VBG|VBG chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Thinking w[1..4]=Out w[1..4]=Loud w[1..4]=by __BOS__ +song w[-1]=play w[0]=Thinking w[1]=Out w[2]=Loud wl[-1]=play wl[0]=thinking wl[1]=out wl[2]=loud pos[-1]=VB pos[0]=VBG pos[1]=VBG pos[2]=VBG chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=ULL shape[2]=ULLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=T p1[1]=O p1[2]=L p2[-1]=pl p2[0]=Th p2[1]=Ou p2[2]=Lo p3[-1]=pla p3[0]=Thi p3[1]=Out p3[2]=Lou p4[-1]=play p4[0]=Thin p4[1]= p4[2]=Loud s1[-1]=y s1[0]=g s1[1]=t s1[2]=d s2[-1]=ay s2[0]=ng s2[1]=ut s2[2]=ud s3[-1]=lay s3[0]=ing s3[1]=Out s3[2]=oud s4[-1]=play s4[0]=king s4[1]= s4[2]=Loud 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Thinking w[0]|w[1]=Thinking|Out w[1]|w[2]=Out|Loud pos[-1]|pos[0]=VB|VBG pos[0]|pos[1]=VBG|VBG pos[1]|pos[2]=VBG|VBG chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Out w[1..4]=Loud w[1..4]=by w[1..4]=Ed +song w[-2]=play w[-1]=Thinking w[0]=Out w[1]=Loud w[2]=by wl[-2]=play wl[-1]=thinking wl[0]=out wl[1]=loud wl[2]=by pos[-2]=VB pos[-1]=VBG pos[0]=VBG pos[1]=VBG pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=ULL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=T p1[0]=O p1[1]=L p1[2]=b p2[-2]=pl p2[-1]=Th p2[0]=Ou p2[1]=Lo p2[2]=by p3[-2]=pla p3[-1]=Thi p3[0]=Out p3[1]=Lou p3[2]= p4[-2]=play p4[-1]=Thin p4[0]= p4[1]=Loud p4[2]= s1[-2]=y s1[-1]=g s1[0]=t s1[1]=d s1[2]=y s2[-2]=ay s2[-1]=ng s2[0]=ut s2[1]=ud s2[2]=by s3[-2]=lay s3[-1]=ing s3[0]=Out s3[1]=oud s3[2]= s4[-2]=play s4[-1]=king s4[0]= s4[1]=Loud s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Thinking w[-1]|w[0]=Thinking|Out w[0]|w[1]=Out|Loud w[1]|w[2]=Loud|by pos[-2]|pos[-1]=VB|VBG pos[-1]|pos[0]=VBG|VBG pos[0]|pos[1]=VBG|VBG pos[1]|pos[2]=VBG|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Thinking w[1..4]=Loud w[1..4]=by w[1..4]=Ed w[1..4]=Sheeran +song w[-2]=Thinking w[-1]=Out w[0]=Loud w[1]=by w[2]=Ed wl[-2]=thinking wl[-1]=out wl[0]=loud wl[1]=by wl[2]=ed pos[-2]=VBG pos[-1]=VBG pos[0]=VBG pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLLLLLL shape[-1]=ULL shape[0]=ULLL shape[1]=LL shape[2]=UL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=T p1[-1]=O p1[0]=L p1[1]=b p1[2]=E p2[-2]=Th p2[-1]=Ou p2[0]=Lo p2[1]=by p2[2]=Ed p3[-2]=Thi p3[-1]=Out p3[0]=Lou p3[1]= p3[2]= p4[-2]=Thin p4[-1]= p4[0]=Loud p4[1]= p4[2]= s1[-2]=g s1[-1]=t s1[0]=d s1[1]=y s1[2]=d s2[-2]=ng s2[-1]=ut s2[0]=ud s2[1]=by s2[2]=Ed s3[-2]=ing s3[-1]=Out s3[0]=oud s3[1]= s3[2]= s4[-2]=king s4[-1]= s4[0]=Loud s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Thinking|Out w[-1]|w[0]=Out|Loud w[0]|w[1]=Loud|by w[1]|w[2]=by|Ed pos[-2]|pos[-1]=VBG|VBG pos[-1]|pos[0]=VBG|VBG pos[0]|pos[1]=VBG|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Thinking w[-4..-1]=Out w[1..4]=by w[1..4]=Ed w[1..4]=Sheeran +O w[-2]=Out w[-1]=Loud w[0]=by w[1]=Ed w[2]=Sheeran wl[-2]=out wl[-1]=loud wl[0]=by wl[1]=ed wl[2]=sheeran pos[-2]=VBG pos[-1]=VBG pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULL shape[-1]=ULLL shape[0]=LL shape[1]=UL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=O p1[-1]=L p1[0]=b p1[1]=E p1[2]=S p2[-2]=Ou p2[-1]=Lo p2[0]=by p2[1]=Ed p2[2]=Sh p3[-2]=Out p3[-1]=Lou p3[0]= p3[1]= p3[2]=She p4[-2]= p4[-1]=Loud p4[0]= p4[1]= p4[2]=Shee s1[-2]=t s1[-1]=d s1[0]=y s1[1]=d s1[2]=n s2[-2]=ut s2[-1]=ud s2[0]=by s2[1]=Ed s2[2]=an s3[-2]=Out s3[-1]=oud s3[0]= s3[1]= s3[2]=ran s4[-2]= s4[-1]=Loud s4[0]= s4[1]= s4[2]=eran 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Out|Loud w[-1]|w[0]=Loud|by w[0]|w[1]=by|Ed w[1]|w[2]=Ed|Sheeran pos[-2]|pos[-1]=VBG|VBG pos[-1]|pos[0]=VBG|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Thinking w[-4..-1]=Out w[-4..-1]=Loud w[1..4]=Ed w[1..4]=Sheeran +artist w[-2]=Loud w[-1]=by w[0]=Ed w[1]=Sheeran wl[-2]=loud wl[-1]=by wl[0]=ed wl[1]=sheeran pos[-2]=VBG pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=LL shape[0]=UL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=L p1[-1]=b p1[0]=E p1[1]=S p2[-2]=Lo p2[-1]=by p2[0]=Ed p2[1]=Sh p3[-2]=Lou p3[-1]= p3[0]= p3[1]=She p4[-2]=Loud p4[-1]= p4[0]= p4[1]=Shee s1[-2]=d s1[-1]=y s1[0]=d s1[1]=n s2[-2]=ud s2[-1]=by s2[0]=Ed s2[1]=an s3[-2]=oud s3[-1]= s3[0]= s3[1]=ran s4[-2]=Loud s4[-1]= s4[0]= s4[1]=eran 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Loud|by w[-1]|w[0]=by|Ed w[0]|w[1]=Ed|Sheeran pos[-2]|pos[-1]=VBG|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Thinking w[-4..-1]=Out w[-4..-1]=Loud w[-4..-1]=by w[1..4]=Sheeran +artist w[-2]=by w[-1]=Ed w[0]=Sheeran wl[-2]=by wl[-1]=ed wl[0]=sheeran pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=UL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=E p1[0]=S p2[-2]=by p2[-1]=Ed p2[0]=Sh p3[-2]= p3[-1]= p3[0]=She p4[-2]= p4[-1]= p4[0]=Shee s1[-2]=y s1[-1]=d s1[0]=n s2[-2]=by s2[-1]=Ed s2[0]=an s3[-2]= s3[-1]= s3[0]=ran s4[-2]= s4[-1]= s4[0]=eran 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Ed w[-1]|w[0]=Ed|Sheeran pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Out w[-4..-1]=Loud w[-4..-1]=by w[-4..-1]=Ed __EOS__ + +O w[0]=play w[1]=a w[2]=song wl[0]=play wl[1]=a wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=s p2[0]=pl p2[1]= p2[2]=so p3[0]=pla p3[1]= p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=a s1[2]=g s2[0]=ay s2[1]= s2[2]=ng s3[0]=lay s3[1]= s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=song w[1..4]=from w[1..4]=my __BOS__ +O w[-1]=play w[0]=a w[1]=song w[2]=from wl[-1]=play wl[0]=a wl[1]=song wl[2]=from pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=L shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=s p1[2]=f p2[-1]=pl p2[0]= p2[1]=so p2[2]=fr p3[-1]=pla p3[0]= p3[1]=son p3[2]=fro p4[-1]=play p4[0]= p4[1]=song p4[2]=from s1[-1]=y s1[0]=a s1[1]=g s1[2]=m s2[-1]=ay s2[0]= s2[1]=ng s2[2]=om s3[-1]=lay s3[0]= s3[1]=ong s3[2]=rom s4[-1]=play s4[0]= s4[1]=song s4[2]=from 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|song w[1]|w[2]=song|from pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=song w[1..4]=from w[1..4]=my w[1..4]=music +O w[-2]=play w[-1]=a w[0]=song w[1]=from w[2]=my wl[-2]=play wl[-1]=a wl[0]=song wl[1]=from wl[2]=my pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=s p1[1]=f p1[2]=m p2[-2]=pl p2[-1]= p2[0]=so p2[1]=fr p2[2]=my p3[-2]=pla p3[-1]= p3[0]=son p3[1]=fro p3[2]= p4[-2]=play p4[-1]= p4[0]=song p4[1]=from p4[2]= s1[-2]=y s1[-1]=a s1[0]=g s1[1]=m s1[2]=y s2[-2]=ay s2[-1]= s2[0]=ng s2[1]=om s2[2]=my s3[-2]=lay s3[-1]= s3[0]=ong s3[1]=rom s3[2]= s4[-2]=play s4[-1]= s4[0]=song s4[1]=from s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|song w[0]|w[1]=song|from w[1]|w[2]=from|my pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[1..4]=from w[1..4]=my w[1..4]=music w[1..4]=library +O w[-2]=a w[-1]=song w[0]=from w[1]=my w[2]=music wl[-2]=a wl[-1]=song wl[0]=from wl[1]=my wl[2]=music pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=PRP$ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=L shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=s p1[0]=f p1[1]=m p1[2]=m p2[-2]= p2[-1]=so p2[0]=fr p2[1]=my p2[2]=mu p3[-2]= p3[-1]=son p3[0]=fro p3[1]= p3[2]=mus p4[-2]= p4[-1]=song p4[0]=from p4[1]= p4[2]=musi s1[-2]=a s1[-1]=g s1[0]=m s1[1]=y s1[2]=c s2[-2]= s2[-1]=ng s2[0]=om s2[1]=my s2[2]=ic s3[-2]= s3[-1]=ong s3[0]=rom s3[1]= s3[2]=sic s4[-2]= s4[-1]=song s4[0]=from s4[1]= s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=a|song w[-1]|w[0]=song|from w[0]|w[1]=from|my w[1]|w[2]=my|music pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[1..4]=my w[1..4]=music w[1..4]=library +O w[-2]=song w[-1]=from w[0]=my w[1]=music w[2]=library wl[-2]=song wl[-1]=from wl[0]=my wl[1]=music wl[2]=library pos[-2]=NN pos[-1]=IN pos[0]=PRP$ pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=LLLLL shape[2]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=f p1[0]=m p1[1]=m p1[2]=l p2[-2]=so p2[-1]=fr p2[0]=my p2[1]=mu p2[2]=li p3[-2]=son p3[-1]=fro p3[0]= p3[1]=mus p3[2]=lib p4[-2]=song p4[-1]=from p4[0]= p4[1]=musi p4[2]=libr s1[-2]=g s1[-1]=m s1[0]=y s1[1]=c s1[2]=y s2[-2]=ng s2[-1]=om s2[0]=my s2[1]=ic s2[2]=ry s3[-2]=ong s3[-1]=rom s3[0]= s3[1]=sic s3[2]=ary s4[-2]=song s4[-1]=from s4[0]= s4[1]=usic s4[2]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|from w[-1]|w[0]=from|my w[0]|w[1]=my|music w[1]|w[2]=music|library pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[-4..-1]=from w[1..4]=music w[1..4]=library +O w[-2]=from w[-1]=my w[0]=music w[1]=library wl[-2]=from wl[-1]=my wl[0]=music wl[1]=library pos[-2]=IN pos[-1]=PRP$ pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLL shape[1]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=f p1[-1]=m p1[0]=m p1[1]=l p2[-2]=fr p2[-1]=my p2[0]=mu p2[1]=li p3[-2]=fro p3[-1]= p3[0]=mus p3[1]=lib p4[-2]=from p4[-1]= p4[0]=musi p4[1]=libr s1[-2]=m s1[-1]=y s1[0]=c s1[1]=y s2[-2]=om s2[-1]=my s2[0]=ic s2[1]=ry s3[-2]=rom s3[-1]= s3[0]=sic s3[1]=ary s4[-2]=from s4[-1]= s4[0]=usic s4[1]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=from|my w[-1]|w[0]=my|music w[0]|w[1]=music|library pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=a w[-4..-1]=song w[-4..-1]=from w[-4..-1]=my w[1..4]=library +O w[-2]=my w[-1]=music w[0]=library wl[-2]=my wl[-1]=music wl[0]=library pos[-2]=PRP$ pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLLL shape[0]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=m p1[0]=l p2[-2]=my p2[-1]=mu p2[0]=li p3[-2]= p3[-1]=mus p3[0]=lib p4[-2]= p4[-1]=musi p4[0]=libr s1[-2]=y s1[-1]=c s1[0]=y s2[-2]=my s2[-1]=ic s2[0]=ry s3[-2]= s3[-1]=sic s3[0]=ary s4[-2]= s4[-1]=usic s4[0]=rary 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=my|music w[-1]|w[0]=music|library pos[-2]|pos[-1]=PRP$|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=song w[-4..-1]=from w[-4..-1]=my w[-4..-1]=music __EOS__ + +O w[0]=the w[1]=song w[2]=Grew wl[0]=the wl[1]=song wl[2]=grew pos[0]=DT pos[1]=NN pos[2]=VBN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLL shape[1]=LLLL shape[2]=ULLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=t p1[1]=s p1[2]=G p2[0]=th p2[1]=so p2[2]=Gr p3[0]=the p3[1]=son p3[2]=Gre p4[0]= p4[1]=song p4[2]=Grew s1[0]=e s1[1]=g s1[2]=w s2[0]=he s2[1]=ng s2[2]=ew s3[0]=the s3[1]=ong s3[2]=rew s4[0]= s4[1]=song s4[2]=Grew 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=the|song w[1]|w[2]=song|Grew pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|VBN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=Grew w[1..4]=by w[1..4]=Bruno __BOS__ +O w[-1]=the w[0]=song w[1]=Grew w[2]=by wl[-1]=the wl[0]=song wl[1]=grew wl[2]=by pos[-1]=DT pos[0]=NN pos[1]=VBN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLL shape[0]=LLLL shape[1]=ULLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=t p1[0]=s p1[1]=G p1[2]=b p2[-1]=th p2[0]=so p2[1]=Gr p2[2]=by p3[-1]=the p3[0]=son p3[1]=Gre p3[2]= p4[-1]= p4[0]=song p4[1]=Grew p4[2]= s1[-1]=e s1[0]=g s1[1]=w s1[2]=y s2[-1]=he s2[0]=ng s2[1]=ew s2[2]=by s3[-1]=the s3[0]=ong s3[1]=rew s3[2]= s4[-1]= s4[0]=song s4[1]=Grew s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=the|song w[0]|w[1]=song|Grew w[1]|w[2]=Grew|by pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|VBN pos[1]|pos[2]=VBN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=the w[1..4]=Grew w[1..4]=by w[1..4]=Bruno w[1..4]=Mars +song w[-2]=the w[-1]=song w[0]=Grew w[1]=by w[2]=Bruno wl[-2]=the wl[-1]=song wl[0]=grew wl[1]=by wl[2]=bruno pos[-2]=DT pos[-1]=NN pos[0]=VBN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=s p1[0]=G p1[1]=b p1[2]=B p2[-2]=th p2[-1]=so p2[0]=Gr p2[1]=by p2[2]=Br p3[-2]=the p3[-1]=son p3[0]=Gre p3[1]= p3[2]=Bru p4[-2]= p4[-1]=song p4[0]=Grew p4[1]= p4[2]=Brun s1[-2]=e s1[-1]=g s1[0]=w s1[1]=y s1[2]=o s2[-2]=he s2[-1]=ng s2[0]=ew s2[1]=by s2[2]=no s3[-2]=the s3[-1]=ong s3[0]=rew s3[1]= s3[2]=uno s4[-2]= s4[-1]=song s4[0]=Grew s4[1]= s4[2]=runo 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Grew w[0]|w[1]=Grew|by w[1]|w[2]=by|Bruno pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|VBN pos[0]|pos[1]=VBN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=song w[1..4]=by w[1..4]=Bruno w[1..4]=Mars +O w[-2]=song w[-1]=Grew w[0]=by w[1]=Bruno w[2]=Mars wl[-2]=song wl[-1]=grew wl[0]=by wl[1]=bruno wl[2]=mars pos[-2]=NN pos[-1]=VBN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=s p1[-1]=G p1[0]=b p1[1]=B p1[2]=M p2[-2]=so p2[-1]=Gr p2[0]=by p2[1]=Br p2[2]=Ma p3[-2]=son p3[-1]=Gre p3[0]= p3[1]=Bru p3[2]=Mar p4[-2]=song p4[-1]=Grew p4[0]= p4[1]=Brun p4[2]=Mars s1[-2]=g s1[-1]=w s1[0]=y s1[1]=o s1[2]=s s2[-2]=ng s2[-1]=ew s2[0]=by s2[1]=no s2[2]=rs s3[-2]=ong s3[-1]=rew s3[0]= s3[1]=uno s3[2]=ars s4[-2]=song s4[-1]=Grew s4[0]= s4[1]=runo s4[2]=Mars 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Grew w[-1]|w[0]=Grew|by w[0]|w[1]=by|Bruno w[1]|w[2]=Bruno|Mars pos[-2]|pos[-1]=NN|VBN pos[-1]|pos[0]=VBN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Grew w[1..4]=Bruno w[1..4]=Mars +artist w[-2]=Grew w[-1]=by w[0]=Bruno w[1]=Mars wl[-2]=grew wl[-1]=by wl[0]=bruno wl[1]=mars pos[-2]=VBN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=G p1[-1]=b p1[0]=B p1[1]=M p2[-2]=Gr p2[-1]=by p2[0]=Br p2[1]=Ma p3[-2]=Gre p3[-1]= p3[0]=Bru p3[1]=Mar p4[-2]=Grew p4[-1]= p4[0]=Brun p4[1]=Mars s1[-2]=w s1[-1]=y s1[0]=o s1[1]=s s2[-2]=ew s2[-1]=by s2[0]=no s2[1]=rs s3[-2]=rew s3[-1]= s3[0]=uno s3[1]=ars s4[-2]=Grew s4[-1]= s4[0]=runo s4[1]=Mars 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Grew|by w[-1]|w[0]=by|Bruno w[0]|w[1]=Bruno|Mars pos[-2]|pos[-1]=VBN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Grew w[-4..-1]=by w[1..4]=Mars +artist w[-2]=by w[-1]=Bruno w[0]=Mars wl[-2]=by wl[-1]=bruno wl[0]=mars pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=B p1[0]=M p2[-2]=by p2[-1]=Br p2[0]=Ma p3[-2]= p3[-1]=Bru p3[0]=Mar p4[-2]= p4[-1]=Brun p4[0]=Mars s1[-2]=y s1[-1]=o s1[0]=s s2[-2]=by s2[-1]=no s2[0]=rs s3[-2]= s3[-1]=uno s3[0]=ars s4[-2]= s4[-1]=runo s4[0]=Mars 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Bruno w[-1]|w[0]=Bruno|Mars pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=song w[-4..-1]=Grew w[-4..-1]=by w[-4..-1]=Bruno __EOS__ + +O w[0]=play w[1]=album w[2]=Appetite wl[0]=play wl[1]=album wl[2]=appetite pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=A p2[0]=pl p2[1]=al p2[2]=Ap p3[0]=pla p3[1]=alb p3[2]=App p4[0]=play p4[1]=albu p4[2]=Appe s1[0]=y s1[1]=m s1[2]=e s2[0]=ay s2[1]=um s2[2]=te s3[0]=lay s3[1]=bum s3[2]=ite s4[0]=play s4[1]=lbum s4[2]=tite 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Appetite pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Appetite w[1..4]=for w[1..4]=destruction __BOS__ +O w[-1]=play w[0]=album w[1]=Appetite w[2]=for wl[-1]=play wl[0]=album wl[1]=appetite wl[2]=for pos[-1]=VB pos[0]=NN pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=A p1[2]=f p2[-1]=pl p2[0]=al p2[1]=Ap p2[2]=fo p3[-1]=pla p3[0]=alb p3[1]=App p3[2]=for p4[-1]=play p4[0]=albu p4[1]=Appe p4[2]= s1[-1]=y s1[0]=m s1[1]=e s1[2]=r s2[-1]=ay s2[0]=um s2[1]=te s2[2]=or s3[-1]=lay s3[0]=bum s3[1]=ite s3[2]=for s4[-1]=play s4[0]=lbum s4[1]=tite s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Appetite w[1]|w[2]=Appetite|for pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Appetite w[1..4]=for w[1..4]=destruction w[1..4]=by +album w[-2]=play w[-1]=album w[0]=Appetite w[1]=for w[2]=destruction wl[-2]=play wl[-1]=album wl[0]=appetite wl[1]=for wl[2]=destruction pos[-2]=VB pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLLLL shape[1]=LLL shape[2]=LLLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=A p1[1]=f p1[2]=d p2[-2]=pl p2[-1]=al p2[0]=Ap p2[1]=fo p2[2]=de p3[-2]=pla p3[-1]=alb p3[0]=App p3[1]=for p3[2]=des p4[-2]=play p4[-1]=albu p4[0]=Appe p4[1]= p4[2]=dest s1[-2]=y s1[-1]=m s1[0]=e s1[1]=r s1[2]=n s2[-2]=ay s2[-1]=um s2[0]=te s2[1]=or s2[2]=on s3[-2]=lay s3[-1]=bum s3[0]=ite s3[1]=for s3[2]=ion s4[-2]=play s4[-1]=lbum s4[0]=tite s4[1]= s4[2]=tion 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Appetite w[0]|w[1]=Appetite|for w[1]|w[2]=for|destruction pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[1..4]=for w[1..4]=destruction w[1..4]=by w[1..4]=Guns +album w[-2]=album w[-1]=Appetite w[0]=for w[1]=destruction w[2]=by wl[-2]=album wl[-1]=appetite wl[0]=for wl[1]=destruction wl[2]=by pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLL shape[-1]=ULLLLLLL shape[0]=LLL shape[1]=LLLLLLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=A p1[0]=f p1[1]=d p1[2]=b p2[-2]=al p2[-1]=Ap p2[0]=fo p2[1]=de p2[2]=by p3[-2]=alb p3[-1]=App p3[0]=for p3[1]=des p3[2]= p4[-2]=albu p4[-1]=Appe p4[0]= p4[1]=dest p4[2]= s1[-2]=m s1[-1]=e s1[0]=r s1[1]=n s1[2]=y s2[-2]=um s2[-1]=te s2[0]=or s2[1]=on s2[2]=by s3[-2]=bum s3[-1]=ite s3[0]=for s3[1]=ion s3[2]= s4[-2]=lbum s4[-1]=tite s4[0]= s4[1]=tion s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Appetite w[-1]|w[0]=Appetite|for w[0]|w[1]=for|destruction w[1]|w[2]=destruction|by pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Appetite w[1..4]=destruction w[1..4]=by w[1..4]=Guns w[1..4]=n +album w[-2]=Appetite w[-1]=for w[0]=destruction w[1]=by w[2]=Guns wl[-2]=appetite wl[-1]=for wl[0]=destruction wl[1]=by wl[2]=guns pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=IN pos[2]=NNPS chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLLLLLL shape[-1]=LLL shape[0]=LLLLLLLLLLL shape[1]=LL shape[2]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=A p1[-1]=f p1[0]=d p1[1]=b p1[2]=G p2[-2]=Ap p2[-1]=fo p2[0]=de p2[1]=by p2[2]=Gu p3[-2]=App p3[-1]=for p3[0]=des p3[1]= p3[2]=Gun p4[-2]=Appe p4[-1]= p4[0]=dest p4[1]= p4[2]=Guns s1[-2]=e s1[-1]=r s1[0]=n s1[1]=y s1[2]=s s2[-2]=te s2[-1]=or s2[0]=on s2[1]=by s2[2]=ns s3[-2]=ite s3[-1]=for s3[0]=ion s3[1]= s3[2]=uns s4[-2]=tite s4[-1]= s4[0]=tion s4[1]= s4[2]=Guns 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Appetite|for w[-1]|w[0]=for|destruction w[0]|w[1]=destruction|by w[1]|w[2]=by|Guns pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Appetite w[-4..-1]=for w[1..4]=by w[1..4]=Guns w[1..4]=n w[1..4]=Roses +O w[-2]=for w[-1]=destruction w[0]=by w[1]=Guns w[2]=n wl[-2]=for wl[-1]=destruction wl[0]=by wl[1]=guns wl[2]=n pos[-2]=NN pos[-1]=NN pos[0]=IN pos[1]=NNPS pos[2]=NNPS chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLLLLLLLLL shape[0]=LL shape[1]=ULLL shape[2]=L shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=f p1[-1]=d p1[0]=b p1[1]=G p1[2]=n p2[-2]=fo p2[-1]=de p2[0]=by p2[1]=Gu p2[2]= p3[-2]=for p3[-1]=des p3[0]= p3[1]=Gun p3[2]= p4[-2]= p4[-1]=dest p4[0]= p4[1]=Guns p4[2]= s1[-2]=r s1[-1]=n s1[0]=y s1[1]=s s1[2]=n s2[-2]=or s2[-1]=on s2[0]=by s2[1]=ns s2[2]= s3[-2]=for s3[-1]=ion s3[0]= s3[1]=uns s3[2]= s4[-2]= s4[-1]=tion s4[0]= s4[1]=Guns s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=for|destruction w[-1]|w[0]=destruction|by w[0]|w[1]=by|Guns w[1]|w[2]=Guns|n pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=album w[-4..-1]=Appetite w[-4..-1]=for w[-4..-1]=destruction w[1..4]=Guns w[1..4]=n w[1..4]=Roses +artist w[-2]=destruction w[-1]=by w[0]=Guns w[1]=n w[2]=Roses wl[-2]=destruction wl[-1]=by wl[0]=guns wl[1]=n wl[2]=roses pos[-2]=NN pos[-1]=IN pos[0]=NNPS pos[1]=NNPS pos[2]=NNPS chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLLLLLLLLL shape[-1]=LL shape[0]=ULLL shape[1]=L shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=d p1[-1]=b p1[0]=G p1[1]=n p1[2]=R p2[-2]=de p2[-1]=by p2[0]=Gu p2[1]= p2[2]=Ro p3[-2]=des p3[-1]= p3[0]=Gun p3[1]= p3[2]=Ros p4[-2]=dest p4[-1]= p4[0]=Guns p4[1]= p4[2]=Rose s1[-2]=n s1[-1]=y s1[0]=s s1[1]=n s1[2]=s s2[-2]=on s2[-1]=by s2[0]=ns s2[1]= s2[2]=es s3[-2]=ion s3[-1]= s3[0]=uns s3[1]= s3[2]=ses s4[-2]=tion s4[-1]= s4[0]=Guns s4[1]= s4[2]=oses 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=destruction|by w[-1]|w[0]=by|Guns w[0]|w[1]=Guns|n w[1]|w[2]=n|Roses pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNPS pos[0]|pos[1]=NNPS|NNPS pos[1]|pos[2]=NNPS|NNPS chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Appetite w[-4..-1]=for w[-4..-1]=destruction w[-4..-1]=by w[1..4]=n w[1..4]=Roses +artist w[-2]=by w[-1]=Guns w[0]=n w[1]=Roses wl[-2]=by wl[-1]=guns wl[0]=n wl[1]=roses pos[-2]=IN pos[-1]=NNPS pos[0]=NNPS pos[1]=NNPS chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LL shape[-1]=ULLL shape[0]=L shape[1]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=b p1[-1]=G p1[0]=n p1[1]=R p2[-2]=by p2[-1]=Gu p2[0]= p2[1]=Ro p3[-2]= p3[-1]=Gun p3[0]= p3[1]=Ros p4[-2]= p4[-1]=Guns p4[0]= p4[1]=Rose s1[-2]=y s1[-1]=s s1[0]=n s1[1]=s s2[-2]=by s2[-1]=ns s2[0]= s2[1]=es s3[-2]= s3[-1]=uns s3[0]= s3[1]=ses s4[-2]= s4[-1]=Guns s4[0]= s4[1]=oses 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=by|Guns w[-1]|w[0]=Guns|n w[0]|w[1]=n|Roses pos[-2]|pos[-1]=IN|NNPS pos[-1]|pos[0]=NNPS|NNPS pos[0]|pos[1]=NNPS|NNPS chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=for w[-4..-1]=destruction w[-4..-1]=by w[-4..-1]=Guns w[1..4]=Roses +artist w[-2]=Guns w[-1]=n w[0]=Roses wl[-2]=guns wl[-1]=n wl[0]=roses pos[-2]=NNPS pos[-1]=NNPS pos[0]=NNPS chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=L shape[0]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=G p1[-1]=n p1[0]=R p2[-2]=Gu p2[-1]= p2[0]=Ro p3[-2]=Gun p3[-1]= p3[0]=Ros p4[-2]=Guns p4[-1]= p4[0]=Rose s1[-2]=s s1[-1]=n s1[0]=s s2[-2]=ns s2[-1]= s2[0]=es s3[-2]=uns s3[-1]= s3[0]=ses s4[-2]=Guns s4[-1]= s4[0]=oses 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Guns|n w[-1]|w[0]=n|Roses pos[-2]|pos[-1]=NNPS|NNPS pos[-1]|pos[0]=NNPS|NNPS chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=destruction w[-4..-1]=by w[-4..-1]=Guns w[-4..-1]=n __EOS__ + +O w[0]=play w[1]=album w[2]=Horses wl[0]=play wl[1]=album wl[2]=horses pos[0]=VBP pos[1]=NN pos[2]=NNS chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=H p2[0]=pl p2[1]=al p2[2]=Ho p3[0]=pla p3[1]=alb p3[2]=Hor p4[0]=play p4[1]=albu p4[2]=Hors s1[0]=y s1[1]=m s1[2]=s s2[0]=ay s2[1]=um s2[2]=es s3[0]=lay s3[1]=bum s3[2]=ses s4[0]=play s4[1]=lbum s4[2]=rses 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Horses pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NNS chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Horses __BOS__ +O w[-1]=play w[0]=album w[1]=Horses wl[-1]=play wl[0]=album wl[1]=horses pos[-1]=VBP pos[0]=NN pos[1]=NNS chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-1]=p p1[0]=a p1[1]=H p2[-1]=pl p2[0]=al p2[1]=Ho p3[-1]=pla p3[0]=alb p3[1]=Hor p4[-1]=play p4[0]=albu p4[1]=Hors s1[-1]=y s1[0]=m s1[1]=s s2[-1]=ay s2[0]=um s2[1]=es s3[-1]=lay s3[0]=bum s3[1]=ses s4[-1]=play s4[0]=lbum s4[1]=rses 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Horses pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NNS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=Horses +album w[-2]=play w[-1]=album w[0]=Horses wl[-2]=play wl[-1]=album wl[0]=horses pos[-2]=VBP pos[-1]=NN pos[0]=NNS chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=a p1[0]=H p2[-2]=pl p2[-1]=al p2[0]=Ho p3[-2]=pla p3[-1]=alb p3[0]=Hor p4[-2]=play p4[-1]=albu p4[0]=Hors s1[-2]=y s1[-1]=m s1[0]=s s2[-2]=ay s2[-1]=um s2[0]=es s3[-2]=lay s3[-1]=bum s3[0]=ses s4[-2]=play s4[-1]=lbum s4[0]=rses 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Horses pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album __EOS__ + +O w[0]=play w[1]=me w[2]=some wl[0]=play wl[1]=me wl[2]=some pos[0]=VB pos[1]=PRP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=s p2[0]=pl p2[1]=me p2[2]=so p3[0]=pla p3[1]= p3[2]=som p4[0]=play p4[1]= p4[2]=some s1[0]=y s1[1]=e s1[2]=e s2[0]=ay s2[1]=me s2[2]=me s3[0]=lay s3[1]= s3[2]=ome s4[0]=play s4[1]= s4[2]=some 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|me w[1]|w[2]=me|some pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=me w[1..4]=some w[1..4]=Michael w[1..4]=Jackson __BOS__ +O w[-1]=play w[0]=me w[1]=some w[2]=Michael wl[-1]=play wl[0]=me wl[1]=some wl[2]=michael pos[-1]=VB pos[0]=PRP pos[1]=DT pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=m p1[1]=s p1[2]=M p2[-1]=pl p2[0]=me p2[1]=so p2[2]=Mi p3[-1]=pla p3[0]= p3[1]=som p3[2]=Mic p4[-1]=play p4[0]= p4[1]=some p4[2]=Mich s1[-1]=y s1[0]=e s1[1]=e s1[2]=l s2[-1]=ay s2[0]=me s2[1]=me s2[2]=el s3[-1]=lay s3[0]= s3[1]=ome s3[2]=ael s4[-1]=play s4[0]= s4[1]=some s4[2]=hael 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|me w[0]|w[1]=me|some w[1]|w[2]=some|Michael pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|DT pos[1]|pos[2]=DT|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=some w[1..4]=Michael w[1..4]=Jackson +O w[-2]=play w[-1]=me w[0]=some w[1]=Michael w[2]=Jackson wl[-2]=play wl[-1]=me wl[0]=some wl[1]=michael wl[2]=jackson pos[-2]=VB pos[-1]=PRP pos[0]=DT pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=m p1[0]=s p1[1]=M p1[2]=J p2[-2]=pl p2[-1]=me p2[0]=so p2[1]=Mi p2[2]=Ja p3[-2]=pla p3[-1]= p3[0]=som p3[1]=Mic p3[2]=Jac p4[-2]=play p4[-1]= p4[0]=some p4[1]=Mich p4[2]=Jack s1[-2]=y s1[-1]=e s1[0]=e s1[1]=l s1[2]=n s2[-2]=ay s2[-1]=me s2[0]=me s2[1]=el s2[2]=on s3[-2]=lay s3[-1]= s3[0]=ome s3[1]=ael s3[2]=son s4[-2]=play s4[-1]= s4[0]=some s4[1]=hael s4[2]=kson 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|me w[-1]|w[0]=me|some w[0]|w[1]=some|Michael w[1]|w[2]=Michael|Jackson pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|DT pos[0]|pos[1]=DT|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=me w[1..4]=Michael w[1..4]=Jackson +artist w[-2]=me w[-1]=some w[0]=Michael w[1]=Jackson wl[-2]=me wl[-1]=some wl[0]=michael wl[1]=jackson pos[-2]=PRP pos[-1]=DT pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LL shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=m p1[-1]=s p1[0]=M p1[1]=J p2[-2]=me p2[-1]=so p2[0]=Mi p2[1]=Ja p3[-2]= p3[-1]=som p3[0]=Mic p3[1]=Jac p4[-2]= p4[-1]=some p4[0]=Mich p4[1]=Jack s1[-2]=e s1[-1]=e s1[0]=l s1[1]=n s2[-2]=me s2[-1]=me s2[0]=el s2[1]=on s3[-2]= s3[-1]=ome s3[0]=ael s3[1]=son s4[-2]= s4[-1]=some s4[0]=hael s4[1]=kson 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=me|some w[-1]|w[0]=some|Michael w[0]|w[1]=Michael|Jackson pos[-2]|pos[-1]=PRP|DT pos[-1]|pos[0]=DT|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some w[1..4]=Jackson +artist w[-2]=some w[-1]=Michael w[0]=Jackson wl[-2]=some wl[-1]=michael wl[0]=jackson pos[-2]=DT pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=s p1[-1]=M p1[0]=J p2[-2]=so p2[-1]=Mi p2[0]=Ja p3[-2]=som p3[-1]=Mic p3[0]=Jac p4[-2]=some p4[-1]=Mich p4[0]=Jack s1[-2]=e s1[-1]=l s1[0]=n s2[-2]=me s2[-1]=el s2[0]=on s3[-2]=ome s3[-1]=ael s3[0]=son s4[-2]=some s4[-1]=hael s4[0]=kson 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|Michael w[-1]|w[0]=Michael|Jackson pos[-2]|pos[-1]=DT|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some w[-4..-1]=Michael __EOS__ + +O w[0]=play w[1]=Elastic w[2]=Heart wl[0]=play wl[1]=elastic wl[2]=heart pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=E p1[2]=H p2[0]=pl p2[1]=El p2[2]=He p3[0]=pla p3[1]=Ela p3[2]=Hea p4[0]=play p4[1]=Elas p4[2]=Hear s1[0]=y s1[1]=c s1[2]=t s2[0]=ay s2[1]=ic s2[2]=rt s3[0]=lay s3[1]=tic s3[2]=art s4[0]=play s4[1]=stic s4[2]=eart 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Elastic w[1]|w[2]=Elastic|Heart pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Elastic w[1..4]=Heart w[1..4]=by w[1..4]=Sia __BOS__ +song w[-1]=play w[0]=Elastic w[1]=Heart w[2]=by wl[-1]=play wl[0]=elastic wl[1]=heart wl[2]=by pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=E p1[1]=H p1[2]=b p2[-1]=pl p2[0]=El p2[1]=He p2[2]=by p3[-1]=pla p3[0]=Ela p3[1]=Hea p3[2]= p4[-1]=play p4[0]=Elas p4[1]=Hear p4[2]= s1[-1]=y s1[0]=c s1[1]=t s1[2]=y s2[-1]=ay s2[0]=ic s2[1]=rt s2[2]=by s3[-1]=lay s3[0]=tic s3[1]=art s3[2]= s4[-1]=play s4[0]=stic s4[1]=eart s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Elastic w[0]|w[1]=Elastic|Heart w[1]|w[2]=Heart|by pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Heart w[1..4]=by w[1..4]=Sia w[1..4]=song +song w[-2]=play w[-1]=Elastic w[0]=Heart w[1]=by w[2]=Sia wl[-2]=play wl[-1]=elastic wl[0]=heart wl[1]=by wl[2]=sia pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLL shape[1]=LL shape[2]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=E p1[0]=H p1[1]=b p1[2]=S p2[-2]=pl p2[-1]=El p2[0]=He p2[1]=by p2[2]=Si p3[-2]=pla p3[-1]=Ela p3[0]=Hea p3[1]= p3[2]=Sia p4[-2]=play p4[-1]=Elas p4[0]=Hear p4[1]= p4[2]= s1[-2]=y s1[-1]=c s1[0]=t s1[1]=y s1[2]=a s2[-2]=ay s2[-1]=ic s2[0]=rt s2[1]=by s2[2]=ia s3[-2]=lay s3[-1]=tic s3[0]=art s3[1]= s3[2]=Sia s4[-2]=play s4[-1]=stic s4[0]=eart s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Elastic w[-1]|w[0]=Elastic|Heart w[0]|w[1]=Heart|by w[1]|w[2]=by|Sia pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Elastic w[1..4]=by w[1..4]=Sia w[1..4]=song w[1..4]=on +O w[-2]=Elastic w[-1]=Heart w[0]=by w[1]=Sia w[2]=song wl[-2]=elastic wl[-1]=heart wl[0]=by wl[1]=sia wl[2]=song pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=O shape[-2]=ULLLLLL shape[-1]=ULLLL shape[0]=LL shape[1]=ULL shape[2]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=E p1[-1]=H p1[0]=b p1[1]=S p1[2]=s p2[-2]=El p2[-1]=He p2[0]=by p2[1]=Si p2[2]=so p3[-2]=Ela p3[-1]=Hea p3[0]= p3[1]=Sia p3[2]=son p4[-2]=Elas p4[-1]=Hear p4[0]= p4[1]= p4[2]=song s1[-2]=c s1[-1]=t s1[0]=y s1[1]=a s1[2]=g s2[-2]=ic s2[-1]=rt s2[0]=by s2[1]=ia s2[2]=ng s3[-2]=tic s3[-1]=art s3[0]= s3[1]=Sia s3[2]=ong s4[-2]=stic s4[-1]=eart s4[0]= s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Elastic|Heart w[-1]|w[0]=Heart|by w[0]|w[1]=by|Sia w[1]|w[2]=Sia|song pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Elastic w[-4..-1]=Heart w[1..4]=Sia w[1..4]=song w[1..4]=on w[1..4]=Spotify +artist w[-2]=Heart w[-1]=by w[0]=Sia w[1]=song w[2]=on wl[-2]=heart wl[-1]=by wl[0]=sia wl[1]=song wl[2]=on pos[-2]=NNP pos[-1]=IN pos[0]=NNP pos[1]=NN pos[2]=IN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-2]=ULLLL shape[-1]=LL shape[0]=ULL shape[1]=LLLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=H p1[-1]=b p1[0]=S p1[1]=s p1[2]=o p2[-2]=He p2[-1]=by p2[0]=Si p2[1]=so p2[2]=on p3[-2]=Hea p3[-1]= p3[0]=Sia p3[1]=son p3[2]= p4[-2]=Hear p4[-1]= p4[0]= p4[1]=song p4[2]= s1[-2]=t s1[-1]=y s1[0]=a s1[1]=g s1[2]=n s2[-2]=rt s2[-1]=by s2[0]=ia s2[1]=ng s2[2]=on s3[-2]=art s3[-1]= s3[0]=Sia s3[1]=ong s3[2]= s4[-2]=eart s4[-1]= s4[0]= s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Heart|by w[-1]|w[0]=by|Sia w[0]|w[1]=Sia|song w[1]|w[2]=song|on pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Elastic w[-4..-1]=Heart w[-4..-1]=by w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=by w[-1]=Sia w[0]=song w[1]=on w[2]=Spotify wl[-2]=by wl[-1]=sia wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=IN pos[-1]=NNP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=ULL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=b p1[-1]=S p1[0]=s p1[1]=o p1[2]=S p2[-2]=by p2[-1]=Si p2[0]=so p2[1]=on p2[2]=Sp p3[-2]= p3[-1]=Sia p3[0]=son p3[1]= p3[2]=Spo p4[-2]= p4[-1]= p4[0]=song p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=a s1[0]=g s1[1]=n s1[2]=y s2[-2]=by s2[-1]=ia s2[0]=ng s2[1]=on s2[2]=fy s3[-2]= s3[-1]=Sia s3[0]=ong s3[1]= s3[2]=ify s4[-2]= s4[-1]= s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Sia w[-1]|w[0]=Sia|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Elastic w[-4..-1]=Heart w[-4..-1]=by w[-4..-1]=Sia w[1..4]=on w[1..4]=Spotify +O w[-2]=Sia w[-1]=song w[0]=on w[1]=Spotify wl[-2]=sia wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=S p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Si p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=Sia p3[-1]=son p3[0]= p3[1]=Spo p4[-2]= p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=a s1[-1]=g s1[0]=n s1[1]=y s2[-2]=ia s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]=Sia s3[-1]=ong s3[0]= s3[1]=ify s4[-2]= s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Sia|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=Heart w[-4..-1]=by w[-4..-1]=Sia w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Sia w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=me w[2]=some wl[0]=play wl[1]=me wl[2]=some pos[0]=VB pos[1]=PRP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=s p2[0]=pl p2[1]=me p2[2]=so p3[0]=pla p3[1]= p3[2]=som p4[0]=play p4[1]= p4[2]=some s1[0]=y s1[1]=e s1[2]=e s2[0]=ay s2[1]=me s2[2]=me s3[0]=lay s3[1]= s3[2]=ome s4[0]=play s4[1]= s4[2]=some 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|me w[1]|w[2]=me|some pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=me w[1..4]=some w[1..4]=country w[1..4]=music __BOS__ +O w[-1]=play w[0]=me w[1]=some w[2]=country wl[-1]=play wl[0]=me wl[1]=some wl[2]=country pos[-1]=VB pos[0]=PRP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=m p1[1]=s p1[2]=c p2[-1]=pl p2[0]=me p2[1]=so p2[2]=co p3[-1]=pla p3[0]= p3[1]=som p3[2]=cou p4[-1]=play p4[0]= p4[1]=some p4[2]=coun s1[-1]=y s1[0]=e s1[1]=e s1[2]=y s2[-1]=ay s2[0]=me s2[1]=me s2[2]=ry s3[-1]=lay s3[0]= s3[1]=ome s3[2]=try s4[-1]=play s4[0]= s4[1]=some s4[2]=ntry 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|me w[0]|w[1]=me|some w[1]|w[2]=some|country pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=some w[1..4]=country w[1..4]=music +O w[-2]=play w[-1]=me w[0]=some w[1]=country w[2]=music wl[-2]=play wl[-1]=me wl[0]=some wl[1]=country wl[2]=music pos[-2]=VB pos[-1]=PRP pos[0]=DT pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=m p1[0]=s p1[1]=c p1[2]=m p2[-2]=pl p2[-1]=me p2[0]=so p2[1]=co p2[2]=mu p3[-2]=pla p3[-1]= p3[0]=som p3[1]=cou p3[2]=mus p4[-2]=play p4[-1]= p4[0]=some p4[1]=coun p4[2]=musi s1[-2]=y s1[-1]=e s1[0]=e s1[1]=y s1[2]=c s2[-2]=ay s2[-1]=me s2[0]=me s2[1]=ry s2[2]=ic s3[-2]=lay s3[-1]= s3[0]=ome s3[1]=try s3[2]=sic s4[-2]=play s4[-1]= s4[0]=some s4[1]=ntry s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|me w[-1]|w[0]=me|some w[0]|w[1]=some|country w[1]|w[2]=country|music pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[1..4]=country w[1..4]=music +genre w[-2]=me w[-1]=some w[0]=country w[1]=music wl[-2]=me wl[-1]=some wl[0]=country wl[1]=music pos[-2]=PRP pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=m p1[-1]=s p1[0]=c p1[1]=m p2[-2]=me p2[-1]=so p2[0]=co p2[1]=mu p3[-2]= p3[-1]=som p3[0]=cou p3[1]=mus p4[-2]= p4[-1]=some p4[0]=coun p4[1]=musi s1[-2]=e s1[-1]=e s1[0]=y s1[1]=c s2[-2]=me s2[-1]=me s2[0]=ry s2[1]=ic s3[-2]= s3[-1]=ome s3[0]=try s3[1]=sic s4[-2]= s4[-1]=some s4[0]=ntry s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=me|some w[-1]|w[0]=some|country w[0]|w[1]=country|music pos[-2]|pos[-1]=PRP|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some w[1..4]=music +O w[-2]=some w[-1]=country w[0]=music wl[-2]=some wl[-1]=country wl[0]=music pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=LLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=c p1[0]=m p2[-2]=so p2[-1]=co p2[0]=mu p3[-2]=som p3[-1]=cou p3[0]=mus p4[-2]=some p4[-1]=coun p4[0]=musi s1[-2]=e s1[-1]=y s1[0]=c s2[-2]=me s2[-1]=ry s2[0]=ic s3[-2]=ome s3[-1]=try s3[0]=sic s4[-2]=some s4[-1]=ntry s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=some|country w[-1]|w[0]=country|music pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some w[-4..-1]=country __EOS__ + +O w[0]=play w[1]=a w[2]=song wl[0]=play wl[1]=a wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=s p2[0]=pl p2[1]= p2[2]=so p3[0]=pla p3[1]= p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=a s1[2]=g s2[0]=ay s2[1]= s2[2]=ng s3[0]=lay s3[1]= s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=song w[1..4]=Tera w[1..4]=Mera __BOS__ +O w[-1]=play w[0]=a w[1]=song w[2]=Tera wl[-1]=play wl[0]=a wl[1]=song wl[2]=tera pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=L shape[1]=LLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=a p1[1]=s p1[2]=T p2[-1]=pl p2[0]= p2[1]=so p2[2]=Te p3[-1]=pla p3[0]= p3[1]=son p3[2]=Ter p4[-1]=play p4[0]= p4[1]=song p4[2]=Tera s1[-1]=y s1[0]=a s1[1]=g s1[2]=a s2[-1]=ay s2[0]= s2[1]=ng s2[2]=ra s3[-1]=lay s3[0]= s3[1]=ong s3[2]=era s4[-1]=play s4[0]= s4[1]=song s4[2]=Tera 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|song w[1]|w[2]=song|Tera pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Tera w[1..4]=Mera w[1..4]=Rishta +O w[-2]=play w[-1]=a w[0]=song w[1]=Tera w[2]=Mera wl[-2]=play wl[-1]=a wl[0]=song wl[1]=tera wl[2]=mera pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shape[1]=ULLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=s p1[1]=T p1[2]=M p2[-2]=pl p2[-1]= p2[0]=so p2[1]=Te p2[2]=Me p3[-2]=pla p3[-1]= p3[0]=son p3[1]=Ter p3[2]=Mer p4[-2]=play p4[-1]= p4[0]=song p4[1]=Tera p4[2]=Mera s1[-2]=y s1[-1]=a s1[0]=g s1[1]=a s1[2]=a s2[-2]=ay s2[-1]= s2[0]=ng s2[1]=ra s2[2]=ra s3[-2]=lay s3[-1]= s3[0]=ong s3[1]=era s3[2]=era s4[-2]=play s4[-1]= s4[0]=song s4[1]=Tera s4[2]=Mera 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|song w[0]|w[1]=song|Tera w[1]|w[2]=Tera|Mera pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=a w[1..4]=Tera w[1..4]=Mera w[1..4]=Rishta +song w[-2]=a w[-1]=song w[0]=Tera w[1]=Mera w[2]=Rishta wl[-2]=a wl[-1]=song wl[0]=tera wl[1]=mera wl[2]=rishta pos[-2]=DT pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=L shape[-1]=LLLL shape[0]=ULLL shape[1]=ULLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=a p1[-1]=s p1[0]=T p1[1]=M p1[2]=R p2[-2]= p2[-1]=so p2[0]=Te p2[1]=Me p2[2]=Ri p3[-2]= p3[-1]=son p3[0]=Ter p3[1]=Mer p3[2]=Ris p4[-2]= p4[-1]=song p4[0]=Tera p4[1]=Mera p4[2]=Rish s1[-2]=a s1[-1]=g s1[0]=a s1[1]=a s1[2]=a s2[-2]= s2[-1]=ng s2[0]=ra s2[1]=ra s2[2]=ta s3[-2]= s3[-1]=ong s3[0]=era s3[1]=era s3[2]=hta s4[-2]= s4[-1]=song s4[0]=Tera s4[1]=Mera s4[2]=shta 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=a|song w[-1]|w[0]=song|Tera w[0]|w[1]=Tera|Mera w[1]|w[2]=Mera|Rishta pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[1..4]=Mera w[1..4]=Rishta +song w[-2]=song w[-1]=Tera w[0]=Mera w[1]=Rishta wl[-2]=song wl[-1]=tera wl[0]=mera wl[1]=rishta pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=ULLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=T p1[0]=M p1[1]=R p2[-2]=so p2[-1]=Te p2[0]=Me p2[1]=Ri p3[-2]=son p3[-1]=Ter p3[0]=Mer p3[1]=Ris p4[-2]=song p4[-1]=Tera p4[0]=Mera p4[1]=Rish s1[-2]=g s1[-1]=a s1[0]=a s1[1]=a s2[-2]=ng s2[-1]=ra s2[0]=ra s2[1]=ta s3[-2]=ong s3[-1]=era s3[0]=era s3[1]=hta s4[-2]=song s4[-1]=Tera s4[0]=Mera s4[1]=shta 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|Tera w[-1]|w[0]=Tera|Mera w[0]|w[1]=Mera|Rishta pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[-4..-1]=Tera w[1..4]=Rishta +song w[-2]=Tera w[-1]=Mera w[0]=Rishta wl[-2]=tera wl[-1]=mera wl[0]=rishta pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=ULLL shape[0]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=T p1[-1]=M p1[0]=R p2[-2]=Te p2[-1]=Me p2[0]=Ri p3[-2]=Ter p3[-1]=Mer p3[0]=Ris p4[-2]=Tera p4[-1]=Mera p4[0]=Rish s1[-2]=a s1[-1]=a s1[0]=a s2[-2]=ra s2[-1]=ra s2[0]=ta s3[-2]=era s3[-1]=era s3[0]=hta s4[-2]=Tera s4[-1]=Mera s4[0]=shta 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Tera|Mera w[-1]|w[0]=Mera|Rishta pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=a w[-4..-1]=song w[-4..-1]=Tera w[-4..-1]=Mera __EOS__ + +O w[0]=a w[1]=song w[2]=Still wl[0]=a wl[1]=song wl[2]=still pos[0]=DT pos[1]=NN pos[2]=RB chk[0]=O chk[1]=O chk[2]=I shape[0]=L shape[1]=LLLL shape[2]=ULLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=a p1[1]=s p1[2]=S p2[0]= p2[1]=so p2[2]=St p3[0]= p3[1]=son p3[2]=Sti p4[0]= p4[1]=song p4[2]=Stil s1[0]=a s1[1]=g s1[2]=l s2[0]= s2[1]=ng s2[2]=ll s3[0]= s3[1]=ong s3[2]=ill s4[0]= s4[1]=song s4[2]=till 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=a|song w[1]|w[2]=song|Still pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|RB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=Still w[1..4]=Loving w[1..4]=You __BOS__ +O w[-1]=a w[0]=song w[1]=Still w[2]=Loving wl[-1]=a wl[0]=song wl[1]=still wl[2]=loving pos[-1]=DT pos[0]=NN pos[1]=RB pos[2]=RB chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=L shape[0]=LLLL shape[1]=ULLLL shape[2]=ULLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=a p1[0]=s p1[1]=S p1[2]=L p2[-1]= p2[0]=so p2[1]=St p2[2]=Lo p3[-1]= p3[0]=son p3[1]=Sti p3[2]=Lov p4[-1]= p4[0]=song p4[1]=Stil p4[2]=Lovi s1[-1]=a s1[0]=g s1[1]=l s1[2]=g s2[-1]= s2[0]=ng s2[1]=ll s2[2]=ng s3[-1]= s3[0]=ong s3[1]=ill s3[2]=ing s4[-1]= s4[0]=song s4[1]=till s4[2]=ving 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=a|song w[0]|w[1]=song|Still w[1]|w[2]=Still|Loving pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|RB pos[1]|pos[2]=RB|RB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=a w[1..4]=Still w[1..4]=Loving w[1..4]=You +song w[-2]=a w[-1]=song w[0]=Still w[1]=Loving w[2]=You wl[-2]=a wl[-1]=song wl[0]=still wl[1]=loving wl[2]=you pos[-2]=DT pos[-1]=NN pos[0]=RB pos[1]=RB pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=L shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULLLLL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=a p1[-1]=s p1[0]=S p1[1]=L p1[2]=Y p2[-2]= p2[-1]=so p2[0]=St p2[1]=Lo p2[2]=Yo p3[-2]= p3[-1]=son p3[0]=Sti p3[1]=Lov p3[2]=You p4[-2]= p4[-1]=song p4[0]=Stil p4[1]=Lovi p4[2]= s1[-2]=a s1[-1]=g s1[0]=l s1[1]=g s1[2]=u s2[-2]= s2[-1]=ng s2[0]=ll s2[1]=ng s2[2]=ou s3[-2]= s3[-1]=ong s3[0]=ill s3[1]=ing s3[2]=You s4[-2]= s4[-1]=song s4[0]=till s4[1]=ving s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=a|song w[-1]|w[0]=song|Still w[0]|w[1]=Still|Loving w[1]|w[2]=Loving|You pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|RB pos[0]|pos[1]=RB|RB pos[1]|pos[2]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=a w[-4..-1]=song w[1..4]=Loving w[1..4]=You +song w[-2]=song w[-1]=Still w[0]=Loving w[1]=You wl[-2]=song wl[-1]=still wl[0]=loving wl[1]=you pos[-2]=NN pos[-1]=RB pos[0]=RB pos[1]=RB chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULLLLL shape[1]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=S p1[0]=L p1[1]=Y p2[-2]=so p2[-1]=St p2[0]=Lo p2[1]=Yo p3[-2]=son p3[-1]=Sti p3[0]=Lov p3[1]=You p4[-2]=song p4[-1]=Stil p4[0]=Lovi p4[1]= s1[-2]=g s1[-1]=l s1[0]=g s1[1]=u s2[-2]=ng s2[-1]=ll s2[0]=ng s2[1]=ou s3[-2]=ong s3[-1]=ill s3[0]=ing s3[1]=You s4[-2]=song s4[-1]=till s4[0]=ving s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|Still w[-1]|w[0]=Still|Loving w[0]|w[1]=Loving|You pos[-2]|pos[-1]=NN|RB pos[-1]|pos[0]=RB|RB pos[0]|pos[1]=RB|RB chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=a w[-4..-1]=song w[-4..-1]=Still w[1..4]=You +song w[-2]=Still w[-1]=Loving w[0]=You wl[-2]=still wl[-1]=loving wl[0]=you pos[-2]=RB pos[-1]=RB pos[0]=RB chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLL shape[-1]=ULLLLL shape[0]=ULL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=S p1[-1]=L p1[0]=Y p2[-2]=St p2[-1]=Lo p2[0]=Yo p3[-2]=Sti p3[-1]=Lov p3[0]=You p4[-2]=Stil p4[-1]=Lovi p4[0]= s1[-2]=l s1[-1]=g s1[0]=u s2[-2]=ll s2[-1]=ng s2[0]=ou s3[-2]=ill s3[-1]=ing s3[0]=You s4[-2]=till s4[-1]=ving s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Still|Loving w[-1]|w[0]=Loving|You pos[-2]|pos[-1]=RB|RB pos[-1]|pos[0]=RB|RB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=a w[-4..-1]=song w[-4..-1]=Still w[-4..-1]=Loving __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=Disturbia +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=Disturbia w[1..4]=song +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=Disturbia wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=disturbia pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=ULLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=D p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=Di p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=Dis p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]=Dist s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=a s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=ia s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=bia s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]=rbia 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|Disturbia pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=Disturbia w[1..4]=song +O w[-2]=to w[-1]=listen w[0]=to w[1]=Disturbia w[2]=song wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=disturbia wl[2]=song pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=NNP pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=ULLLLLLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=D p1[2]=s p2[-2]=to p2[-1]=li p2[0]=to p2[1]=Di p2[2]=so p3[-2]= p3[-1]=lis p3[0]= p3[1]=Dis p3[2]=son p4[-2]= p4[-1]=list p4[0]= p4[1]=Dist p4[2]=song s1[-2]=o s1[-1]=n s1[0]=o s1[1]=a s1[2]=g s2[-2]=to s2[-1]=en s2[0]=to s2[1]=ia s2[2]=ng s3[-2]= s3[-1]=ten s3[0]= s3[1]=bia s3[2]=ong s4[-2]= s4[-1]=sten s4[0]= s4[1]=rbia s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|Disturbia w[1]|w[2]=Disturbia|song pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=Disturbia w[1..4]=song +song w[-2]=listen w[-1]=to w[0]=Disturbia w[1]=song wl[-2]=listen wl[-1]=to wl[0]=disturbia wl[1]=song pos[-2]=VB pos[-1]=IN pos[0]=NNP pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=ULLLLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter p1[-2]=l p1[-1]=t p1[0]=D p1[1]=s p2[-2]=li p2[-1]=to p2[0]=Di p2[1]=so p3[-2]=lis p3[-1]= p3[0]=Dis p3[1]=son p4[-2]=list p4[-1]= p4[0]=Dist p4[1]=song s1[-2]=n s1[-1]=o s1[0]=a s1[1]=g s2[-2]=en s2[-1]=to s2[0]=ia s2[1]=ng s3[-2]=ten s3[-1]= s3[0]=bia s3[1]=ong s4[-2]=sten s4[-1]= s4[0]=rbia s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|Disturbia w[0]|w[1]=Disturbia|song pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=song +O w[-2]=to w[-1]=Disturbia w[0]=song wl[-2]=to wl[-1]=disturbia wl[0]=song pos[-2]=IN pos[-1]=NNP pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LL shape[-1]=ULLLLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter p1[-2]=t p1[-1]=D p1[0]=s p2[-2]=to p2[-1]=Di p2[0]=so p3[-2]= p3[-1]=Dis p3[0]=son p4[-2]= p4[-1]=Dist p4[0]=song s1[-2]=o s1[-1]=a s1[0]=g s2[-2]=to s2[-1]=ia s2[0]=ng s3[-2]= s3[-1]=bia s3[0]=ong s4[-2]= s4[-1]=rbia s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|Disturbia w[-1]|w[0]=Disturbia|song pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Disturbia __EOS__ + +O w[0]=play w[1]=Harder w[2]=Better wl[0]=play wl[1]=harder wl[2]=better pos[0]=VB pos[1]=RBR pos[2]=RBR chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=H p1[2]=B p2[0]=pl p2[1]=Ha p2[2]=Be p3[0]=pla p3[1]=Har p3[2]=Bet p4[0]=play p4[1]=Hard p4[2]=Bett s1[0]=y s1[1]=r s1[2]=r s2[0]=ay s2[1]=er s2[2]=er s3[0]=lay s3[1]=der s3[2]=ter s4[0]=play s4[1]=rder s4[2]=tter 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Harder w[1]|w[2]=Harder|Better pos[0]|pos[1]=VB|RBR pos[1]|pos[2]=RBR|RBR chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Harder w[1..4]=Better w[1..4]=Faster __BOS__ +song w[-1]=play w[0]=Harder w[1]=Better w[2]=Faster wl[-1]=play wl[0]=harder wl[1]=better wl[2]=faster pos[-1]=VB pos[0]=RBR pos[1]=RBR pos[2]=RBR chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLLL shape[1]=ULLLLL shape[2]=ULLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=H p1[1]=B p1[2]=F p2[-1]=pl p2[0]=Ha p2[1]=Be p2[2]=Fa p3[-1]=pla p3[0]=Har p3[1]=Bet p3[2]=Fas p4[-1]=play p4[0]=Hard p4[1]=Bett p4[2]=Fast s1[-1]=y s1[0]=r s1[1]=r s1[2]=r s2[-1]=ay s2[0]=er s2[1]=er s2[2]=er s3[-1]=lay s3[0]=der s3[1]=ter s3[2]=ter s4[-1]=play s4[0]=rder s4[1]=tter s4[2]=ster 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Harder w[0]|w[1]=Harder|Better w[1]|w[2]=Better|Faster pos[-1]|pos[0]=VB|RBR pos[0]|pos[1]=RBR|RBR pos[1]|pos[2]=RBR|RBR chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Better w[1..4]=Faster +song w[-2]=play w[-1]=Harder w[0]=Better w[1]=Faster wl[-2]=play wl[-1]=harder wl[0]=better wl[1]=faster pos[-2]=VB pos[-1]=RBR pos[0]=RBR pos[1]=RBR chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=ULLLLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=p p1[-1]=H p1[0]=B p1[1]=F p2[-2]=pl p2[-1]=Ha p2[0]=Be p2[1]=Fa p3[-2]=pla p3[-1]=Har p3[0]=Bet p3[1]=Fas p4[-2]=play p4[-1]=Hard p4[0]=Bett p4[1]=Fast s1[-2]=y s1[-1]=r s1[0]=r s1[1]=r s2[-2]=ay s2[-1]=er s2[0]=er s2[1]=er s3[-2]=lay s3[-1]=der s3[0]=ter s3[1]=ter s4[-2]=play s4[-1]=rder s4[0]=tter s4[1]=ster 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Harder w[-1]|w[0]=Harder|Better w[0]|w[1]=Better|Faster pos[-2]|pos[-1]=VB|RBR pos[-1]|pos[0]=RBR|RBR pos[0]|pos[1]=RBR|RBR chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Harder w[1..4]=Faster +song w[-2]=Harder w[-1]=Better w[0]=Faster wl[-2]=harder wl[-1]=better wl[0]=faster pos[-2]=RBR pos[-1]=RBR pos[0]=RBR chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLL shape[-1]=ULLLLL shape[0]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=H p1[-1]=B p1[0]=F p2[-2]=Ha p2[-1]=Be p2[0]=Fa p3[-2]=Har p3[-1]=Bet p3[0]=Fas p4[-2]=Hard p4[-1]=Bett p4[0]=Fast s1[-2]=r s1[-1]=r s1[0]=r s2[-2]=er s2[-1]=er s2[0]=er s3[-2]=der s3[-1]=ter s3[0]=ter s4[-2]=rder s4[-1]=tter s4[0]=ster 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Harder|Better w[-1]|w[0]=Better|Faster pos[-2]|pos[-1]=RBR|RBR pos[-1]|pos[0]=RBR|RBR chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Harder w[-4..-1]=Better __EOS__ + +O w[0]=can w[1]=I w[2]=listen wl[0]=can wl[1]=i wl[2]=listen pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=U shape[2]=LLLLLL shaped[0]=L shaped[1]=U shaped[2]=L type[0]=AllLetter type[1]=AllUpper type[2]=AllLetter p1[0]=c p1[1]=I p1[2]=l p2[0]=ca p2[1]= p2[2]=li p3[0]=can p3[1]= p3[2]=lis p4[0]= p4[1]= p4[2]=list s1[0]=n s1[1]=I s1[2]=n s2[0]=an s2[1]= s2[2]=en s3[0]=can s3[1]= s3[2]=ten s4[0]= s4[1]= s4[2]=sten 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=yes au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=no cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|I w[1]|w[2]=I|listen pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|L type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|AllLetter w[1..4]=I w[1..4]=listen w[1..4]=to w[1..4]=Macarena __BOS__ +O w[-1]=can w[0]=I w[1]=listen w[2]=to wl[-1]=can wl[0]=i wl[1]=listen wl[2]=to pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=U shape[1]=LLLLLL shape[2]=LL shaped[-1]=L shaped[0]=U shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=I p1[1]=l p1[2]=t p2[-1]=ca p2[0]= p2[1]=li p2[2]=to p3[-1]=can p3[0]= p3[1]=lis p3[2]= p4[-1]= p4[0]= p4[1]=list p4[2]= s1[-1]=n s1[0]=I s1[1]=n s1[2]=o s2[-1]=an s2[0]= s2[1]=en s2[2]=to s3[-1]=can s3[0]= s3[1]=ten s3[2]= s4[-1]= s4[0]= s4[1]=sten s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=yes au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|I w[0]|w[1]=I|listen w[1]|w[2]=listen|to pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=listen w[1..4]=to w[1..4]=Macarena +O w[-2]=can w[-1]=I w[0]=listen w[1]=to w[2]=Macarena wl[-2]=can wl[-1]=i wl[0]=listen wl[1]=to wl[2]=macarena pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=U shape[0]=LLLLLL shape[1]=LL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=c p1[-1]=I p1[0]=l p1[1]=t p1[2]=M p2[-2]=ca p2[-1]= p2[0]=li p2[1]=to p2[2]=Ma p3[-2]=can p3[-1]= p3[0]=lis p3[1]= p3[2]=Mac p4[-2]= p4[-1]= p4[0]=list p4[1]= p4[2]=Maca s1[-2]=n s1[-1]=I s1[0]=n s1[1]=o s1[2]=a s2[-2]=an s2[-1]= s2[0]=en s2[1]=to s2[2]=na s3[-2]=can s3[-1]= s3[0]=ten s3[1]= s3[2]=ena s4[-2]= s4[-1]= s4[0]=sten s4[1]= s4[2]=rena 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|I w[-1]|w[0]=I|listen w[0]|w[1]=listen|to w[1]|w[2]=to|Macarena pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=I w[1..4]=to w[1..4]=Macarena +O w[-2]=I w[-1]=listen w[0]=to w[1]=Macarena wl[-2]=i wl[-1]=listen wl[0]=to wl[1]=macarena pos[-2]=PRP pos[-1]=VB pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=U shape[-1]=LLLLLL shape[0]=LL shape[1]=ULLLLLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=I p1[-1]=l p1[0]=t p1[1]=M p2[-2]= p2[-1]=li p2[0]=to p2[1]=Ma p3[-2]= p3[-1]=lis p3[0]= p3[1]=Mac p4[-2]= p4[-1]=list p4[0]= p4[1]=Maca s1[-2]=I s1[-1]=n s1[0]=o s1[1]=a s2[-2]= s2[-1]=en s2[0]=to s2[1]=na s3[-2]= s3[-1]=ten s3[0]= s3[1]=ena s4[-2]= s4[-1]=sten s4[0]= s4[1]=rena 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=yes au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=I|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|Macarena pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=I w[-4..-1]=listen w[1..4]=Macarena +song w[-2]=listen w[-1]=to w[0]=Macarena wl[-2]=listen wl[-1]=to wl[0]=macarena pos[-2]=VB pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=l p1[-1]=t p1[0]=M p2[-2]=li p2[-1]=to p2[0]=Ma p3[-2]=lis p3[-1]= p3[0]=Mac p4[-2]=list p4[-1]= p4[0]=Maca s1[-2]=n s1[-1]=o s1[0]=a s2[-2]=en s2[-1]=to s2[0]=na s3[-2]=ten s3[-1]= s3[0]=ena s4[-2]=sten s4[-1]= s4[0]=rena 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|Macarena pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=I w[-4..-1]=listen w[-4..-1]=to __EOS__ + +O w[0]=play w[1]=Song w[2]=of wl[0]=play wl[1]=song wl[2]=of pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=S p1[2]=o p2[0]=pl p2[1]=So p2[2]=of p3[0]=pla p3[1]=Son p3[2]= p4[0]=play p4[1]=Song p4[2]= s1[0]=y s1[1]=g s1[2]=f s2[0]=ay s2[1]=ng s2[2]=of s3[0]=lay s3[1]=ong s3[2]= s4[0]=play s4[1]=Song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Song w[1]|w[2]=Song|of pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Song w[1..4]=of w[1..4]=Joy __BOS__ +song w[-1]=play w[0]=Song w[1]=of w[2]=Joy wl[-1]=play wl[0]=song wl[1]=of wl[2]=joy pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLL shape[1]=LL shape[2]=ULL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=S p1[1]=o p1[2]=J p2[-1]=pl p2[0]=So p2[1]=of p2[2]=Jo p3[-1]=pla p3[0]=Son p3[1]= p3[2]=Joy p4[-1]=play p4[0]=Song p4[1]= p4[2]= s1[-1]=y s1[0]=g s1[1]=f s1[2]=y s2[-1]=ay s2[0]=ng s2[1]=of s2[2]=oy s3[-1]=lay s3[0]=ong s3[1]= s3[2]=Joy s4[-1]=play s4[0]=Song s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Song w[0]|w[1]=Song|of w[1]|w[2]=of|Joy pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=of w[1..4]=Joy +song w[-2]=play w[-1]=Song w[0]=of w[1]=Joy wl[-2]=play wl[-1]=song wl[0]=of wl[1]=joy pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=S p1[0]=o p1[1]=J p2[-2]=pl p2[-1]=So p2[0]=of p2[1]=Jo p3[-2]=pla p3[-1]=Son p3[0]= p3[1]=Joy p4[-2]=play p4[-1]=Song p4[0]= p4[1]= s1[-2]=y s1[-1]=g s1[0]=f s1[1]=y s2[-2]=ay s2[-1]=ng s2[0]=of s2[1]=oy s3[-2]=lay s3[-1]=ong s3[0]= s3[1]=Joy s4[-2]=play s4[-1]=Song s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Song w[-1]|w[0]=Song|of w[0]|w[1]=of|Joy pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Song w[1..4]=Joy +song w[-2]=Song w[-1]=of w[0]=Joy wl[-2]=song wl[-1]=of wl[0]=joy pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=S p1[-1]=o p1[0]=J p2[-2]=So p2[-1]=of p2[0]=Jo p3[-2]=Son p3[-1]= p3[0]=Joy p4[-2]=Song p4[-1]= p4[0]= s1[-2]=g s1[-1]=f s1[0]=y s2[-2]=ng s2[-1]=of s2[0]=oy s3[-2]=ong s3[-1]= s3[0]=Joy s4[-2]=Song s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Song|of w[-1]|w[0]=of|Joy pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Song w[-4..-1]=of __EOS__ + +O w[0]=play w[1]=Miracle w[2]=from wl[0]=play wl[1]=miracle wl[2]=from pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLL shape[2]=LLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=M p1[2]=f p2[0]=pl p2[1]=Mi p2[2]=fr p3[0]=pla p3[1]=Mir p3[2]=fro p4[0]=play p4[1]=Mira p4[2]=from s1[0]=y s1[1]=e s1[2]=m s2[0]=ay s2[1]=le s2[2]=om s3[0]=lay s3[1]=cle s3[2]=rom s4[0]=play s4[1]=acle s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Miracle w[1]|w[2]=Miracle|from pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Miracle w[1..4]=from w[1..4]=Apple w[1..4]=Music __BOS__ +song w[-1]=play w[0]=Miracle w[1]=from w[2]=Apple wl[-1]=play wl[0]=miracle wl[1]=from wl[2]=apple pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=LLLL shape[2]=ULLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=M p1[1]=f p1[2]=A p2[-1]=pl p2[0]=Mi p2[1]=fr p2[2]=Ap p3[-1]=pla p3[0]=Mir p3[1]=fro p3[2]=App p4[-1]=play p4[0]=Mira p4[1]=from p4[2]=Appl s1[-1]=y s1[0]=e s1[1]=m s1[2]=e s2[-1]=ay s2[0]=le s2[1]=om s2[2]=le s3[-1]=lay s3[0]=cle s3[1]=rom s3[2]=ple s4[-1]=play s4[0]=acle s4[1]=from s4[2]=pple 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Miracle w[0]|w[1]=Miracle|from w[1]|w[2]=from|Apple pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=from w[1..4]=Apple w[1..4]=Music +O w[-2]=play w[-1]=Miracle w[0]=from w[1]=Apple w[2]=Music wl[-2]=play wl[-1]=miracle wl[0]=from wl[1]=apple wl[2]=music pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=LLLL shape[1]=ULLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=M p1[0]=f p1[1]=A p1[2]=M p2[-2]=pl p2[-1]=Mi p2[0]=fr p2[1]=Ap p2[2]=Mu p3[-2]=pla p3[-1]=Mir p3[0]=fro p3[1]=App p3[2]=Mus p4[-2]=play p4[-1]=Mira p4[0]=from p4[1]=Appl p4[2]=Musi s1[-2]=y s1[-1]=e s1[0]=m s1[1]=e s1[2]=c s2[-2]=ay s2[-1]=le s2[0]=om s2[1]=le s2[2]=ic s3[-2]=lay s3[-1]=cle s3[0]=rom s3[1]=ple s3[2]=sic s4[-2]=play s4[-1]=acle s4[0]=from s4[1]=pple s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Miracle w[-1]|w[0]=Miracle|from w[0]|w[1]=from|Apple w[1]|w[2]=Apple|Music pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Miracle w[1..4]=Apple w[1..4]=Music +service w[-2]=Miracle w[-1]=from w[0]=Apple w[1]=Music wl[-2]=miracle wl[-1]=from wl[0]=apple wl[1]=music pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLLLLL shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=M p1[-1]=f p1[0]=A p1[1]=M p2[-2]=Mi p2[-1]=fr p2[0]=Ap p2[1]=Mu p3[-2]=Mir p3[-1]=fro p3[0]=App p3[1]=Mus p4[-2]=Mira p4[-1]=from p4[0]=Appl p4[1]=Musi s1[-2]=e s1[-1]=m s1[0]=e s1[1]=c s2[-2]=le s2[-1]=om s2[0]=le s2[1]=ic s3[-2]=cle s3[-1]=rom s3[0]=ple s3[1]=sic s4[-2]=acle s4[-1]=from s4[0]=pple s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Miracle|from w[-1]|w[0]=from|Apple w[0]|w[1]=Apple|Music pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Miracle w[-4..-1]=from w[1..4]=Music +service w[-2]=from w[-1]=Apple w[0]=Music wl[-2]=from wl[-1]=apple wl[0]=music pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=f p1[-1]=A p1[0]=M p2[-2]=fr p2[-1]=Ap p2[0]=Mu p3[-2]=fro p3[-1]=App p3[0]=Mus p4[-2]=from p4[-1]=Appl p4[0]=Musi s1[-2]=m s1[-1]=e s1[0]=c s2[-2]=om s2[-1]=le s2[0]=ic s3[-2]=rom s3[-1]=ple s3[0]=sic s4[-2]=from s4[-1]=pple s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=from|Apple w[-1]|w[0]=Apple|Music pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Miracle w[-4..-1]=from w[-4..-1]=Apple __EOS__ + +O w[0]=play w[1]=Bohemian w[2]=Rhapsody wl[0]=play wl[1]=bohemian wl[2]=rhapsody pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLLLL shape[2]=ULLLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=B p1[2]=R p2[0]=pl p2[1]=Bo p2[2]=Rh p3[0]=pla p3[1]=Boh p3[2]=Rha p4[0]=play p4[1]=Bohe p4[2]=Rhap s1[0]=y s1[1]=n s1[2]=y s2[0]=ay s2[1]=an s2[2]=dy s3[0]=lay s3[1]=ian s3[2]=ody s4[0]=play s4[1]=mian s4[2]=sody 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Bohemian w[1]|w[2]=Bohemian|Rhapsody pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Bohemian w[1..4]=Rhapsody w[1..4]=by w[1..4]=Queen __BOS__ +song w[-1]=play w[0]=Bohemian w[1]=Rhapsody w[2]=by wl[-1]=play wl[0]=bohemian wl[1]=rhapsody wl[2]=by pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLLLLLL shape[1]=ULLLLLLL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=B p1[1]=R p1[2]=b p2[-1]=pl p2[0]=Bo p2[1]=Rh p2[2]=by p3[-1]=pla p3[0]=Boh p3[1]=Rha p3[2]= p4[-1]=play p4[0]=Bohe p4[1]=Rhap p4[2]= s1[-1]=y s1[0]=n s1[1]=y s1[2]=y s2[-1]=ay s2[0]=an s2[1]=dy s2[2]=by s3[-1]=lay s3[0]=ian s3[1]=ody s3[2]= s4[-1]=play s4[0]=mian s4[1]=sody s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Bohemian w[0]|w[1]=Bohemian|Rhapsody w[1]|w[2]=Rhapsody|by pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Rhapsody w[1..4]=by w[1..4]=Queen +song w[-2]=play w[-1]=Bohemian w[0]=Rhapsody w[1]=by w[2]=Queen wl[-2]=play wl[-1]=bohemian wl[0]=rhapsody wl[1]=by wl[2]=queen pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLLLL shape[0]=ULLLLLLL shape[1]=LL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=B p1[0]=R p1[1]=b p1[2]=Q p2[-2]=pl p2[-1]=Bo p2[0]=Rh p2[1]=by p2[2]=Qu p3[-2]=pla p3[-1]=Boh p3[0]=Rha p3[1]= p3[2]=Que p4[-2]=play p4[-1]=Bohe p4[0]=Rhap p4[1]= p4[2]=Quee s1[-2]=y s1[-1]=n s1[0]=y s1[1]=y s1[2]=n s2[-2]=ay s2[-1]=an s2[0]=dy s2[1]=by s2[2]=en s3[-2]=lay s3[-1]=ian s3[0]=ody s3[1]= s3[2]=een s4[-2]=play s4[-1]=mian s4[0]=sody s4[1]= s4[2]=ueen 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Bohemian w[-1]|w[0]=Bohemian|Rhapsody w[0]|w[1]=Rhapsody|by w[1]|w[2]=by|Queen pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Bohemian w[1..4]=by w[1..4]=Queen +O w[-2]=Bohemian w[-1]=Rhapsody w[0]=by w[1]=Queen wl[-2]=bohemian wl[-1]=rhapsody wl[0]=by wl[1]=queen pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULLLLLLL shape[-1]=ULLLLLLL shape[0]=LL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=B p1[-1]=R p1[0]=b p1[1]=Q p2[-2]=Bo p2[-1]=Rh p2[0]=by p2[1]=Qu p3[-2]=Boh p3[-1]=Rha p3[0]= p3[1]=Que p4[-2]=Bohe p4[-1]=Rhap p4[0]= p4[1]=Quee s1[-2]=n s1[-1]=y s1[0]=y s1[1]=n s2[-2]=an s2[-1]=dy s2[0]=by s2[1]=en s3[-2]=ian s3[-1]=ody s3[0]= s3[1]=een s4[-2]=mian s4[-1]=sody s4[0]= s4[1]=ueen 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Bohemian|Rhapsody w[-1]|w[0]=Rhapsody|by w[0]|w[1]=by|Queen pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Bohemian w[-4..-1]=Rhapsody w[1..4]=Queen +artist w[-2]=Rhapsody w[-1]=by w[0]=Queen wl[-2]=rhapsody wl[-1]=by wl[0]=queen pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLLL shape[-1]=LL shape[0]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=R p1[-1]=b p1[0]=Q p2[-2]=Rh p2[-1]=by p2[0]=Qu p3[-2]=Rha p3[-1]= p3[0]=Que p4[-2]=Rhap p4[-1]= p4[0]=Quee s1[-2]=y s1[-1]=y s1[0]=n s2[-2]=dy s2[-1]=by s2[0]=en s3[-2]=ody s3[-1]= s3[0]=een s4[-2]=sody s4[-1]= s4[0]=ueen 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Rhapsody|by w[-1]|w[0]=by|Queen pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Bohemian w[-4..-1]=Rhapsody w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=music wl[0]=play wl[1]=music pos[0]=VB pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=m p2[0]=pl p2[1]=mu p3[0]=pla p3[1]=mus p4[0]=play p4[1]=musi s1[0]=y s1[1]=c s2[0]=ay s2[1]=ic s3[0]=lay s3[1]=sic s4[0]=play s4[1]=usic 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|music pos[0]|pos[1]=VB|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=music __BOS__ +O w[-1]=play w[0]=music wl[-1]=play wl[0]=music pos[-1]=VB pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=m p2[-1]=pl p2[0]=mu p3[-1]=pla p3[0]=mus p4[-1]=play p4[0]=musi s1[-1]=y s1[0]=c s2[-1]=ay s2[0]=ic s3[-1]=lay s3[0]=sic s4[-1]=play s4[0]=usic 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|music pos[-1]|pos[0]=VB|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=It w[1..4]=Must __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=It wl[-1]=can wl[0]=you wl[1]=play wl[2]=it pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=c p1[0]=y p1[1]=p p1[2]=I p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=It p3[-1]=can p3[0]=you p3[1]=pla p3[2]= p4[-1]= p4[0]= p4[1]=play p4[2]= s1[-1]=n s1[0]=u s1[1]=y s1[2]=t s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=It s3[-1]=can s3[0]=you s3[1]=lay s3[2]= s4[-1]= s4[0]= s4[1]=play s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|It pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[1..4]=play w[1..4]=It w[1..4]=Must w[1..4]=Have +O w[-2]=can w[-1]=you w[0]=play w[1]=It w[2]=Must wl[-2]=can wl[-1]=you wl[0]=play wl[1]=it wl[2]=must pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=UL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=c p1[-1]=y p1[0]=p p1[1]=I p1[2]=M p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=It p2[2]=Mu p3[-2]=can p3[-1]=you p3[0]=pla p3[1]= p3[2]=Mus p4[-2]= p4[-1]= p4[0]=play p4[1]= p4[2]=Must s1[-2]=n s1[-1]=u s1[0]=y s1[1]=t s1[2]=t s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=It s2[2]=st s3[-2]=can s3[-1]=you s3[0]=lay s3[1]= s3[2]=ust s4[-2]= s4[-1]= s4[0]=play s4[1]= s4[2]=Must 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|It w[1]|w[2]=It|Must pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[1..4]=It w[1..4]=Must w[1..4]=Have w[1..4]=Been +song w[-2]=you w[-1]=play w[0]=It w[1]=Must w[2]=Have wl[-2]=you wl[-1]=play wl[0]=it wl[1]=must wl[2]=have pos[-2]=PRP pos[-1]=VB pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=UL shape[1]=ULLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=y p1[-1]=p p1[0]=I p1[1]=M p1[2]=H p2[-2]=yo p2[-1]=pl p2[0]=It p2[1]=Mu p2[2]=Ha p3[-2]=you p3[-1]=pla p3[0]= p3[1]=Mus p3[2]=Hav p4[-2]= p4[-1]=play p4[0]= p4[1]=Must p4[2]=Have s1[-2]=u s1[-1]=y s1[0]=t s1[1]=t s1[2]=e s2[-2]=ou s2[-1]=ay s2[0]=It s2[1]=st s2[2]=ve s3[-2]=you s3[-1]=lay s3[0]= s3[1]=ust s3[2]=ave s4[-2]= s4[-1]=play s4[0]= s4[1]=Must s4[2]=Have 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|It w[0]|w[1]=It|Must w[1]|w[2]=Must|Have pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[1..4]=Must w[1..4]=Have w[1..4]=Been w[1..4]=Love +song w[-2]=play w[-1]=It w[0]=Must w[1]=Have w[2]=Been wl[-2]=play wl[-1]=it wl[0]=must wl[1]=have wl[2]=been pos[-2]=VB pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=UL shape[0]=ULLL shape[1]=ULLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=I p1[0]=M p1[1]=H p1[2]=B p2[-2]=pl p2[-1]=It p2[0]=Mu p2[1]=Ha p2[2]=Be p3[-2]=pla p3[-1]= p3[0]=Mus p3[1]=Hav p3[2]=Bee p4[-2]=play p4[-1]= p4[0]=Must p4[1]=Have p4[2]=Been s1[-2]=y s1[-1]=t s1[0]=t s1[1]=e s1[2]=n s2[-2]=ay s2[-1]=It s2[0]=st s2[1]=ve s2[2]=en s3[-2]=lay s3[-1]= s3[0]=ust s3[1]=ave s3[2]=een s4[-2]=play s4[-1]= s4[0]=Must s4[1]=Have s4[2]=Been 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|It w[-1]|w[0]=It|Must w[0]|w[1]=Must|Have w[1]|w[2]=Have|Been pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[-4..-1]=It w[1..4]=Have w[1..4]=Been w[1..4]=Love +song w[-2]=It w[-1]=Must w[0]=Have w[1]=Been w[2]=Love wl[-2]=it wl[-1]=must wl[0]=have wl[1]=been wl[2]=love pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=UL shape[-1]=ULLL shape[0]=ULLL shape[1]=ULLL shape[2]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=I p1[-1]=M p1[0]=H p1[1]=B p1[2]=L p2[-2]=It p2[-1]=Mu p2[0]=Ha p2[1]=Be p2[2]=Lo p3[-2]= p3[-1]=Mus p3[0]=Hav p3[1]=Bee p3[2]=Lov p4[-2]= p4[-1]=Must p4[0]=Have p4[1]=Been p4[2]=Love s1[-2]=t s1[-1]=t s1[0]=e s1[1]=n s1[2]=e s2[-2]=It s2[-1]=st s2[0]=ve s2[1]=en s2[2]=ve s3[-2]= s3[-1]=ust s3[0]=ave s3[1]=een s3[2]=ove s4[-2]= s4[-1]=Must s4[0]=Have s4[1]=Been s4[2]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=It|Must w[-1]|w[0]=Must|Have w[0]|w[1]=Have|Been w[1]|w[2]=Been|Love pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=you w[-4..-1]=play w[-4..-1]=It w[-4..-1]=Must w[1..4]=Been w[1..4]=Love +song w[-2]=Must w[-1]=Have w[0]=Been w[1]=Love wl[-2]=must wl[-1]=have wl[0]=been wl[1]=love pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=PRP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=ULLL shape[0]=ULLL shape[1]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=M p1[-1]=H p1[0]=B p1[1]=L p2[-2]=Mu p2[-1]=Ha p2[0]=Be p2[1]=Lo p3[-2]=Mus p3[-1]=Hav p3[0]=Bee p3[1]=Lov p4[-2]=Must p4[-1]=Have p4[0]=Been p4[1]=Love s1[-2]=t s1[-1]=e s1[0]=n s1[1]=e s2[-2]=st s2[-1]=ve s2[0]=en s2[1]=ve s3[-2]=ust s3[-1]=ave s3[0]=een s3[1]=ove s4[-2]=Must s4[-1]=Have s4[0]=Been s4[1]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Must|Have w[-1]|w[0]=Have|Been w[0]|w[1]=Been|Love pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=It w[-4..-1]=Must w[-4..-1]=Have w[1..4]=Love +song w[-2]=Have w[-1]=Been w[0]=Love wl[-2]=have wl[-1]=been wl[0]=love pos[-2]=PRP pos[-1]=PRP pos[0]=PRP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLL shape[-1]=ULLL shape[0]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=H p1[-1]=B p1[0]=L p2[-2]=Ha p2[-1]=Be p2[0]=Lo p3[-2]=Hav p3[-1]=Bee p3[0]=Lov p4[-2]=Have p4[-1]=Been p4[0]=Love s1[-2]=e s1[-1]=n s1[0]=e s2[-2]=ve s2[-1]=en s2[0]=ve s3[-2]=ave s3[-1]=een s3[0]=ove s4[-2]=Have s4[-1]=Been s4[0]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Have|Been w[-1]|w[0]=Been|Love pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=It w[-4..-1]=Must w[-4..-1]=Have w[-4..-1]=Been __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=country w[1..4]=music __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=country wl[-1]=can wl[0]=you wl[1]=play wl[2]=country pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=c p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=co p3[-1]=can p3[0]=you p3[1]=pla p3[2]=cou p4[-1]= p4[0]= p4[1]=play p4[2]=coun s1[-1]=n s1[0]=u s1[1]=y s1[2]=y s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=ry s3[-1]=can s3[0]=you s3[1]=lay s3[2]=try s4[-1]= s4[0]= s4[1]=play s4[2]=ntry 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|country pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=play w[1..4]=country w[1..4]=music +O w[-2]=can w[-1]=you w[0]=play w[1]=country w[2]=music wl[-2]=can wl[-1]=you wl[0]=play wl[1]=country wl[2]=music pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLLLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=c p1[2]=m p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=co p2[2]=mu p3[-2]=can p3[-1]=you p3[0]=pla p3[1]=cou p3[2]=mus p4[-2]= p4[-1]= p4[0]=play p4[1]=coun p4[2]=musi s1[-2]=n s1[-1]=u s1[0]=y s1[1]=y s1[2]=c s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=ry s2[2]=ic s3[-2]=can s3[-1]=you s3[0]=lay s3[1]=try s3[2]=sic s4[-2]= s4[-1]= s4[0]=play s4[1]=ntry s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|country w[1]|w[2]=country|music pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=country w[1..4]=music +genre w[-2]=you w[-1]=play w[0]=country w[1]=music wl[-2]=you wl[-1]=play wl[0]=country wl[1]=music pos[-2]=PRP pos[-1]=VB pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=y p1[-1]=p p1[0]=c p1[1]=m p2[-2]=yo p2[-1]=pl p2[0]=co p2[1]=mu p3[-2]=you p3[-1]=pla p3[0]=cou p3[1]=mus p4[-2]= p4[-1]=play p4[0]=coun p4[1]=musi s1[-2]=u s1[-1]=y s1[0]=y s1[1]=c s2[-2]=ou s2[-1]=ay s2[0]=ry s2[1]=ic s3[-2]=you s3[-1]=lay s3[0]=try s3[1]=sic s4[-2]= s4[-1]=play s4[0]=ntry s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|country w[0]|w[1]=country|music pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[1..4]=music +O w[-2]=play w[-1]=country w[0]=music wl[-2]=play wl[-1]=country wl[0]=music pos[-2]=VB pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=LLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=c p1[0]=m p2[-2]=pl p2[-1]=co p2[0]=mu p3[-2]=pla p3[-1]=cou p3[0]=mus p4[-2]=play p4[-1]=coun p4[0]=musi s1[-2]=y s1[-1]=y s1[0]=c s2[-2]=ay s2[-1]=ry s2[0]=ic s3[-2]=lay s3[-1]=try s3[0]=sic s4[-2]=play s4[-1]=ntry s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|country w[-1]|w[0]=country|music pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[-4..-1]=country __EOS__ + +O w[0]=let's w[1]=listen w[2]=to wl[0]=let's wl[1]=listen wl[2]=to pos[0]=VB pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL'L shape[1]=LLLLLL shape[2]=LL shaped[0]=L'L shaped[1]=L shaped[2]=L type[0]=NO type[1]=AllLetter type[2]=AllLetter p1[0]=l p1[1]=l p1[2]=t p2[0]=le p2[1]=li p2[2]=to p3[0]=let p3[1]=lis p3[2]= p4[0]=let' p4[1]=list p4[2]= s1[0]=s s1[1]=n s1[2]=o s2[0]='s s2[1]=en s2[2]=to s3[0]=t's s3[1]=ten s3[2]= s4[0]=et's s4[1]=sten s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=let's|listen w[1]|w[2]=listen|to pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=NO|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=listen w[1..4]=to w[1..4]=Come w[1..4]=together __BOS__ +O w[-1]=let's w[0]=listen w[1]=to w[2]=Come wl[-1]=let's wl[0]=listen wl[1]=to wl[2]=come pos[-1]=VB pos[0]=PRP pos[1]=VB pos[2]=TO chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL'L shape[0]=LLLLLL shape[1]=LL shape[2]=ULLL shaped[-1]=L'L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=NO type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=l p1[0]=l p1[1]=t p1[2]=C p2[-1]=le p2[0]=li p2[1]=to p2[2]=Co p3[-1]=let p3[0]=lis p3[1]= p3[2]=Com p4[-1]=let' p4[0]=list p4[1]= p4[2]=Come s1[-1]=s s1[0]=n s1[1]=o s1[2]=e s2[-1]='s s2[0]=en s2[1]=to s2[2]=me s3[-1]=t's s3[0]=ten s3[1]= s3[2]=ome s4[-1]=et's s4[0]=sten s4[1]= s4[2]=Come 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=let's|listen w[0]|w[1]=listen|to w[1]|w[2]=to|Come pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|TO chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L'L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=NO|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=let's w[1..4]=to w[1..4]=Come w[1..4]=together w[1..4]=by +O w[-2]=let's w[-1]=listen w[0]=to w[1]=Come w[2]=together wl[-2]=let's wl[-1]=listen wl[0]=to wl[1]=come wl[2]=together pos[-2]=VB pos[-1]=PRP pos[0]=VB pos[1]=TO pos[2]=TO chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL'L shape[-1]=LLLLLL shape[0]=LL shape[1]=ULLL shape[2]=LLLLLLLL shaped[-2]=L'L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=NO type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=l p1[-1]=l p1[0]=t p1[1]=C p1[2]=t p2[-2]=le p2[-1]=li p2[0]=to p2[1]=Co p2[2]=to p3[-2]=let p3[-1]=lis p3[0]= p3[1]=Com p3[2]=tog p4[-2]=let' p4[-1]=list p4[0]= p4[1]=Come p4[2]=toge s1[-2]=s s1[-1]=n s1[0]=o s1[1]=e s1[2]=r s2[-2]='s s2[-1]=en s2[0]=to s2[1]=me s2[2]=er s3[-2]=t's s3[-1]=ten s3[0]= s3[1]=ome s3[2]=her s4[-2]=et's s4[-1]=sten s4[0]= s4[1]=Come s4[2]=ther 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=let's|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|Come w[1]|w[2]=Come|together pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|TO pos[1]|pos[2]=TO|TO chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L'L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=NO|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=let's w[-4..-1]=listen w[1..4]=Come w[1..4]=together w[1..4]=by w[1..4]=Beatles +song w[-2]=listen w[-1]=to w[0]=Come w[1]=together w[2]=by wl[-2]=listen wl[-1]=to wl[0]=come wl[1]=together wl[2]=by pos[-2]=PRP pos[-1]=VB pos[0]=TO pos[1]=TO pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=ULLL shape[1]=LLLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=C p1[1]=t p1[2]=b p2[-2]=li p2[-1]=to p2[0]=Co p2[1]=to p2[2]=by p3[-2]=lis p3[-1]= p3[0]=Com p3[1]=tog p3[2]= p4[-2]=list p4[-1]= p4[0]=Come p4[1]=toge p4[2]= s1[-2]=n s1[-1]=o s1[0]=e s1[1]=r s1[2]=y s2[-2]=en s2[-1]=to s2[0]=me s2[1]=er s2[2]=by s3[-2]=ten s3[-1]= s3[0]=ome s3[1]=her s3[2]= s4[-2]=sten s4[-1]= s4[0]=Come s4[1]=ther s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|Come w[0]|w[1]=Come|together w[1]|w[2]=together|by pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|TO pos[0]|pos[1]=TO|TO pos[1]|pos[2]=TO|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=let's w[-4..-1]=listen w[-4..-1]=to w[1..4]=together w[1..4]=by w[1..4]=Beatles +song w[-2]=to w[-1]=Come w[0]=together w[1]=by w[2]=Beatles wl[-2]=to wl[-1]=come wl[0]=together wl[1]=by wl[2]=beatles pos[-2]=VB pos[-1]=TO pos[0]=TO pos[1]=RB pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=ULLL shape[0]=LLLLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=t p1[-1]=C p1[0]=t p1[1]=b p1[2]=B p2[-2]=to p2[-1]=Co p2[0]=to p2[1]=by p2[2]=Be p3[-2]= p3[-1]=Com p3[0]=tog p3[1]= p3[2]=Bea p4[-2]= p4[-1]=Come p4[0]=toge p4[1]= p4[2]=Beat s1[-2]=o s1[-1]=e s1[0]=r s1[1]=y s1[2]=s s2[-2]=to s2[-1]=me s2[0]=er s2[1]=by s2[2]=es s3[-2]= s3[-1]=ome s3[0]=her s3[1]= s3[2]=les s4[-2]= s4[-1]=Come s4[0]=ther s4[1]= s4[2]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|Come w[-1]|w[0]=Come|together w[0]|w[1]=together|by w[1]|w[2]=by|Beatles pos[-2]|pos[-1]=VB|TO pos[-1]|pos[0]=TO|TO pos[0]|pos[1]=TO|RB pos[1]|pos[2]=RB|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=let's w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Come w[1..4]=by w[1..4]=Beatles +O w[-2]=Come w[-1]=together w[0]=by w[1]=Beatles wl[-2]=come wl[-1]=together wl[0]=by wl[1]=beatles pos[-2]=TO pos[-1]=TO pos[0]=RB pos[1]=IN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULLL shape[-1]=LLLLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=C p1[-1]=t p1[0]=b p1[1]=B p2[-2]=Co p2[-1]=to p2[0]=by p2[1]=Be p3[-2]=Com p3[-1]=tog p3[0]= p3[1]=Bea p4[-2]=Come p4[-1]=toge p4[0]= p4[1]=Beat s1[-2]=e s1[-1]=r s1[0]=y s1[1]=s s2[-2]=me s2[-1]=er s2[0]=by s2[1]=es s3[-2]=ome s3[-1]=her s3[0]= s3[1]=les s4[-2]=Come s4[-1]=ther s4[0]= s4[1]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Come|together w[-1]|w[0]=together|by w[0]|w[1]=by|Beatles pos[-2]|pos[-1]=TO|TO pos[-1]|pos[0]=TO|RB pos[0]|pos[1]=RB|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Come w[-4..-1]=together w[1..4]=Beatles +artist w[-2]=together w[-1]=by w[0]=Beatles wl[-2]=together wl[-1]=by wl[0]=beatles pos[-2]=TO pos[-1]=RB pos[0]=IN chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=LLLLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=b p1[0]=B p2[-2]=to p2[-1]=by p2[0]=Be p3[-2]=tog p3[-1]= p3[0]=Bea p4[-2]=toge p4[-1]= p4[0]=Beat s1[-2]=r s1[-1]=y s1[0]=s s2[-2]=er s2[-1]=by s2[0]=es s3[-2]=her s3[-1]= s3[0]=les s4[-2]=ther s4[-1]= s4[0]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=together|by w[-1]|w[0]=by|Beatles pos[-2]|pos[-1]=TO|RB pos[-1]|pos[0]=RB|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=to w[-4..-1]=Come w[-4..-1]=together w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=songs w[2]=by wl[0]=play wl[1]=songs wl[2]=by pos[0]=VBP pos[1]=NNS pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=son p3[2]= p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=s s1[2]=y s2[0]=ay s2[1]=gs s2[2]=by s3[0]=lay s3[1]=ngs s3[2]= s4[0]=play s4[1]=ongs s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|songs w[1]|w[2]=songs|by pos[0]|pos[1]=VBP|NNS pos[1]|pos[2]=NNS|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=songs w[1..4]=by w[1..4]=Enrique w[1..4]=Iglesias __BOS__ +O w[-1]=play w[0]=songs w[1]=by w[2]=Enrique wl[-1]=play wl[0]=songs wl[1]=by wl[2]=enrique pos[-1]=VBP pos[0]=NNS pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=E p2[-1]=pl p2[0]=so p2[1]=by p2[2]=En p3[-1]=pla p3[0]=son p3[1]= p3[2]=Enr p4[-1]=play p4[0]=song p4[1]= p4[2]=Enri s1[-1]=y s1[0]=s s1[1]=y s1[2]=e s2[-1]=ay s2[0]=gs s2[1]=by s2[2]=ue s3[-1]=lay s3[0]=ngs s3[1]= s3[2]=que s4[-1]=play s4[0]=ongs s4[1]= s4[2]=ique 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|songs w[0]|w[1]=songs|by w[1]|w[2]=by|Enrique pos[-1]|pos[0]=VBP|NNS pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Enrique w[1..4]=Iglesias +O w[-2]=play w[-1]=songs w[0]=by w[1]=Enrique w[2]=Iglesias wl[-2]=play wl[-1]=songs wl[0]=by wl[1]=enrique wl[2]=iglesias pos[-2]=VBP pos[-1]=NNS pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLLLL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=b p1[1]=E p1[2]=I p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=En p2[2]=Ig p3[-2]=pla p3[-1]=son p3[0]= p3[1]=Enr p3[2]=Igl p4[-2]=play p4[-1]=song p4[0]= p4[1]=Enri p4[2]=Igle s1[-2]=y s1[-1]=s s1[0]=y s1[1]=e s1[2]=s s2[-2]=ay s2[-1]=gs s2[0]=by s2[1]=ue s2[2]=as s3[-2]=lay s3[-1]=ngs s3[0]= s3[1]=que s3[2]=ias s4[-2]=play s4[-1]=ongs s4[0]= s4[1]=ique s4[2]=sias 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|songs w[-1]|w[0]=songs|by w[0]|w[1]=by|Enrique w[1]|w[2]=Enrique|Iglesias pos[-2]|pos[-1]=VBP|NNS pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=songs w[1..4]=Enrique w[1..4]=Iglesias +artist w[-2]=songs w[-1]=by w[0]=Enrique w[1]=Iglesias wl[-2]=songs wl[-1]=by wl[0]=enrique wl[1]=iglesias pos[-2]=NNS pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLLLL shape[1]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=b p1[0]=E p1[1]=I p2[-2]=so p2[-1]=by p2[0]=En p2[1]=Ig p3[-2]=son p3[-1]= p3[0]=Enr p3[1]=Igl p4[-2]=song p4[-1]= p4[0]=Enri p4[1]=Igle s1[-2]=s s1[-1]=y s1[0]=e s1[1]=s s2[-2]=gs s2[-1]=by s2[0]=ue s2[1]=as s3[-2]=ngs s3[-1]= s3[0]=que s3[1]=ias s4[-2]=ongs s4[-1]= s4[0]=ique s4[1]=sias 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=songs|by w[-1]|w[0]=by|Enrique w[0]|w[1]=Enrique|Iglesias pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=songs w[-4..-1]=by w[1..4]=Iglesias +artist w[-2]=by w[-1]=Enrique w[0]=Iglesias wl[-2]=by wl[-1]=enrique wl[0]=iglesias pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLLL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=E p1[0]=I p2[-2]=by p2[-1]=En p2[0]=Ig p3[-2]= p3[-1]=Enr p3[0]=Igl p4[-2]= p4[-1]=Enri p4[0]=Igle s1[-2]=y s1[-1]=e s1[0]=s s2[-2]=by s2[-1]=ue s2[0]=as s3[-2]= s3[-1]=que s3[0]=ias s4[-2]= s4[-1]=ique s4[0]=sias 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Enrique w[-1]|w[0]=Enrique|Iglesias pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=songs w[-4..-1]=by w[-4..-1]=Enrique __EOS__ + +O w[0]=play w[1]=an w[2]=album wl[0]=play wl[1]=an wl[2]=album pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=a p2[0]=pl p2[1]=an p2[2]=al p3[0]=pla p3[1]= p3[2]=alb p4[0]=play p4[1]= p4[2]=albu s1[0]=y s1[1]=n s1[2]=m s2[0]=ay s2[1]=an s2[2]=um s3[0]=lay s3[1]= s3[2]=bum s4[0]=play s4[1]= s4[2]=lbum 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|an w[1]|w[2]=an|album pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=an w[1..4]=album w[1..4]=by w[1..4]=Madonna __BOS__ +O w[-1]=play w[0]=an w[1]=album w[2]=by wl[-1]=play wl[0]=an wl[1]=album wl[2]=by pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=a p1[2]=b p2[-1]=pl p2[0]=an p2[1]=al p2[2]=by p3[-1]=pla p3[0]= p3[1]=alb p3[2]= p4[-1]=play p4[0]= p4[1]=albu p4[2]= s1[-1]=y s1[0]=n s1[1]=m s1[2]=y s2[-1]=ay s2[0]=an s2[1]=um s2[2]=by s3[-1]=lay s3[0]= s3[1]=bum s3[2]= s4[-1]=play s4[0]= s4[1]=lbum s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|an w[0]|w[1]=an|album w[1]|w[2]=album|by pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=album w[1..4]=by w[1..4]=Madonna +O w[-2]=play w[-1]=an w[0]=album w[1]=by w[2]=Madonna wl[-2]=play wl[-1]=an wl[0]=album wl[1]=by wl[2]=madonna pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=a p1[1]=b p1[2]=M p2[-2]=pl p2[-1]=an p2[0]=al p2[1]=by p2[2]=Ma p3[-2]=pla p3[-1]= p3[0]=alb p3[1]= p3[2]=Mad p4[-2]=play p4[-1]= p4[0]=albu p4[1]= p4[2]=Mado s1[-2]=y s1[-1]=n s1[0]=m s1[1]=y s1[2]=a s2[-2]=ay s2[-1]=an s2[0]=um s2[1]=by s2[2]=na s3[-2]=lay s3[-1]= s3[0]=bum s3[1]= s3[2]=nna s4[-2]=play s4[-1]= s4[0]=lbum s4[1]= s4[2]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|an w[-1]|w[0]=an|album w[0]|w[1]=album|by w[1]|w[2]=by|Madonna pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=an w[1..4]=by w[1..4]=Madonna +O w[-2]=an w[-1]=album w[0]=by w[1]=Madonna wl[-2]=an wl[-1]=album wl[0]=by wl[1]=madonna pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=a p1[-1]=a p1[0]=b p1[1]=M p2[-2]=an p2[-1]=al p2[0]=by p2[1]=Ma p3[-2]= p3[-1]=alb p3[0]= p3[1]=Mad p4[-2]= p4[-1]=albu p4[0]= p4[1]=Mado s1[-2]=n s1[-1]=m s1[0]=y s1[1]=a s2[-2]=an s2[-1]=um s2[0]=by s2[1]=na s3[-2]= s3[-1]=bum s3[0]= s3[1]=nna s4[-2]= s4[-1]=lbum s4[0]= s4[1]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=an|album w[-1]|w[0]=album|by w[0]|w[1]=by|Madonna pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=an w[-4..-1]=album w[1..4]=Madonna +artist w[-2]=album w[-1]=by w[0]=Madonna wl[-2]=album wl[-1]=by wl[0]=madonna pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=a p1[-1]=b p1[0]=M p2[-2]=al p2[-1]=by p2[0]=Ma p3[-2]=alb p3[-1]= p3[0]=Mad p4[-2]=albu p4[-1]= p4[0]=Mado s1[-2]=m s1[-1]=y s1[0]=a s2[-2]=um s2[-1]=by s2[0]=na s3[-2]=bum s3[-1]= s3[0]=nna s4[-2]=lbum s4[-1]= s4[0]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=album|by w[-1]|w[0]=by|Madonna pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=an w[-4..-1]=album w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=Nirvana wl[0]=play wl[1]=nirvana pos[0]=VB pos[1]=NNP chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=ULLLLLL shaped[0]=L shaped[1]=UL type[0]=AllLetter type[1]=InitUpper p1[0]=p p1[1]=N p2[0]=pl p2[1]=Ni p3[0]=pla p3[1]=Nir p4[0]=play p4[1]=Nirv s1[0]=y s1[1]=a s2[0]=ay s2[1]=na s3[0]=lay s3[1]=ana s4[0]=play s4[1]=vana 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|Nirvana pos[0]|pos[1]=VB|NNP chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|UL type[0]|type[1]=AllLetter|InitUpper w[1..4]=Nirvana __BOS__ +artist w[-1]=play w[0]=Nirvana wl[-1]=play wl[0]=nirvana pos[-1]=VB pos[0]=NNP chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=ULLLLLL shaped[-1]=L shaped[0]=UL type[-1]=AllLetter type[0]=InitUpper p1[-1]=p p1[0]=N p2[-1]=pl p2[0]=Ni p3[-1]=pla p3[0]=Nir p4[-1]=play p4[0]=Nirv s1[-1]=y s1[0]=a s2[-1]=ay s2[0]=na s3[-1]=lay s3[0]=ana s4[-1]=play s4[0]=vana 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|Nirvana pos[-1]|pos[0]=VB|NNP chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|UL type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play __EOS__ + +O w[0]=please w[1]=play w[2]=song wl[0]=please wl[1]=play wl[2]=song pos[0]=UH pos[1]=VB pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=p p1[2]=s p2[0]=pl p2[1]=pl p2[2]=so p3[0]=ple p3[1]=pla p3[2]=son p4[0]=plea p4[1]=play p4[2]=song s1[0]=e s1[1]=y s1[2]=g s2[0]=se s2[1]=ay s2[2]=ng s3[0]=ase s3[1]=lay s3[2]=ong s4[0]=ease s4[1]=play s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=please|play w[1]|w[2]=play|song pos[0]|pos[1]=UH|VB pos[1]|pos[2]=VB|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=play w[1..4]=song w[1..4]=Secret w[1..4]=Love __BOS__ +O w[-1]=please w[0]=play w[1]=song w[2]=Secret wl[-1]=please wl[0]=play wl[1]=song wl[2]=secret pos[-1]=UH pos[0]=VB pos[1]=NN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLL shape[2]=ULLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=p p1[1]=s p1[2]=S p2[-1]=pl p2[0]=pl p2[1]=so p2[2]=Se p3[-1]=ple p3[0]=pla p3[1]=son p3[2]=Sec p4[-1]=plea p4[0]=play p4[1]=song p4[2]=Secr s1[-1]=e s1[0]=y s1[1]=g s1[2]=t s2[-1]=se s2[0]=ay s2[1]=ng s2[2]=et s3[-1]=ase s3[0]=lay s3[1]=ong s3[2]=ret s4[-1]=ease s4[0]=play s4[1]=song s4[2]=cret 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=please|play w[0]|w[1]=play|song w[1]|w[2]=song|Secret pos[-1]|pos[0]=UH|VB pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=please w[1..4]=song w[1..4]=Secret w[1..4]=Love w[1..4]=Song +O w[-2]=please w[-1]=play w[0]=song w[1]=Secret w[2]=Love wl[-2]=please wl[-1]=play wl[0]=song wl[1]=secret wl[2]=love pos[-2]=UH pos[-1]=VB pos[0]=NN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=ULLLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=p p1[0]=s p1[1]=S p1[2]=L p2[-2]=pl p2[-1]=pl p2[0]=so p2[1]=Se p2[2]=Lo p3[-2]=ple p3[-1]=pla p3[0]=son p3[1]=Sec p3[2]=Lov p4[-2]=plea p4[-1]=play p4[0]=song p4[1]=Secr p4[2]=Love s1[-2]=e s1[-1]=y s1[0]=g s1[1]=t s1[2]=e s2[-2]=se s2[-1]=ay s2[0]=ng s2[1]=et s2[2]=ve s3[-2]=ase s3[-1]=lay s3[0]=ong s3[1]=ret s3[2]=ove s4[-2]=ease s4[-1]=play s4[0]=song s4[1]=cret s4[2]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=please|play w[-1]|w[0]=play|song w[0]|w[1]=song|Secret w[1]|w[2]=Secret|Love pos[-2]|pos[-1]=UH|VB pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=please w[-4..-1]=play w[1..4]=Secret w[1..4]=Love w[1..4]=Song +genre w[-2]=play w[-1]=song w[0]=Secret w[1]=Love w[2]=Song wl[-2]=play wl[-1]=song wl[0]=secret wl[1]=love wl[2]=song pos[-2]=VB pos[-1]=NN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULLLLL shape[1]=ULLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=S p1[1]=L p1[2]=S p2[-2]=pl p2[-1]=so p2[0]=Se p2[1]=Lo p2[2]=So p3[-2]=pla p3[-1]=son p3[0]=Sec p3[1]=Lov p3[2]=Son p4[-2]=play p4[-1]=song p4[0]=Secr p4[1]=Love p4[2]=Song s1[-2]=y s1[-1]=g s1[0]=t s1[1]=e s1[2]=g s2[-2]=ay s2[-1]=ng s2[0]=et s2[1]=ve s2[2]=ng s3[-2]=lay s3[-1]=ong s3[0]=ret s3[1]=ove s3[2]=ong s4[-2]=play s4[-1]=song s4[0]=cret s4[1]=Love s4[2]=Song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|Secret w[0]|w[1]=Secret|Love w[1]|w[2]=Love|Song pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=please w[-4..-1]=play w[-4..-1]=song w[1..4]=Love w[1..4]=Song +genre w[-2]=song w[-1]=Secret w[0]=Love w[1]=Song wl[-2]=song wl[-1]=secret wl[0]=love wl[1]=song pos[-2]=NN pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=ULLL shape[1]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=S p1[0]=L p1[1]=S p2[-2]=so p2[-1]=Se p2[0]=Lo p2[1]=So p3[-2]=son p3[-1]=Sec p3[0]=Lov p3[1]=Son p4[-2]=song p4[-1]=Secr p4[0]=Love p4[1]=Song s1[-2]=g s1[-1]=t s1[0]=e s1[1]=g s2[-2]=ng s2[-1]=et s2[0]=ve s2[1]=ng s3[-2]=ong s3[-1]=ret s3[0]=ove s3[1]=ong s4[-2]=song s4[-1]=cret s4[0]=Love s4[1]=Song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|Secret w[-1]|w[0]=Secret|Love w[0]|w[1]=Love|Song pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=please w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Secret w[1..4]=Song +genre w[-2]=Secret w[-1]=Love w[0]=Song wl[-2]=secret wl[-1]=love wl[0]=song pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULLLLL shape[-1]=ULLL shape[0]=ULLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper p1[-2]=S p1[-1]=L p1[0]=S p2[-2]=Se p2[-1]=Lo p2[0]=So p3[-2]=Sec p3[-1]=Lov p3[0]=Son p4[-2]=Secr p4[-1]=Love p4[0]=Song s1[-2]=t s1[-1]=e s1[0]=g s2[-2]=et s2[-1]=ve s2[0]=ng s3[-2]=ret s3[-1]=ove s3[0]=ong s4[-2]=cret s4[-1]=Love s4[0]=Song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Secret|Love w[-1]|w[0]=Love|Song pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=Secret w[-4..-1]=Love __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=the w[1..4]=song __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=the wl[-1]=can wl[0]=you wl[1]=play wl[2]=the pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=t p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=th p3[-1]=can p3[0]=you p3[1]=pla p3[2]=the p4[-1]= p4[0]= p4[1]=play p4[2]= s1[-1]=n s1[0]=u s1[1]=y s1[2]=e s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=he s3[-1]=can s3[0]=you s3[1]=lay s3[2]=the s4[-1]= s4[0]= s4[1]=play s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|the pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=play w[1..4]=the w[1..4]=song w[1..4]=Beauty +O w[-2]=can w[-1]=you w[0]=play w[1]=the w[2]=song wl[-2]=can wl[-1]=you wl[0]=play wl[1]=the wl[2]=song pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=DT pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=t p1[2]=s p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=th p2[2]=so p3[-2]=can p3[-1]=you p3[0]=pla p3[1]=the p3[2]=son p4[-2]= p4[-1]= p4[0]=play p4[1]= p4[2]=song s1[-2]=n s1[-1]=u s1[0]=y s1[1]=e s1[2]=g s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=he s2[2]=ng s3[-2]=can s3[-1]=you s3[0]=lay s3[1]=the s3[2]=ong s4[-2]= s4[-1]= s4[0]=play s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|the w[1]|w[2]=the|song pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=the w[1..4]=song w[1..4]=Beauty w[1..4]=and +O w[-2]=you w[-1]=play w[0]=the w[1]=song w[2]=Beauty wl[-2]=you wl[-1]=play wl[0]=the wl[1]=song wl[2]=beauty pos[-2]=PRP pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=y p1[-1]=p p1[0]=t p1[1]=s p1[2]=B p2[-2]=yo p2[-1]=pl p2[0]=th p2[1]=so p2[2]=Be p3[-2]=you p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Bea p4[-2]= p4[-1]=play p4[0]= p4[1]=song p4[2]=Beau s1[-2]=u s1[-1]=y s1[0]=e s1[1]=g s1[2]=y s2[-2]=ou s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=ty s3[-2]=you s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=uty s4[-2]= s4[-1]=play s4[0]= s4[1]=song s4[2]=auty 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Beauty pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[1..4]=song w[1..4]=Beauty w[1..4]=and w[1..4]=a +O w[-2]=play w[-1]=the w[0]=song w[1]=Beauty w[2]=and wl[-2]=play wl[-1]=the wl[0]=song wl[1]=beauty wl[2]=and pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p1[1]=B p1[2]=a p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=Be p2[2]=an p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Bea p3[2]=and p4[-2]=play p4[-1]= p4[0]=song p4[1]=Beau p4[2]= s1[-2]=y s1[-1]=e s1[0]=g s1[1]=y s1[2]=d s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=ty s2[2]=nd s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=uty s3[2]=and s4[-2]=play s4[-1]= s4[0]=song s4[1]=auty s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Beauty w[1]|w[2]=Beauty|and pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play w[-4..-1]=the w[1..4]=Beauty w[1..4]=and w[1..4]=a w[1..4]=Beat +song w[-2]=the w[-1]=song w[0]=Beauty w[1]=and w[2]=a wl[-2]=the wl[-1]=song wl[0]=beauty wl[1]=and wl[2]=a pos[-2]=DT pos[-1]=JJ pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLLL shape[1]=LLL shape[2]=L shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=s p1[0]=B p1[1]=a p1[2]=a p2[-2]=th p2[-1]=so p2[0]=Be p2[1]=an p2[2]= p3[-2]=the p3[-1]=son p3[0]=Bea p3[1]=and p3[2]= p4[-2]= p4[-1]=song p4[0]=Beau p4[1]= p4[2]= s1[-2]=e s1[-1]=g s1[0]=y s1[1]=d s1[2]=a s2[-2]=he s2[-1]=ng s2[0]=ty s2[1]=nd s2[2]= s3[-2]=the s3[-1]=ong s3[0]=uty s3[1]=and s3[2]= s4[-2]= s4[-1]=song s4[0]=auty s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Beauty w[0]|w[1]=Beauty|and w[1]|w[2]=and|a pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=you w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[1..4]=and w[1..4]=a w[1..4]=Beat +song w[-2]=song w[-1]=Beauty w[0]=and w[1]=a w[2]=Beat wl[-2]=song wl[-1]=beauty wl[0]=and wl[1]=a wl[2]=beat pos[-2]=JJ pos[-1]=NNP pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=LLL shape[1]=L shape[2]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=B p1[0]=a p1[1]=a p1[2]=B p2[-2]=so p2[-1]=Be p2[0]=an p2[1]= p2[2]=Be p3[-2]=son p3[-1]=Bea p3[0]=and p3[1]= p3[2]=Bea p4[-2]=song p4[-1]=Beau p4[0]= p4[1]= p4[2]=Beat s1[-2]=g s1[-1]=y s1[0]=d s1[1]=a s1[2]=t s2[-2]=ng s2[-1]=ty s2[0]=nd s2[1]= s2[2]=at s3[-2]=ong s3[-1]=uty s3[0]=and s3[1]= s3[2]=eat s4[-2]=song s4[-1]=auty s4[0]= s4[1]= s4[2]=Beat 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Beauty w[-1]|w[0]=Beauty|and w[0]|w[1]=and|a w[1]|w[2]=a|Beat pos[-2]|pos[-1]=JJ|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Beauty w[1..4]=a w[1..4]=Beat +song w[-2]=Beauty w[-1]=and w[0]=a w[1]=Beat wl[-2]=beauty wl[-1]=and wl[0]=a wl[1]=beat pos[-2]=NNP pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLLLL shape[-1]=LLL shape[0]=L shape[1]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=B p1[-1]=a p1[0]=a p1[1]=B p2[-2]=Be p2[-1]=an p2[0]= p2[1]=Be p3[-2]=Bea p3[-1]=and p3[0]= p3[1]=Bea p4[-2]=Beau p4[-1]= p4[0]= p4[1]=Beat s1[-2]=y s1[-1]=d s1[0]=a s1[1]=t s2[-2]=ty s2[-1]=nd s2[0]= s2[1]=at s3[-2]=uty s3[-1]=and s3[0]= s3[1]=eat s4[-2]=auty s4[-1]= s4[0]= s4[1]=Beat 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Beauty|and w[-1]|w[0]=and|a w[0]|w[1]=a|Beat pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Beauty w[-4..-1]=and w[1..4]=Beat +song w[-2]=and w[-1]=a w[0]=Beat wl[-2]=and wl[-1]=a wl[0]=beat pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLL shape[-1]=L shape[0]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=a p1[-1]=a p1[0]=B p2[-2]=an p2[-1]= p2[0]=Be p3[-2]=and p3[-1]= p3[0]=Bea p4[-2]= p4[-1]= p4[0]=Beat s1[-2]=d s1[-1]=a s1[0]=t s2[-2]=nd s2[-1]= s2[0]=at s3[-2]=and s3[-1]= s3[0]=eat s4[-2]= s4[-1]= s4[0]=Beat 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=and|a w[-1]|w[0]=a|Beat pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=song w[-4..-1]=Beauty w[-4..-1]=and w[-4..-1]=a __EOS__ + +O w[0]=play w[1]=I w[2]=Will wl[0]=play wl[1]=i wl[2]=will pos[0]=VB pos[1]=PRP pos[2]=PRP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=U shape[2]=ULLL shaped[0]=L shaped[1]=U shaped[2]=UL type[0]=AllLetter type[1]=AllUpper type[2]=InitUpper p1[0]=p p1[1]=I p1[2]=W p2[0]=pl p2[1]= p2[2]=Wi p3[0]=pla p3[1]= p3[2]=Wil p4[0]=play p4[1]= p4[2]=Will s1[0]=y s1[1]=I s1[2]=l s2[0]=ay s2[1]= s2[2]=ll s3[0]=lay s3[1]= s3[2]=ill s4[0]=play s4[1]= s4[2]=Will 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=yes au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|I w[1]|w[2]=I|Will pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|PRP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|UL type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|InitUpper w[1..4]=I w[1..4]=Will w[1..4]=Always w[1..4]=Love __BOS__ +song w[-1]=play w[0]=I w[1]=Will w[2]=Always wl[-1]=play wl[0]=i wl[1]=will wl[2]=always pos[-1]=VB pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=U shape[1]=ULLL shape[2]=ULLLLL shaped[-1]=L shaped[0]=U shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=I p1[1]=W p1[2]=A p2[-1]=pl p2[0]= p2[1]=Wi p2[2]=Al p3[-1]=pla p3[0]= p3[1]=Wil p3[2]=Alw p4[-1]=play p4[0]= p4[1]=Will p4[2]=Alwa s1[-1]=y s1[0]=I s1[1]=l s1[2]=s s2[-1]=ay s2[0]= s2[1]=ll s2[2]=ys s3[-1]=lay s3[0]= s3[1]=ill s3[2]=ays s4[-1]=play s4[0]= s4[1]=Will s4[2]=ways 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=yes au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|I w[0]|w[1]=I|Will w[1]|w[2]=Will|Always pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Will w[1..4]=Always w[1..4]=Love w[1..4]=You +song w[-2]=play w[-1]=I w[0]=Will w[1]=Always w[2]=Love wl[-2]=play wl[-1]=i wl[0]=will wl[1]=always wl[2]=love pos[-2]=VB pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=U shape[0]=ULLL shape[1]=ULLLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=U shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=I p1[0]=W p1[1]=A p1[2]=L p2[-2]=pl p2[-1]= p2[0]=Wi p2[1]=Al p2[2]=Lo p3[-2]=pla p3[-1]= p3[0]=Wil p3[1]=Alw p3[2]=Lov p4[-2]=play p4[-1]= p4[0]=Will p4[1]=Alwa p4[2]=Love s1[-2]=y s1[-1]=I s1[0]=l s1[1]=s s1[2]=e s2[-2]=ay s2[-1]= s2[0]=ll s2[1]=ys s2[2]=ve s3[-2]=lay s3[-1]= s3[0]=ill s3[1]=ays s3[2]=ove s4[-2]=play s4[-1]= s4[0]=Will s4[1]=ways s4[2]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|I w[-1]|w[0]=I|Will w[0]|w[1]=Will|Always w[1]|w[2]=Always|Love pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=I w[1..4]=Always w[1..4]=Love w[1..4]=You w[1..4]=from +song w[-2]=I w[-1]=Will w[0]=Always w[1]=Love w[2]=You wl[-2]=i wl[-1]=will wl[0]=always wl[1]=love wl[2]=you pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=U shape[-1]=ULLL shape[0]=ULLLLL shape[1]=ULLL shape[2]=ULL shaped[-2]=U shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=I p1[-1]=W p1[0]=A p1[1]=L p1[2]=Y p2[-2]= p2[-1]=Wi p2[0]=Al p2[1]=Lo p2[2]=Yo p3[-2]= p3[-1]=Wil p3[0]=Alw p3[1]=Lov p3[2]=You p4[-2]= p4[-1]=Will p4[0]=Alwa p4[1]=Love p4[2]= s1[-2]=I s1[-1]=l s1[0]=s s1[1]=e s1[2]=u s2[-2]= s2[-1]=ll s2[0]=ys s2[1]=ve s2[2]=ou s3[-2]= s3[-1]=ill s3[0]=ays s3[1]=ove s3[2]=You s4[-2]= s4[-1]=Will s4[0]=ways s4[1]=Love s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|Will w[-1]|w[0]=Will|Always w[0]|w[1]=Always|Love w[1]|w[2]=Love|You pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=U|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=I w[-4..-1]=Will w[1..4]=Love w[1..4]=You w[1..4]=from w[1..4]=Whitney +song w[-2]=Will w[-1]=Always w[0]=Love w[1]=You w[2]=from wl[-2]=will wl[-1]=always wl[0]=love wl[1]=you wl[2]=from pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLL shape[-1]=ULLLLL shape[0]=ULLL shape[1]=ULL shape[2]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=W p1[-1]=A p1[0]=L p1[1]=Y p1[2]=f p2[-2]=Wi p2[-1]=Al p2[0]=Lo p2[1]=Yo p2[2]=fr p3[-2]=Wil p3[-1]=Alw p3[0]=Lov p3[1]=You p3[2]=fro p4[-2]=Will p4[-1]=Alwa p4[0]=Love p4[1]= p4[2]=from s1[-2]=l s1[-1]=s s1[0]=e s1[1]=u s1[2]=m s2[-2]=ll s2[-1]=ys s2[0]=ve s2[1]=ou s2[2]=om s3[-2]=ill s3[-1]=ays s3[0]=ove s3[1]=You s3[2]=rom s4[-2]=Will s4[-1]=ways s4[0]=Love s4[1]= s4[2]=from 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Will|Always w[-1]|w[0]=Always|Love w[0]|w[1]=Love|You w[1]|w[2]=You|from pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=I w[-4..-1]=Will w[-4..-1]=Always w[1..4]=You w[1..4]=from w[1..4]=Whitney w[1..4]=Houston +song w[-2]=Always w[-1]=Love w[0]=You w[1]=from w[2]=Whitney wl[-2]=always wl[-1]=love wl[0]=you wl[1]=from wl[2]=whitney pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLLLL shape[-1]=ULLL shape[0]=ULL shape[1]=LLLL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=A p1[-1]=L p1[0]=Y p1[1]=f p1[2]=W p2[-2]=Al p2[-1]=Lo p2[0]=Yo p2[1]=fr p2[2]=Wh p3[-2]=Alw p3[-1]=Lov p3[0]=You p3[1]=fro p3[2]=Whi p4[-2]=Alwa p4[-1]=Love p4[0]= p4[1]=from p4[2]=Whit s1[-2]=s s1[-1]=e s1[0]=u s1[1]=m s1[2]=y s2[-2]=ys s2[-1]=ve s2[0]=ou s2[1]=om s2[2]=ey s3[-2]=ays s3[-1]=ove s3[0]=You s3[1]=rom s3[2]=ney s4[-2]=ways s4[-1]=Love s4[0]= s4[1]=from s4[2]=tney 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Always|Love w[-1]|w[0]=Love|You w[0]|w[1]=You|from w[1]|w[2]=from|Whitney pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=I w[-4..-1]=Will w[-4..-1]=Always w[-4..-1]=Love w[1..4]=from w[1..4]=Whitney w[1..4]=Houston +O w[-2]=Love w[-1]=You w[0]=from w[1]=Whitney w[2]=Houston wl[-2]=love wl[-1]=you wl[0]=from wl[1]=whitney wl[2]=houston pos[-2]=PRP pos[-1]=PRP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=ULL shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=L p1[-1]=Y p1[0]=f p1[1]=W p1[2]=H p2[-2]=Lo p2[-1]=Yo p2[0]=fr p2[1]=Wh p2[2]=Ho p3[-2]=Lov p3[-1]=You p3[0]=fro p3[1]=Whi p3[2]=Hou p4[-2]=Love p4[-1]= p4[0]=from p4[1]=Whit p4[2]=Hous s1[-2]=e s1[-1]=u s1[0]=m s1[1]=y s1[2]=n s2[-2]=ve s2[-1]=ou s2[0]=om s2[1]=ey s2[2]=on s3[-2]=ove s3[-1]=You s3[0]=rom s3[1]=ney s3[2]=ton s4[-2]=Love s4[-1]= s4[0]=from s4[1]=tney s4[2]=ston 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Love|You w[-1]|w[0]=You|from w[0]|w[1]=from|Whitney w[1]|w[2]=Whitney|Houston pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=Will w[-4..-1]=Always w[-4..-1]=Love w[-4..-1]=You w[1..4]=Whitney w[1..4]=Houston +artist w[-2]=You w[-1]=from w[0]=Whitney w[1]=Houston wl[-2]=you wl[-1]=from wl[0]=whitney wl[1]=houston pos[-2]=PRP pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULL shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=Y p1[-1]=f p1[0]=W p1[1]=H p2[-2]=Yo p2[-1]=fr p2[0]=Wh p2[1]=Ho p3[-2]=You p3[-1]=fro p3[0]=Whi p3[1]=Hou p4[-2]= p4[-1]=from p4[0]=Whit p4[1]=Hous s1[-2]=u s1[-1]=m s1[0]=y s1[1]=n s2[-2]=ou s2[-1]=om s2[0]=ey s2[1]=on s3[-2]=You s3[-1]=rom s3[0]=ney s3[1]=ton s4[-2]= s4[-1]=from s4[0]=tney s4[1]=ston 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=You|from w[-1]|w[0]=from|Whitney w[0]|w[1]=Whitney|Houston pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Always w[-4..-1]=Love w[-4..-1]=You w[-4..-1]=from w[1..4]=Houston +artist w[-2]=from w[-1]=Whitney w[0]=Houston wl[-2]=from wl[-1]=whitney wl[0]=houston pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=f p1[-1]=W p1[0]=H p2[-2]=fr p2[-1]=Wh p2[0]=Ho p3[-2]=fro p3[-1]=Whi p3[0]=Hou p4[-2]=from p4[-1]=Whit p4[0]=Hous s1[-2]=m s1[-1]=y s1[0]=n s2[-2]=om s2[-1]=ey s2[0]=on s3[-2]=rom s3[-1]=ney s3[0]=ton s4[-2]=from s4[-1]=tney s4[0]=ston 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=from|Whitney w[-1]|w[0]=Whitney|Houston pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Love w[-4..-1]=You w[-4..-1]=from w[-4..-1]=Whitney __EOS__ + +O w[0]=can w[1]=you w[2]=start wl[0]=can wl[1]=you wl[2]=start pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=s p2[0]=ca p2[1]=yo p2[2]=st p3[0]=can p3[1]=you p3[2]=sta p4[0]= p4[1]= p4[2]=star s1[0]=n s1[1]=u s1[2]=t s2[0]=an s2[1]=ou s2[2]=rt s3[0]=can s3[1]=you s3[2]=art s4[0]= s4[1]= s4[2]=tart 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|start pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=start w[1..4]=playing w[1..4]=music __BOS__ +O w[-1]=can w[0]=you w[1]=start w[2]=playing wl[-1]=can wl[0]=you wl[1]=start wl[2]=playing pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=VBG chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLLL shape[2]=LLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=s p1[2]=p p2[-1]=ca p2[0]=yo p2[1]=st p2[2]=pl p3[-1]=can p3[0]=you p3[1]=sta p3[2]=pla p4[-1]= p4[0]= p4[1]=star p4[2]=play s1[-1]=n s1[0]=u s1[1]=t s1[2]=g s2[-1]=an s2[0]=ou s2[1]=rt s2[2]=ng s3[-1]=can s3[0]=you s3[1]=art s3[2]=ing s4[-1]= s4[0]= s4[1]=tart s4[2]=ying 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|start w[1]|w[2]=start|playing pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|VBG chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=start w[1..4]=playing w[1..4]=music +O w[-2]=can w[-1]=you w[0]=start w[1]=playing w[2]=music wl[-2]=can wl[-1]=you wl[0]=start wl[1]=playing wl[2]=music pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=VBG pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLLL shape[1]=LLLLLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=s p1[1]=p p1[2]=m p2[-2]=ca p2[-1]=yo p2[0]=st p2[1]=pl p2[2]=mu p3[-2]=can p3[-1]=you p3[0]=sta p3[1]=pla p3[2]=mus p4[-2]= p4[-1]= p4[0]=star p4[1]=play p4[2]=musi s1[-2]=n s1[-1]=u s1[0]=t s1[1]=g s1[2]=c s2[-2]=an s2[-1]=ou s2[0]=rt s2[1]=ng s2[2]=ic s3[-2]=can s3[-1]=you s3[0]=art s3[1]=ing s3[2]=sic s4[-2]= s4[-1]= s4[0]=tart s4[1]=ying s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|start w[0]|w[1]=start|playing w[1]|w[2]=playing|music pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|VBG pos[1]|pos[2]=VBG|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=playing w[1..4]=music +O w[-2]=you w[-1]=start w[0]=playing w[1]=music wl[-2]=you wl[-1]=start wl[0]=playing wl[1]=music pos[-2]=PRP pos[-1]=VB pos[0]=VBG pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLLLL shape[0]=LLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=y p1[-1]=s p1[0]=p p1[1]=m p2[-2]=yo p2[-1]=st p2[0]=pl p2[1]=mu p3[-2]=you p3[-1]=sta p3[0]=pla p3[1]=mus p4[-2]= p4[-1]=star p4[0]=play p4[1]=musi s1[-2]=u s1[-1]=t s1[0]=g s1[1]=c s2[-2]=ou s2[-1]=rt s2[0]=ng s2[1]=ic s3[-2]=you s3[-1]=art s3[0]=ing s3[1]=sic s4[-2]= s4[-1]=tart s4[0]=ying s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=you|start w[-1]|w[0]=start|playing w[0]|w[1]=playing|music pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|VBG pos[0]|pos[1]=VBG|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=start w[1..4]=music +O w[-2]=start w[-1]=playing w[0]=music wl[-2]=start wl[-1]=playing wl[0]=music pos[-2]=VB pos[-1]=VBG pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=p p1[0]=m p2[-2]=st p2[-1]=pl p2[0]=mu p3[-2]=sta p3[-1]=pla p3[0]=mus p4[-2]=star p4[-1]=play p4[0]=musi s1[-2]=t s1[-1]=g s1[0]=c s2[-2]=rt s2[-1]=ng s2[0]=ic s3[-2]=art s3[-1]=ing s3[0]=sic s4[-2]=tart s4[-1]=ying s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=start|playing w[-1]|w[0]=playing|music pos[-2]|pos[-1]=VB|VBG pos[-1]|pos[0]=VBG|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=start w[-4..-1]=playing __EOS__ + +O w[0]=play w[1]=21 w[2]=by wl[0]=play wl[1]=21 wl[2]=by pos[0]=VB pos[1]=CD pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=DD shape[2]=LL shaped[0]=L shaped[1]=D shaped[2]=L type[0]=AllLetter type[1]=AllDigit type[2]=AllLetter p1[0]=p p1[1]=2 p1[2]=b p2[0]=pl p2[1]=21 p2[2]=by p3[0]=pla p3[1]= p3[2]= p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=1 s1[2]=y s2[0]=ay s2[1]=21 s2[2]=by s3[0]=lay s3[1]= s3[2]= s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=yes 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=yes ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=no cl[2]=yes ca[0]=yes ca[1]=no ca[2]=yes cd[0]=no cd[1]=yes cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|21 w[1]|w[2]=21|by pos[0]|pos[1]=VB|CD pos[1]|pos[2]=CD|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|D shaped[1]|shaped[2]=D|L type[0]|type[1]=AllLetter|AllDigit type[1]|type[2]=AllDigit|AllLetter w[1..4]=21 w[1..4]=by w[1..4]=Adele w[1..4]=on __BOS__ +song w[-1]=play w[0]=21 w[1]=by w[2]=Adele wl[-1]=play wl[0]=21 wl[1]=by wl[2]=adele pos[-1]=VB pos[0]=CD pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=DD shape[1]=LL shape[2]=ULLLL shaped[-1]=L shaped[0]=D shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllDigit type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=2 p1[1]=b p1[2]=A p2[-1]=pl p2[0]=21 p2[1]=by p2[2]=Ad p3[-1]=pla p3[0]= p3[1]= p3[2]=Ade p4[-1]=play p4[0]= p4[1]= p4[2]=Adel s1[-1]=y s1[0]=1 s1[1]=y s1[2]=e s2[-1]=ay s2[0]=21 s2[1]=by s2[2]=le s3[-1]=lay s3[0]= s3[1]= s3[2]=ele s4[-1]=play s4[0]= s4[1]= s4[2]=dele 2d[-1]=no 2d[0]=yes 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=yes ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=no ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|21 w[0]|w[1]=21|by w[1]|w[2]=by|Adele pos[-1]|pos[0]=VB|CD pos[0]|pos[1]=CD|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|D shaped[0]|shaped[1]=D|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllDigit type[0]|type[1]=AllDigit|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Adele w[1..4]=on w[1..4]=Spotify +O w[-2]=play w[-1]=21 w[0]=by w[1]=Adele w[2]=on wl[-2]=play wl[-1]=21 wl[0]=by wl[1]=adele wl[2]=on pos[-2]=VB pos[-1]=CD pos[0]=IN pos[1]=NNP pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=DD shape[0]=LL shape[1]=ULLLL shape[2]=LL shaped[-2]=L shaped[-1]=D shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllDigit type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=2 p1[0]=b p1[1]=A p1[2]=o p2[-2]=pl p2[-1]=21 p2[0]=by p2[1]=Ad p2[2]=on p3[-2]=pla p3[-1]= p3[0]= p3[1]=Ade p3[2]= p4[-2]=play p4[-1]= p4[0]= p4[1]=Adel p4[2]= s1[-2]=y s1[-1]=1 s1[0]=y s1[1]=e s1[2]=n s2[-2]=ay s2[-1]=21 s2[0]=by s2[1]=le s2[2]=on s3[-2]=lay s3[-1]= s3[0]= s3[1]=ele s3[2]= s4[-2]=play s4[-1]= s4[0]= s4[1]=dele s4[2]= 2d[-2]=no 2d[-1]=yes 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=yes ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|21 w[-1]|w[0]=21|by w[0]|w[1]=by|Adele w[1]|w[2]=Adele|on pos[-2]|pos[-1]=VB|CD pos[-1]|pos[0]=CD|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|D shaped[-1]|shaped[0]=D|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllDigit type[-1]|type[0]=AllDigit|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=21 w[1..4]=Adele w[1..4]=on w[1..4]=Spotify +artist w[-2]=21 w[-1]=by w[0]=Adele w[1]=on w[2]=Spotify wl[-2]=21 wl[-1]=by wl[0]=adele wl[1]=on wl[2]=spotify pos[-2]=CD pos[-1]=IN pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=DD shape[-1]=LL shape[0]=ULLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=D shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllDigit type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=2 p1[-1]=b p1[0]=A p1[1]=o p1[2]=S p2[-2]=21 p2[-1]=by p2[0]=Ad p2[1]=on p2[2]=Sp p3[-2]= p3[-1]= p3[0]=Ade p3[1]= p3[2]=Spo p4[-2]= p4[-1]= p4[0]=Adel p4[1]= p4[2]=Spot s1[-2]=1 s1[-1]=y s1[0]=e s1[1]=n s1[2]=y s2[-2]=21 s2[-1]=by s2[0]=le s2[1]=on s2[2]=fy s3[-2]= s3[-1]= s3[0]=ele s3[1]= s3[2]=ify s4[-2]= s4[-1]= s4[0]=dele s4[1]= s4[2]=tify 2d[-2]=yes 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=no ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=21|by w[-1]|w[0]=by|Adele w[0]|w[1]=Adele|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=CD|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=D|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllDigit|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=21 w[-4..-1]=by w[1..4]=on w[1..4]=Spotify +O w[-2]=by w[-1]=Adele w[0]=on w[1]=Spotify wl[-2]=by wl[-1]=adele wl[0]=on wl[1]=spotify pos[-2]=IN pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=b p1[-1]=A p1[0]=o p1[1]=S p2[-2]=by p2[-1]=Ad p2[0]=on p2[1]=Sp p3[-2]= p3[-1]=Ade p3[0]= p3[1]=Spo p4[-2]= p4[-1]=Adel p4[0]= p4[1]=Spot s1[-2]=y s1[-1]=e s1[0]=n s1[1]=y s2[-2]=by s2[-1]=le s2[0]=on s2[1]=fy s3[-2]= s3[-1]=ele s3[0]= s3[1]=ify s4[-2]= s4[-1]=dele s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=by|Adele w[-1]|w[0]=Adele|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=21 w[-4..-1]=by w[-4..-1]=Adele w[1..4]=Spotify +service w[-2]=Adele w[-1]=on w[0]=Spotify wl[-2]=adele wl[-1]=on wl[0]=spotify pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=A p1[-1]=o p1[0]=S p2[-2]=Ad p2[-1]=on p2[0]=Sp p3[-2]=Ade p3[-1]= p3[0]=Spo p4[-2]=Adel p4[-1]= p4[0]=Spot s1[-2]=e s1[-1]=n s1[0]=y s2[-2]=le s2[-1]=on s2[0]=fy s3[-2]=ele s3[-1]= s3[0]=ify s4[-2]=dele s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Adele|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=21 w[-4..-1]=by w[-4..-1]=Adele w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=Rihanna w[2]=on wl[0]=play wl[1]=rihanna wl[2]=on pos[0]=VB pos[1]=NNP pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=R p1[2]=o p2[0]=pl p2[1]=Ri p2[2]=on p3[0]=pla p3[1]=Rih p3[2]= p4[0]=play p4[1]=Riha p4[2]= s1[0]=y s1[1]=a s1[2]=n s2[0]=ay s2[1]=na s2[2]=on s3[0]=lay s3[1]=nna s3[2]= s4[0]=play s4[1]=anna s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Rihanna w[1]|w[2]=Rihanna|on pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Rihanna w[1..4]=on w[1..4]=Spotify __BOS__ +artist w[-1]=play w[0]=Rihanna w[1]=on w[2]=Spotify wl[-1]=play wl[0]=rihanna wl[1]=on wl[2]=spotify pos[-1]=VB pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=R p1[1]=o p1[2]=S p2[-1]=pl p2[0]=Ri p2[1]=on p2[2]=Sp p3[-1]=pla p3[0]=Rih p3[1]= p3[2]=Spo p4[-1]=play p4[0]=Riha p4[1]= p4[2]=Spot s1[-1]=y s1[0]=a s1[1]=n s1[2]=y s2[-1]=ay s2[0]=na s2[1]=on s2[2]=fy s3[-1]=lay s3[0]=nna s3[1]= s3[2]=ify s4[-1]=play s4[0]=anna s4[1]= s4[2]=tify 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Rihanna w[0]|w[1]=Rihanna|on w[1]|w[2]=on|Spotify pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=on w[1..4]=Spotify +O w[-2]=play w[-1]=Rihanna w[0]=on w[1]=Spotify wl[-2]=play wl[-1]=rihanna wl[0]=on wl[1]=spotify pos[-2]=VB pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=R p1[0]=o p1[1]=S p2[-2]=pl p2[-1]=Ri p2[0]=on p2[1]=Sp p3[-2]=pla p3[-1]=Rih p3[0]= p3[1]=Spo p4[-2]=play p4[-1]=Riha p4[0]= p4[1]=Spot s1[-2]=y s1[-1]=a s1[0]=n s1[1]=y s2[-2]=ay s2[-1]=na s2[0]=on s2[1]=fy s3[-2]=lay s3[-1]=nna s3[0]= s3[1]=ify s4[-2]=play s4[-1]=anna s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|Rihanna w[-1]|w[0]=Rihanna|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Rihanna w[1..4]=Spotify +service w[-2]=Rihanna w[-1]=on w[0]=Spotify wl[-2]=rihanna wl[-1]=on wl[0]=spotify pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=R p1[-1]=o p1[0]=S p2[-2]=Ri p2[-1]=on p2[0]=Sp p3[-2]=Rih p3[-1]= p3[0]=Spo p4[-2]=Riha p4[-1]= p4[0]=Spot s1[-2]=a s1[-1]=n s1[0]=y s2[-2]=na s2[-1]=on s2[0]=fy s3[-2]=nna s3[-1]= s3[0]=ify s4[-2]=anna s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Rihanna|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Rihanna w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=the w[2]=song wl[0]=play wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=the p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=e s1[2]=g s2[0]=ay s2[1]=he s2[2]=ng s3[0]=lay s3[1]=the s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song w[1..4]=Back w[1..4]=in __BOS__ +O w[-1]=play w[0]=the w[1]=song w[2]=Back wl[-1]=play wl[0]=the wl[1]=song wl[2]=back pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=RB chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=s p1[2]=B p2[-1]=pl p2[0]=th p2[1]=so p2[2]=Ba p3[-1]=pla p3[0]=the p3[1]=son p3[2]=Bac p4[-1]=play p4[0]= p4[1]=song p4[2]=Back s1[-1]=y s1[0]=e s1[1]=g s1[2]=k s2[-1]=ay s2[0]=he s2[1]=ng s2[2]=ck s3[-1]=lay s3[0]=the s3[1]=ong s3[2]=ack s4[-1]=play s4[0]= s4[1]=song s4[2]=Back 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|song w[1]|w[2]=song|Back pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|RB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=song w[1..4]=Back w[1..4]=in w[1..4]=time +O w[-2]=play w[-1]=the w[0]=song w[1]=Back w[2]=in wl[-2]=play wl[-1]=the wl[0]=song wl[1]=back wl[2]=in pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=RB pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p1[1]=B p1[2]=i p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=Ba p2[2]=in p3[-2]=pla p3[-1]=the p3[0]=son p3[1]=Bac p3[2]= p4[-2]=play p4[-1]= p4[0]=song p4[1]=Back p4[2]= s1[-2]=y s1[-1]=e s1[0]=g s1[1]=k s1[2]=n s2[-2]=ay s2[-1]=he s2[0]=ng s2[1]=ck s2[2]=in s3[-2]=lay s3[-1]=the s3[0]=ong s3[1]=ack s3[2]= s4[-2]=play s4[-1]= s4[0]=song s4[1]=Back s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|song w[0]|w[1]=song|Back w[1]|w[2]=Back|in pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|RB pos[1]|pos[2]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=Back w[1..4]=in w[1..4]=time w[1..4]=by +song w[-2]=the w[-1]=song w[0]=Back w[1]=in w[2]=time wl[-2]=the wl[-1]=song wl[0]=back wl[1]=in wl[2]=time pos[-2]=DT pos[-1]=NN pos[0]=RB pos[1]=RB pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLL shape[1]=LL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=s p1[0]=B p1[1]=i p1[2]=t p2[-2]=th p2[-1]=so p2[0]=Ba p2[1]=in p2[2]=ti p3[-2]=the p3[-1]=son p3[0]=Bac p3[1]= p3[2]=tim p4[-2]= p4[-1]=song p4[0]=Back p4[1]= p4[2]=time s1[-2]=e s1[-1]=g s1[0]=k s1[1]=n s1[2]=e s2[-2]=he s2[-1]=ng s2[0]=ck s2[1]=in s2[2]=me s3[-2]=the s3[-1]=ong s3[0]=ack s3[1]= s3[2]=ime s4[-2]= s4[-1]=song s4[0]=Back s4[1]= s4[2]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|Back w[0]|w[1]=Back|in w[1]|w[2]=in|time pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|RB pos[0]|pos[1]=RB|RB pos[1]|pos[2]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[1..4]=in w[1..4]=time w[1..4]=by w[1..4]=Pitbull +song w[-2]=song w[-1]=Back w[0]=in w[1]=time w[2]=by wl[-2]=song wl[-1]=back wl[0]=in wl[1]=time wl[2]=by pos[-2]=NN pos[-1]=RB pos[0]=RB pos[1]=RB pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULLL shape[0]=LL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=B p1[0]=i p1[1]=t p1[2]=b p2[-2]=so p2[-1]=Ba p2[0]=in p2[1]=ti p2[2]=by p3[-2]=son p3[-1]=Bac p3[0]= p3[1]=tim p3[2]= p4[-2]=song p4[-1]=Back p4[0]= p4[1]=time p4[2]= s1[-2]=g s1[-1]=k s1[0]=n s1[1]=e s1[2]=y s2[-2]=ng s2[-1]=ck s2[0]=in s2[1]=me s2[2]=by s3[-2]=ong s3[-1]=ack s3[0]= s3[1]=ime s3[2]= s4[-2]=song s4[-1]=Back s4[0]= s4[1]=time s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|Back w[-1]|w[0]=Back|in w[0]|w[1]=in|time w[1]|w[2]=time|by pos[-2]|pos[-1]=NN|RB pos[-1]|pos[0]=RB|RB pos[0]|pos[1]=RB|RB pos[1]|pos[2]=RB|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Back w[1..4]=time w[1..4]=by w[1..4]=Pitbull +song w[-2]=Back w[-1]=in w[0]=time w[1]=by w[2]=Pitbull wl[-2]=back wl[-1]=in wl[0]=time wl[1]=by wl[2]=pitbull pos[-2]=RB pos[-1]=RB pos[0]=RB pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLL shape[-1]=LL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=B p1[-1]=i p1[0]=t p1[1]=b p1[2]=P p2[-2]=Ba p2[-1]=in p2[0]=ti p2[1]=by p2[2]=Pi p3[-2]=Bac p3[-1]= p3[0]=tim p3[1]= p3[2]=Pit p4[-2]=Back p4[-1]= p4[0]=time p4[1]= p4[2]=Pitb s1[-2]=k s1[-1]=n s1[0]=e s1[1]=y s1[2]=l s2[-2]=ck s2[-1]=in s2[0]=me s2[1]=by s2[2]=ll s3[-2]=ack s3[-1]= s3[0]=ime s3[1]= s3[2]=ull s4[-2]=Back s4[-1]= s4[0]=time s4[1]= s4[2]=bull 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Back|in w[-1]|w[0]=in|time w[0]|w[1]=time|by w[1]|w[2]=by|Pitbull pos[-2]|pos[-1]=RB|RB pos[-1]|pos[0]=RB|RB pos[0]|pos[1]=RB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=the w[-4..-1]=song w[-4..-1]=Back w[-4..-1]=in w[1..4]=by w[1..4]=Pitbull +O w[-2]=in w[-1]=time w[0]=by w[1]=Pitbull wl[-2]=in wl[-1]=time wl[0]=by wl[1]=pitbull pos[-2]=RB pos[-1]=RB pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=i p1[-1]=t p1[0]=b p1[1]=P p2[-2]=in p2[-1]=ti p2[0]=by p2[1]=Pi p3[-2]= p3[-1]=tim p3[0]= p3[1]=Pit p4[-2]= p4[-1]=time p4[0]= p4[1]=Pitb s1[-2]=n s1[-1]=e s1[0]=y s1[1]=l s2[-2]=in s2[-1]=me s2[0]=by s2[1]=ll s3[-2]= s3[-1]=ime s3[0]= s3[1]=ull s4[-2]= s4[-1]=time s4[0]= s4[1]=bull 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=in|time w[-1]|w[0]=time|by w[0]|w[1]=by|Pitbull pos[-2]|pos[-1]=RB|RB pos[-1]|pos[0]=RB|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=song w[-4..-1]=Back w[-4..-1]=in w[-4..-1]=time w[1..4]=Pitbull +artist w[-2]=time w[-1]=by w[0]=Pitbull wl[-2]=time wl[-1]=by wl[0]=pitbull pos[-2]=RB pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=b p1[0]=P p2[-2]=ti p2[-1]=by p2[0]=Pi p3[-2]=tim p3[-1]= p3[0]=Pit p4[-2]=time p4[-1]= p4[0]=Pitb s1[-2]=e s1[-1]=y s1[0]=l s2[-2]=me s2[-1]=by s2[0]=ll s3[-2]=ime s3[-1]= s3[0]=ull s4[-2]=time s4[-1]= s4[0]=bull 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=time|by w[-1]|w[0]=by|Pitbull pos[-2]|pos[-1]=RB|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Back w[-4..-1]=in w[-4..-1]=time w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=artist w[2]=A wl[0]=play wl[1]=artist wl[2]=a pos[0]=VB pos[1]=NN pos[2]=DT chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLLL shape[2]=U shaped[0]=L shaped[1]=L shaped[2]=U type[0]=AllLetter type[1]=AllLetter type[2]=AllUpper p1[0]=p p1[1]=a p1[2]=A p2[0]=pl p2[1]=ar p2[2]= p3[0]=pla p3[1]=art p3[2]= p4[0]=play p4[1]=arti p4[2]= s1[0]=y s1[1]=t s1[2]=A s2[0]=ay s2[1]=st s2[2]= s3[0]=lay s3[1]=ist s3[2]= s4[0]=play s4[1]=tist s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=yes al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|artist w[1]|w[2]=artist|A pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|U type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllUpper w[1..4]=artist w[1..4]=A w[1..4]=great w[1..4]=big __BOS__ +O w[-1]=play w[0]=artist w[1]=A w[2]=great wl[-1]=play wl[0]=artist wl[1]=a wl[2]=great pos[-1]=VB pos[0]=NN pos[1]=DT pos[2]=DT chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLLL shape[1]=U shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=U shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=A p1[2]=g p2[-1]=pl p2[0]=ar p2[1]= p2[2]=gr p3[-1]=pla p3[0]=art p3[1]= p3[2]=gre p4[-1]=play p4[0]=arti p4[1]= p4[2]=grea s1[-1]=y s1[0]=t s1[1]=A s1[2]=t s2[-1]=ay s2[0]=st s2[1]= s2[2]=at s3[-1]=lay s3[0]=ist s3[1]= s3[2]=eat s4[-1]=play s4[0]=tist s4[1]= s4[2]=reat 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=yes au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|artist w[0]|w[1]=artist|A w[1]|w[2]=A|great pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|DT pos[1]|pos[2]=DT|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|AllLetter w[-4..-1]=play w[1..4]=A w[1..4]=great w[1..4]=big w[1..4]=world +artist w[-2]=play w[-1]=artist w[0]=A w[1]=great w[2]=big wl[-2]=play wl[-1]=artist wl[0]=a wl[1]=great wl[2]=big pos[-2]=VB pos[-1]=NN pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLLL shape[0]=U shape[1]=LLLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=U shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=A p1[1]=g p1[2]=b p2[-2]=pl p2[-1]=ar p2[0]= p2[1]=gr p2[2]=bi p3[-2]=pla p3[-1]=art p3[0]= p3[1]=gre p3[2]=big p4[-2]=play p4[-1]=arti p4[0]= p4[1]=grea p4[2]= s1[-2]=y s1[-1]=t s1[0]=A s1[1]=t s1[2]=g s2[-2]=ay s2[-1]=st s2[0]= s2[1]=at s2[2]=ig s3[-2]=lay s3[-1]=ist s3[0]= s3[1]=eat s3[2]=big s4[-2]=play s4[-1]=tist s4[0]= s4[1]=reat s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=yes au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|artist w[-1]|w[0]=artist|A w[0]|w[1]=A|great w[1]|w[2]=great|big pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=artist w[1..4]=great w[1..4]=big w[1..4]=world +artist w[-2]=artist w[-1]=A w[0]=great w[1]=big w[2]=world wl[-2]=artist wl[-1]=a wl[0]=great wl[1]=big wl[2]=world pos[-2]=NN pos[-1]=DT pos[0]=DT pos[1]=DT pos[2]=DT chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLLLL shape[-1]=U shape[0]=LLLLL shape[1]=LLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=A p1[0]=g p1[1]=b p1[2]=w p2[-2]=ar p2[-1]= p2[0]=gr p2[1]=bi p2[2]=wo p3[-2]=art p3[-1]= p3[0]=gre p3[1]=big p3[2]=wor p4[-2]=arti p4[-1]= p4[0]=grea p4[1]= p4[2]=worl s1[-2]=t s1[-1]=A s1[0]=t s1[1]=g s1[2]=d s2[-2]=st s2[-1]= s2[0]=at s2[1]=ig s2[2]=ld s3[-2]=ist s3[-1]= s3[0]=eat s3[1]=big s3[2]=rld s4[-2]=tist s4[-1]= s4[0]=reat s4[1]= s4[2]=orld 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=artist|A w[-1]|w[0]=A|great w[0]|w[1]=great|big w[1]|w[2]=big|world pos[-2]|pos[-1]=NN|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=artist w[-4..-1]=A w[1..4]=big w[1..4]=world +artist w[-2]=A w[-1]=great w[0]=big w[1]=world wl[-2]=a wl[-1]=great wl[0]=big wl[1]=world pos[-2]=DT pos[-1]=DT pos[0]=DT pos[1]=DT chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=U shape[-1]=LLLLL shape[0]=LLL shape[1]=LLLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=A p1[-1]=g p1[0]=b p1[1]=w p2[-2]= p2[-1]=gr p2[0]=bi p2[1]=wo p3[-2]= p3[-1]=gre p3[0]=big p3[1]=wor p4[-2]= p4[-1]=grea p4[0]= p4[1]=worl s1[-2]=A s1[-1]=t s1[0]=g s1[1]=d s2[-2]= s2[-1]=at s2[0]=ig s2[1]=ld s3[-2]= s3[-1]=eat s3[0]=big s3[1]=rld s4[-2]= s4[-1]=reat s4[0]= s4[1]=orld 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=A|great w[-1]|w[0]=great|big w[0]|w[1]=big|world pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=artist w[-4..-1]=A w[-4..-1]=great w[1..4]=world +artist w[-2]=great w[-1]=big w[0]=world wl[-2]=great wl[-1]=big wl[0]=world pos[-2]=DT pos[-1]=DT pos[0]=DT chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLLLL shape[-1]=LLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=g p1[-1]=b p1[0]=w p2[-2]=gr p2[-1]=bi p2[0]=wo p3[-2]=gre p3[-1]=big p3[0]=wor p4[-2]=grea p4[-1]= p4[0]=worl s1[-2]=t s1[-1]=g s1[0]=d s2[-2]=at s2[-1]=ig s2[0]=ld s3[-2]=eat s3[-1]=big s3[0]=rld s4[-2]=reat s4[-1]= s4[0]=orld 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=great|big w[-1]|w[0]=big|world pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=artist w[-4..-1]=A w[-4..-1]=great w[-4..-1]=big __EOS__ + +O w[0]=can w[1]=I w[2]=listen wl[0]=can wl[1]=i wl[2]=listen pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=U shape[2]=LLLLLL shaped[0]=L shaped[1]=U shaped[2]=L type[0]=AllLetter type[1]=AllUpper type[2]=AllLetter p1[0]=c p1[1]=I p1[2]=l p2[0]=ca p2[1]= p2[2]=li p3[0]=can p3[1]= p3[2]=lis p4[0]= p4[1]= p4[2]=list s1[0]=n s1[1]=I s1[2]=n s2[0]=an s2[1]= s2[2]=en s3[0]=can s3[1]= s3[2]=ten s4[0]= s4[1]= s4[2]=sten 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=yes au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=no cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|I w[1]|w[2]=I|listen pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|L type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|AllLetter w[1..4]=I w[1..4]=listen w[1..4]=to w[1..4]=Gangsta's __BOS__ +O w[-1]=can w[0]=I w[1]=listen w[2]=to wl[-1]=can wl[0]=i wl[1]=listen wl[2]=to pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=U shape[1]=LLLLLL shape[2]=LL shaped[-1]=L shaped[0]=U shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=I p1[1]=l p1[2]=t p2[-1]=ca p2[0]= p2[1]=li p2[2]=to p3[-1]=can p3[0]= p3[1]=lis p3[2]= p4[-1]= p4[0]= p4[1]=list p4[2]= s1[-1]=n s1[0]=I s1[1]=n s1[2]=o s2[-1]=an s2[0]= s2[1]=en s2[2]=to s3[-1]=can s3[0]= s3[1]=ten s3[2]= s4[-1]= s4[0]= s4[1]=sten s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=yes au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|I w[0]|w[1]=I|listen w[1]|w[2]=listen|to pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=listen w[1..4]=to w[1..4]=Gangsta's w[1..4]=Paradise +O w[-2]=can w[-1]=I w[0]=listen w[1]=to w[2]=Gangsta's wl[-2]=can wl[-1]=i wl[0]=listen wl[1]=to wl[2]=gangsta's pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLL shape[-1]=U shape[0]=LLLLLL shape[1]=LL shape[2]=ULLLLLL'L shaped[-2]=L shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=UL'L type[-2]=AllLetter type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=c p1[-1]=I p1[0]=l p1[1]=t p1[2]=G p2[-2]=ca p2[-1]= p2[0]=li p2[1]=to p2[2]=Ga p3[-2]=can p3[-1]= p3[0]=lis p3[1]= p3[2]=Gan p4[-2]= p4[-1]= p4[0]=list p4[1]= p4[2]=Gang s1[-2]=n s1[-1]=I s1[0]=n s1[1]=o s1[2]=s s2[-2]=an s2[-1]= s2[0]=en s2[1]=to s2[2]='s s3[-2]=can s3[-1]= s3[0]=ten s3[1]= s3[2]=a's s4[-2]= s4[-1]= s4[0]=sten s4[1]= s4[2]=ta's 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=yes w[-2]|w[-1]=can|I w[-1]|w[0]=I|listen w[0]|w[1]=listen|to w[1]|w[2]=to|Gangsta's pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL'L type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=I w[1..4]=to w[1..4]=Gangsta's w[1..4]=Paradise w[1..4]=song +O w[-2]=I w[-1]=listen w[0]=to w[1]=Gangsta's w[2]=Paradise wl[-2]=i wl[-1]=listen wl[0]=to wl[1]=gangsta's wl[2]=paradise pos[-2]=PRP pos[-1]=VB pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=U shape[-1]=LLLLLL shape[0]=LL shape[1]=ULLLLLL'L shape[2]=ULLLLLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=UL'L shaped[2]=UL type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=I p1[-1]=l p1[0]=t p1[1]=G p1[2]=P p2[-2]= p2[-1]=li p2[0]=to p2[1]=Ga p2[2]=Pa p3[-2]= p3[-1]=lis p3[0]= p3[1]=Gan p3[2]=Par p4[-2]= p4[-1]=list p4[0]= p4[1]=Gang p4[2]=Para s1[-2]=I s1[-1]=n s1[0]=o s1[1]=s s1[2]=e s2[-2]= s2[-1]=en s2[0]=to s2[1]='s s2[2]=se s3[-2]= s3[-1]=ten s3[0]= s3[1]=a's s3[2]=ise s4[-2]= s4[-1]=sten s4[0]= s4[1]=ta's s4[2]=dise 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=yes cs[2]=no w[-2]|w[-1]=I|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|Gangsta's w[1]|w[2]=Gangsta's|Paradise pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL'L shaped[1]|shaped[2]=UL'L|UL type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=can w[-4..-1]=I w[-4..-1]=listen w[1..4]=Gangsta's w[1..4]=Paradise w[1..4]=song +song w[-2]=listen w[-1]=to w[0]=Gangsta's w[1]=Paradise w[2]=song wl[-2]=listen wl[-1]=to wl[0]=gangsta's wl[1]=paradise wl[2]=song pos[-2]=VB pos[-1]=IN pos[0]=NNP pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=ULLLLLL'L shape[1]=ULLLLLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL'L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=G p1[1]=P p1[2]=s p2[-2]=li p2[-1]=to p2[0]=Ga p2[1]=Pa p2[2]=so p3[-2]=lis p3[-1]= p3[0]=Gan p3[1]=Par p3[2]=son p4[-2]=list p4[-1]= p4[0]=Gang p4[1]=Para p4[2]=song s1[-2]=n s1[-1]=o s1[0]=s s1[1]=e s1[2]=g s2[-2]=en s2[-1]=to s2[0]='s s2[1]=se s2[2]=ng s3[-2]=ten s3[-1]= s3[0]=a's s3[1]=ise s3[2]=ong s4[-2]=sten s4[-1]= s4[0]=ta's s4[1]=dise s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=yes cs[1]=no cs[2]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|Gangsta's w[0]|w[1]=Gangsta's|Paradise w[1]|w[2]=Paradise|song pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL'L shaped[0]|shaped[1]=UL'L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=can w[-4..-1]=I w[-4..-1]=listen w[-4..-1]=to w[1..4]=Paradise w[1..4]=song +song w[-2]=to w[-1]=Gangsta's w[0]=Paradise w[1]=song wl[-2]=to wl[-1]=gangsta's wl[0]=paradise wl[1]=song pos[-2]=IN pos[-1]=NNP pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O shape[-2]=LL shape[-1]=ULLLLLL'L shape[0]=ULLLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=UL'L shaped[0]=UL shaped[1]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter p1[-2]=t p1[-1]=G p1[0]=P p1[1]=s p2[-2]=to p2[-1]=Ga p2[0]=Pa p2[1]=so p3[-2]= p3[-1]=Gan p3[0]=Par p3[1]=son p4[-2]= p4[-1]=Gang p4[0]=Para p4[1]=song s1[-2]=o s1[-1]=s s1[0]=e s1[1]=g s2[-2]=to s2[-1]='s s2[0]=se s2[1]=ng s3[-2]= s3[-1]=a's s3[0]=ise s3[1]=ong s4[-2]= s4[-1]=ta's s4[0]=dise s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=yes cs[0]=no cs[1]=no w[-2]|w[-1]=to|Gangsta's w[-1]|w[0]=Gangsta's|Paradise w[0]|w[1]=Paradise|song pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|UL'L shaped[-1]|shaped[0]=UL'L|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=I w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Gangsta's w[1..4]=song +O w[-2]=Gangsta's w[-1]=Paradise w[0]=song wl[-2]=gangsta's wl[-1]=paradise wl[0]=song pos[-2]=NNP pos[-1]=NNP pos[0]=NNP chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=ULLLLLL'L shape[-1]=ULLLLLLL shape[0]=LLLL shaped[-2]=UL'L shaped[-1]=UL shaped[0]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter p1[-2]=G p1[-1]=P p1[0]=s p2[-2]=Ga p2[-1]=Pa p2[0]=so p3[-2]=Gan p3[-1]=Par p3[0]=son p4[-2]=Gang p4[-1]=Para p4[0]=song s1[-2]=s s1[-1]=e s1[0]=g s2[-2]='s s2[-1]=se s2[0]=ng s3[-2]=a's s3[-1]=ise s3[0]=ong s4[-2]=ta's s4[-1]=dise s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=yes cs[-1]=no cs[0]=no w[-2]|w[-1]=Gangsta's|Paradise w[-1]|w[0]=Paradise|song pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=UL'L|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Gangsta's w[-4..-1]=Paradise __EOS__ + +O w[0]=play w[1]=r&b w[2]=music wl[0]=play wl[1]=r&b wl[2]=music pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=L&L shape[2]=LLLLL shaped[0]=L shaped[1]=L&L shaped[2]=L type[0]=AllLetter type[1]=NO type[2]=AllLetter p1[0]=p p1[1]=r p1[2]=m p2[0]=pl p2[1]=r& p2[2]=mu p3[0]=pla p3[1]=r&b p3[2]=mus p4[0]=play p4[1]= p4[2]=musi s1[0]=y s1[1]=b s1[2]=c s2[0]=ay s2[1]=&b s2[2]=ic s3[0]=lay s3[1]=r&b s3[2]=sic s4[0]=play s4[1]= s4[2]=usic 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=yes cs[2]=no w[0]|w[1]=play|r&b w[1]|w[2]=r&b|music pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|L&L shaped[1]|shaped[2]=L&L|L type[0]|type[1]=AllLetter|NO type[1]|type[2]=NO|AllLetter w[1..4]=r&b w[1..4]=music __BOS__ +song w[-1]=play w[0]=r&b w[1]=music wl[-1]=play wl[0]=r&b wl[1]=music pos[-1]=VB pos[0]=NN pos[1]=NN chk[-1]=O chk[0]=I chk[1]=O shape[-1]=LLLL shape[0]=L&L shape[1]=LLLLL shaped[-1]=L shaped[0]=L&L shaped[1]=L type[-1]=AllLetter type[0]=NO type[1]=AllLetter p1[-1]=p p1[0]=r p1[1]=m p2[-1]=pl p2[0]=r& p2[1]=mu p3[-1]=pla p3[0]=r&b p3[1]=mus p4[-1]=play p4[0]= p4[1]=musi s1[-1]=y s1[0]=b s1[1]=c s2[-1]=ay s2[0]=&b s2[1]=ic s3[-1]=lay s3[0]=r&b s3[1]=sic s4[-1]=play s4[0]= s4[1]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=yes cs[1]=no w[-1]|w[0]=play|r&b w[0]|w[1]=r&b|music pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-1]|shaped[0]=L|L&L shaped[0]|shaped[1]=L&L|L type[-1]|type[0]=AllLetter|NO type[0]|type[1]=NO|AllLetter w[-4..-1]=play w[1..4]=music +O w[-2]=play w[-1]=r&b w[0]=music wl[-2]=play wl[-1]=r&b wl[0]=music pos[-2]=VB pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLL shape[-1]=L&L shape[0]=LLLLL shaped[-2]=L shaped[-1]=L&L shaped[0]=L type[-2]=AllLetter type[-1]=NO type[0]=AllLetter p1[-2]=p p1[-1]=r p1[0]=m p2[-2]=pl p2[-1]=r& p2[0]=mu p3[-2]=pla p3[-1]=r&b p3[0]=mus p4[-2]=play p4[-1]= p4[0]=musi s1[-2]=y s1[-1]=b s1[0]=c s2[-2]=ay s2[-1]=&b s2[0]=ic s3[-2]=lay s3[-1]=r&b s3[0]=sic s4[-2]=play s4[-1]= s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=yes cs[0]=no w[-2]|w[-1]=play|r&b w[-1]|w[0]=r&b|music pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L&L shaped[-1]|shaped[0]=L&L|L type[-2]|type[-1]=AllLetter|NO type[-1]|type[0]=NO|AllLetter w[-4..-1]=play w[-4..-1]=r&b __EOS__ + +O w[0]=play w[1]=Do w[2]=you wl[0]=play wl[1]=do wl[2]=you pos[0]=NN pos[1]=VBP pos[2]=VBP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=UL shape[2]=LLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=D p1[2]=y p2[0]=pl p2[1]=Do p2[2]=yo p3[0]=pla p3[1]= p3[2]=you p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=o s1[2]=u s2[0]=ay s2[1]=Do s2[2]=ou s3[0]=lay s3[1]= s3[2]=you s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Do w[1]|w[2]=Do|you pos[0]|pos[1]=NN|VBP pos[1]|pos[2]=VBP|VBP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Do w[1..4]=you w[1..4]=Mind w[1..4]=by __BOS__ +song w[-1]=play w[0]=Do w[1]=you w[2]=Mind wl[-1]=play wl[0]=do wl[1]=you wl[2]=mind pos[-1]=NN pos[0]=VBP pos[1]=VBP pos[2]=VBP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=UL shape[1]=LLL shape[2]=ULLL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=D p1[1]=y p1[2]=M p2[-1]=pl p2[0]=Do p2[1]=yo p2[2]=Mi p3[-1]=pla p3[0]= p3[1]=you p3[2]=Min p4[-1]=play p4[0]= p4[1]= p4[2]=Mind s1[-1]=y s1[0]=o s1[1]=u s1[2]=d s2[-1]=ay s2[0]=Do s2[1]=ou s2[2]=nd s3[-1]=lay s3[0]= s3[1]=you s3[2]=ind s4[-1]=play s4[0]= s4[1]= s4[2]=Mind 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Do w[0]|w[1]=Do|you w[1]|w[2]=you|Mind pos[-1]|pos[0]=NN|VBP pos[0]|pos[1]=VBP|VBP pos[1]|pos[2]=VBP|VBP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=you w[1..4]=Mind w[1..4]=by w[1..4]=Changing +song w[-2]=play w[-1]=Do w[0]=you w[1]=Mind w[2]=by wl[-2]=play wl[-1]=do wl[0]=you wl[1]=mind wl[2]=by pos[-2]=NN pos[-1]=VBP pos[0]=VBP pos[1]=VBP pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=UL shape[0]=LLL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=D p1[0]=y p1[1]=M p1[2]=b p2[-2]=pl p2[-1]=Do p2[0]=yo p2[1]=Mi p2[2]=by p3[-2]=pla p3[-1]= p3[0]=you p3[1]=Min p3[2]= p4[-2]=play p4[-1]= p4[0]= p4[1]=Mind p4[2]= s1[-2]=y s1[-1]=o s1[0]=u s1[1]=d s1[2]=y s2[-2]=ay s2[-1]=Do s2[0]=ou s2[1]=nd s2[2]=by s3[-2]=lay s3[-1]= s3[0]=you s3[1]=ind s3[2]= s4[-2]=play s4[-1]= s4[0]= s4[1]=Mind s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Do w[-1]|w[0]=Do|you w[0]|w[1]=you|Mind w[1]|w[2]=Mind|by pos[-2]|pos[-1]=NN|VBP pos[-1]|pos[0]=VBP|VBP pos[0]|pos[1]=VBP|VBP pos[1]|pos[2]=VBP|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Do w[1..4]=Mind w[1..4]=by w[1..4]=Changing w[1..4]=Faces +song w[-2]=Do w[-1]=you w[0]=Mind w[1]=by w[2]=Changing wl[-2]=do wl[-1]=you wl[0]=mind wl[1]=by wl[2]=changing pos[-2]=VBP pos[-1]=VBP pos[0]=VBP pos[1]=IN pos[2]=VBG chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=UL shape[-1]=LLL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=D p1[-1]=y p1[0]=M p1[1]=b p1[2]=C p2[-2]=Do p2[-1]=yo p2[0]=Mi p2[1]=by p2[2]=Ch p3[-2]= p3[-1]=you p3[0]=Min p3[1]= p3[2]=Cha p4[-2]= p4[-1]= p4[0]=Mind p4[1]= p4[2]=Chan s1[-2]=o s1[-1]=u s1[0]=d s1[1]=y s1[2]=g s2[-2]=Do s2[-1]=ou s2[0]=nd s2[1]=by s2[2]=ng s3[-2]= s3[-1]=you s3[0]=ind s3[1]= s3[2]=ing s4[-2]= s4[-1]= s4[0]=Mind s4[1]= s4[2]=ging 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Do|you w[-1]|w[0]=you|Mind w[0]|w[1]=Mind|by w[1]|w[2]=by|Changing pos[-2]|pos[-1]=VBP|VBP pos[-1]|pos[0]=VBP|VBP pos[0]|pos[1]=VBP|IN pos[1]|pos[2]=IN|VBG chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Do w[-4..-1]=you w[1..4]=by w[1..4]=Changing w[1..4]=Faces +O w[-2]=you w[-1]=Mind w[0]=by w[1]=Changing w[2]=Faces wl[-2]=you wl[-1]=mind wl[0]=by wl[1]=changing wl[2]=faces pos[-2]=VBP pos[-1]=VBP pos[0]=IN pos[1]=VBG pos[2]=VBG chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=y p1[-1]=M p1[0]=b p1[1]=C p1[2]=F p2[-2]=yo p2[-1]=Mi p2[0]=by p2[1]=Ch p2[2]=Fa p3[-2]=you p3[-1]=Min p3[0]= p3[1]=Cha p3[2]=Fac p4[-2]= p4[-1]=Mind p4[0]= p4[1]=Chan p4[2]=Face s1[-2]=u s1[-1]=d s1[0]=y s1[1]=g s1[2]=s s2[-2]=ou s2[-1]=nd s2[0]=by s2[1]=ng s2[2]=es s3[-2]=you s3[-1]=ind s3[0]= s3[1]=ing s3[2]=ces s4[-2]= s4[-1]=Mind s4[0]= s4[1]=ging s4[2]=aces 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|Mind w[-1]|w[0]=Mind|by w[0]|w[1]=by|Changing w[1]|w[2]=Changing|Faces pos[-2]|pos[-1]=VBP|VBP pos[-1]|pos[0]=VBP|IN pos[0]|pos[1]=IN|VBG pos[1]|pos[2]=VBG|VBG chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Do w[-4..-1]=you w[-4..-1]=Mind w[1..4]=Changing w[1..4]=Faces +artist w[-2]=Mind w[-1]=by w[0]=Changing w[1]=Faces wl[-2]=mind wl[-1]=by wl[0]=changing wl[1]=faces pos[-2]=VBP pos[-1]=IN pos[0]=VBG pos[1]=VBG chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLLLL shape[1]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=M p1[-1]=b p1[0]=C p1[1]=F p2[-2]=Mi p2[-1]=by p2[0]=Ch p2[1]=Fa p3[-2]=Min p3[-1]= p3[0]=Cha p3[1]=Fac p4[-2]=Mind p4[-1]= p4[0]=Chan p4[1]=Face s1[-2]=d s1[-1]=y s1[0]=g s1[1]=s s2[-2]=nd s2[-1]=by s2[0]=ng s2[1]=es s3[-2]=ind s3[-1]= s3[0]=ing s3[1]=ces s4[-2]=Mind s4[-1]= s4[0]=ging s4[1]=aces 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Mind|by w[-1]|w[0]=by|Changing w[0]|w[1]=Changing|Faces pos[-2]|pos[-1]=VBP|IN pos[-1]|pos[0]=IN|VBG pos[0]|pos[1]=VBG|VBG chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Do w[-4..-1]=you w[-4..-1]=Mind w[-4..-1]=by w[1..4]=Faces +artist w[-2]=by w[-1]=Changing w[0]=Faces wl[-2]=by wl[-1]=changing wl[0]=faces pos[-2]=IN pos[-1]=VBG pos[0]=VBG chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=C p1[0]=F p2[-2]=by p2[-1]=Ch p2[0]=Fa p3[-2]= p3[-1]=Cha p3[0]=Fac p4[-2]= p4[-1]=Chan p4[0]=Face s1[-2]=y s1[-1]=g s1[0]=s s2[-2]=by s2[-1]=ng s2[0]=es s3[-2]= s3[-1]=ing s3[0]=ces s4[-2]= s4[-1]=ging s4[0]=aces 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Changing w[-1]|w[0]=Changing|Faces pos[-2]|pos[-1]=IN|VBG pos[-1]|pos[0]=VBG|VBG chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=you w[-4..-1]=Mind w[-4..-1]=by w[-4..-1]=Changing __EOS__ + +O w[0]=put w[1]=on w[2]=some wl[0]=put wl[1]=on wl[2]=some pos[0]=VBN pos[1]=RP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=o p1[2]=s p2[0]=pu p2[1]=on p2[2]=so p3[0]=put p3[1]= p3[2]=som p4[0]= p4[1]= p4[2]=some s1[0]=t s1[1]=n s1[2]=e s2[0]=ut s2[1]=on s2[2]=me s3[0]=put s3[1]= s3[2]=ome s4[0]= s4[1]= s4[2]=some 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|on w[1]|w[2]=on|some pos[0]|pos[1]=VBN|RP pos[1]|pos[2]=RP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=some w[1..4]=music __BOS__ +O w[-1]=put w[0]=on w[1]=some w[2]=music wl[-1]=put wl[0]=on wl[1]=some wl[2]=music pos[-1]=VBN pos[0]=RP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=o p1[1]=s p1[2]=m p2[-1]=pu p2[0]=on p2[1]=so p2[2]=mu p3[-1]=put p3[0]= p3[1]=som p3[2]=mus p4[-1]= p4[0]= p4[1]=some p4[2]=musi s1[-1]=t s1[0]=n s1[1]=e s1[2]=c s2[-1]=ut s2[0]=on s2[1]=me s2[2]=ic s3[-1]=put s3[0]= s3[1]=ome s3[2]=sic s4[-1]= s4[0]= s4[1]=some s4[2]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|on w[0]|w[1]=on|some w[1]|w[2]=some|music pos[-1]|pos[0]=VBN|RP pos[0]|pos[1]=RP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=some w[1..4]=music +O w[-2]=put w[-1]=on w[0]=some w[1]=music wl[-2]=put wl[-1]=on wl[0]=some wl[1]=music pos[-2]=VBN pos[-1]=RP pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=o p1[0]=s p1[1]=m p2[-2]=pu p2[-1]=on p2[0]=so p2[1]=mu p3[-2]=put p3[-1]= p3[0]=som p3[1]=mus p4[-2]= p4[-1]= p4[0]=some p4[1]=musi s1[-2]=t s1[-1]=n s1[0]=e s1[1]=c s2[-2]=ut s2[-1]=on s2[0]=me s2[1]=ic s3[-2]=put s3[-1]= s3[0]=ome s3[1]=sic s4[-2]= s4[-1]= s4[0]=some s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=put|on w[-1]|w[0]=on|some w[0]|w[1]=some|music pos[-2]|pos[-1]=VBN|RP pos[-1]|pos[0]=RP|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=on w[1..4]=music +O w[-2]=on w[-1]=some w[0]=music wl[-2]=on wl[-1]=some wl[0]=music pos[-2]=RP pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=s p1[0]=m p2[-2]=on p2[-1]=so p2[0]=mu p3[-2]= p3[-1]=som p3[0]=mus p4[-2]= p4[-1]=some p4[0]=musi s1[-2]=n s1[-1]=e s1[0]=c s2[-2]=on s2[-1]=me s2[0]=ic s3[-2]= s3[-1]=ome s3[0]=sic s4[-2]= s4[-1]=some s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=on|some w[-1]|w[0]=some|music pos[-2]|pos[-1]=RP|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=on w[-4..-1]=some __EOS__ + +O w[0]=playing w[1]=Mozart w[2]=song wl[0]=playing wl[1]=mozart wl[2]=song pos[0]=VBG pos[1]=NNP pos[2]=NN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLLLLL shape[1]=ULLLLL shape[2]=LLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=M p1[2]=s p2[0]=pl p2[1]=Mo p2[2]=so p3[0]=pla p3[1]=Moz p3[2]=son p4[0]=play p4[1]=Moza p4[2]=song s1[0]=g s1[1]=t s1[2]=g s2[0]=ng s2[1]=rt s2[2]=ng s3[0]=ing s3[1]=art s3[2]=ong s4[0]=ying s4[1]=zart s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=playing|Mozart w[1]|w[2]=Mozart|song pos[0]|pos[1]=VBG|NNP pos[1]|pos[2]=NNP|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Mozart w[1..4]=song __BOS__ +artist w[-1]=playing w[0]=Mozart w[1]=song wl[-1]=playing wl[0]=mozart wl[1]=song pos[-1]=VBG pos[0]=NNP pos[1]=NN chk[-1]=O chk[0]=I chk[1]=O shape[-1]=LLLLLLL shape[0]=ULLLLL shape[1]=LLLL shaped[-1]=L shaped[0]=UL shaped[1]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter p1[-1]=p p1[0]=M p1[1]=s p2[-1]=pl p2[0]=Mo p2[1]=so p3[-1]=pla p3[0]=Moz p3[1]=son p4[-1]=play p4[0]=Moza p4[1]=song s1[-1]=g s1[0]=t s1[1]=g s2[-1]=ng s2[0]=rt s2[1]=ng s3[-1]=ing s3[0]=art s3[1]=ong s4[-1]=ying s4[0]=zart s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=playing|Mozart w[0]|w[1]=Mozart|song pos[-1]|pos[0]=VBG|NNP pos[0]|pos[1]=NNP|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=playing w[1..4]=song +O w[-2]=playing w[-1]=Mozart w[0]=song wl[-2]=playing wl[-1]=mozart wl[0]=song pos[-2]=VBG pos[-1]=NNP pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LLLLLLL shape[-1]=ULLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter p1[-2]=p p1[-1]=M p1[0]=s p2[-2]=pl p2[-1]=Mo p2[0]=so p3[-2]=pla p3[-1]=Moz p3[0]=son p4[-2]=play p4[-1]=Moza p4[0]=song s1[-2]=g s1[-1]=t s1[0]=g s2[-2]=ng s2[-1]=rt s2[0]=ng s3[-2]=ing s3[-1]=art s3[0]=ong s4[-2]=ying s4[-1]=zart s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=playing|Mozart w[-1]|w[0]=Mozart|song pos[-2]|pos[-1]=VBG|NNP pos[-1]|pos[0]=NNP|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=playing w[-4..-1]=Mozart __EOS__ + +O w[0]=play w[1]=The w[2]=Antlers wl[0]=play wl[1]=the wl[2]=antlers pos[0]=VB pos[1]=DT pos[2]=DT chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=T p1[2]=A p2[0]=pl p2[1]=Th p2[2]=An p3[0]=pla p3[1]=The p3[2]=Ant p4[0]=play p4[1]= p4[2]=Antl s1[0]=y s1[1]=e s1[2]=s s2[0]=ay s2[1]=he s2[2]=rs s3[0]=lay s3[1]=The s3[2]=ers s4[0]=play s4[1]= s4[2]=lers 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|The w[1]|w[2]=The|Antlers pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|DT chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=The w[1..4]=Antlers __BOS__ +artist w[-1]=play w[0]=The w[1]=Antlers wl[-1]=play wl[0]=the wl[1]=antlers pos[-1]=VB pos[0]=DT pos[1]=DT chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=T p1[1]=A p2[-1]=pl p2[0]=Th p2[1]=An p3[-1]=pla p3[0]=The p3[1]=Ant p4[-1]=play p4[0]= p4[1]=Antl s1[-1]=y s1[0]=e s1[1]=s s2[-1]=ay s2[0]=he s2[1]=rs s3[-1]=lay s3[0]=The s3[1]=ers s4[-1]=play s4[0]= s4[1]=lers 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|The w[0]|w[1]=The|Antlers pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|DT chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Antlers +artist w[-2]=play w[-1]=The w[0]=Antlers wl[-2]=play wl[-1]=the wl[0]=antlers pos[-2]=VB pos[-1]=DT pos[0]=DT chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=T p1[0]=A p2[-2]=pl p2[-1]=Th p2[0]=An p3[-2]=pla p3[-1]=The p3[0]=Ant p4[-2]=play p4[-1]= p4[0]=Antl s1[-2]=y s1[-1]=e s1[0]=s s2[-2]=ay s2[-1]=he s2[0]=rs s3[-2]=lay s3[-1]=The s3[0]=ers s4[-2]=play s4[-1]= s4[0]=lers 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|The w[-1]|w[0]=The|Antlers pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=The __EOS__ + +O w[0]=can w[1]=you w[2]=play wl[0]=can wl[1]=you wl[2]=play pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=pla p4[0]= p4[1]= p4[2]=play s1[0]=n s1[1]=u s1[2]=y s2[0]=an s2[1]=ou s2[2]=ay s3[0]=can s3[1]=you s3[2]=lay s4[0]= s4[1]= s4[2]=play 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|play pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=play w[1..4]=Adele __BOS__ +O w[-1]=can w[0]=you w[1]=play w[2]=Adele wl[-1]=can wl[0]=you wl[1]=play wl[2]=adele pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=c p1[0]=y p1[1]=p p1[2]=A p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=Ad p3[-1]=can p3[0]=you p3[1]=pla p3[2]=Ade p4[-1]= p4[0]= p4[1]=play p4[2]=Adel s1[-1]=n s1[0]=u s1[1]=y s1[2]=e s2[-1]=an s2[0]=ou s2[1]=ay s2[2]=le s3[-1]=can s3[0]=you s3[1]=lay s3[2]=ele s4[-1]= s4[0]= s4[1]=play s4[2]=dele 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|play w[1]|w[2]=play|Adele pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=can w[1..4]=play w[1..4]=Adele +O w[-2]=can w[-1]=you w[0]=play w[1]=Adele wl[-2]=can wl[-1]=you wl[0]=play wl[1]=adele pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=c p1[-1]=y p1[0]=p p1[1]=A p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=Ad p3[-2]=can p3[-1]=you p3[0]=pla p3[1]=Ade p4[-2]= p4[-1]= p4[0]=play p4[1]=Adel s1[-2]=n s1[-1]=u s1[0]=y s1[1]=e s2[-2]=an s2[-1]=ou s2[0]=ay s2[1]=le s3[-2]=can s3[-1]=you s3[0]=lay s3[1]=ele s4[-2]= s4[-1]= s4[0]=play s4[1]=dele 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|play w[0]|w[1]=play|Adele pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=you w[1..4]=Adele +artist w[-2]=you w[-1]=play w[0]=Adele wl[-2]=you wl[-1]=play wl[0]=adele pos[-2]=PRP pos[-1]=VB pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=y p1[-1]=p p1[0]=A p2[-2]=yo p2[-1]=pl p2[0]=Ad p3[-2]=you p3[-1]=pla p3[0]=Ade p4[-2]= p4[-1]=play p4[0]=Adel s1[-2]=u s1[-1]=y s1[0]=e s2[-2]=ou s2[-1]=ay s2[0]=le s3[-2]=you s3[-1]=lay s3[0]=ele s4[-2]= s4[-1]=play s4[0]=dele 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=you|play w[-1]|w[0]=play|Adele pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=can w[-4..-1]=you w[-4..-1]=play __EOS__ + +O w[0]=play w[1]=Blackbird w[2]=from wl[0]=play wl[1]=blackbird wl[2]=from pos[0]=VBP pos[1]=NNP pos[2]=IN chk[0]=O chk[1]=I chk[2]=O shape[0]=LLLL shape[1]=ULLLLLLLL shape[2]=LLLL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=B p1[2]=f p2[0]=pl p2[1]=Bl p2[2]=fr p3[0]=pla p3[1]=Bla p3[2]=fro p4[0]=play p4[1]=Blac p4[2]=from s1[0]=y s1[1]=d s1[2]=m s2[0]=ay s2[1]=rd s2[2]=om s3[0]=lay s3[1]=ird s3[2]=rom s4[0]=play s4[1]=bird s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Blackbird w[1]|w[2]=Blackbird|from pos[0]|pos[1]=VBP|NNP pos[1]|pos[2]=NNP|IN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Blackbird w[1..4]=from w[1..4]=SD w[1..4]=card __BOS__ +song w[-1]=play w[0]=Blackbird w[1]=from w[2]=SD wl[-1]=play wl[0]=blackbird wl[1]=from wl[2]=sd pos[-1]=VBP pos[0]=NNP pos[1]=IN pos[2]=NN chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=ULLLLLLLL shape[1]=LLLL shape[2]=UU shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=U type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllUpper p1[-1]=p p1[0]=B p1[1]=f p1[2]=S p2[-1]=pl p2[0]=Bl p2[1]=fr p2[2]=SD p3[-1]=pla p3[0]=Bla p3[1]=fro p3[2]= p4[-1]=play p4[0]=Blac p4[1]=from p4[2]= s1[-1]=y s1[0]=d s1[1]=m s1[2]=D s2[-1]=ay s2[0]=rd s2[1]=om s2[2]=SD s3[-1]=lay s3[0]=ird s3[1]=rom s3[2]= s4[-1]=play s4[0]=bird s4[1]=from s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=no ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Blackbird w[0]|w[1]=Blackbird|from w[1]|w[2]=from|SD pos[-1]|pos[0]=VBP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|U type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllUpper w[-4..-1]=play w[1..4]=from w[1..4]=SD w[1..4]=card +O w[-2]=play w[-1]=Blackbird w[0]=from w[1]=SD w[2]=card wl[-2]=play wl[-1]=blackbird wl[0]=from wl[1]=sd wl[2]=card pos[-2]=VBP pos[-1]=NNP pos[0]=IN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=ULLLLLLLL shape[0]=LLLL shape[1]=UU shape[2]=LLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=U shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllUpper type[2]=AllLetter p1[-2]=p p1[-1]=B p1[0]=f p1[1]=S p1[2]=c p2[-2]=pl p2[-1]=Bl p2[0]=fr p2[1]=SD p2[2]=ca p3[-2]=pla p3[-1]=Bla p3[0]=fro p3[1]= p3[2]=car p4[-2]=play p4[-1]=Blac p4[0]=from p4[1]= p4[2]=card s1[-2]=y s1[-1]=d s1[0]=m s1[1]=D s1[2]=d s2[-2]=ay s2[-1]=rd s2[0]=om s2[1]=SD s2[2]=rd s3[-2]=lay s3[-1]=ird s3[0]=rom s3[1]= s3[2]=ard s4[-2]=play s4[-1]=bird s4[0]=from s4[1]= s4[2]=card 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=yes au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Blackbird w[-1]|w[0]=Blackbird|from w[0]|w[1]=from|SD w[1]|w[2]=SD|card pos[-2]|pos[-1]=VBP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|AllLetter w[-4..-1]=play w[-4..-1]=Blackbird w[1..4]=SD w[1..4]=card +O w[-2]=Blackbird w[-1]=from w[0]=SD w[1]=card wl[-2]=blackbird wl[-1]=from wl[0]=sd wl[1]=card pos[-2]=NNP pos[-1]=IN pos[0]=NN pos[1]=NN chk[-2]=I chk[-1]=O chk[0]=O chk[1]=O shape[-2]=ULLLLLLLL shape[-1]=LLLL shape[0]=UU shape[1]=LLLL shaped[-2]=UL shaped[-1]=L shaped[0]=U shaped[1]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllUpper type[1]=AllLetter p1[-2]=B p1[-1]=f p1[0]=S p1[1]=c p2[-2]=Bl p2[-1]=fr p2[0]=SD p2[1]=ca p3[-2]=Bla p3[-1]=fro p3[0]= p3[1]=car p4[-2]=Blac p4[-1]=from p4[0]= p4[1]=card s1[-2]=d s1[-1]=m s1[0]=D s1[1]=d s2[-2]=rd s2[-1]=om s2[0]=SD s2[1]=rd s3[-2]=ird s3[-1]=rom s3[0]= s3[1]=ard s4[-2]=bird s4[-1]=from s4[0]= s4[1]=card 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=yes au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Blackbird|from w[-1]|w[0]=from|SD w[0]|w[1]=SD|card pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|AllLetter w[-4..-1]=play w[-4..-1]=Blackbird w[-4..-1]=from w[1..4]=card +O w[-2]=from w[-1]=SD w[0]=card wl[-2]=from wl[-1]=sd wl[0]=card pos[-2]=IN pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=UU shape[0]=LLLL shaped[-2]=L shaped[-1]=U shaped[0]=L type[-2]=AllLetter type[-1]=AllUpper type[0]=AllLetter p1[-2]=f p1[-1]=S p1[0]=c p2[-2]=fr p2[-1]=SD p2[0]=ca p3[-2]=fro p3[-1]= p3[0]=car p4[-2]=from p4[-1]= p4[0]=card s1[-2]=m s1[-1]=D s1[0]=d s2[-2]=om s2[-1]=SD s2[0]=rd s3[-2]=rom s3[-1]= s3[0]=ard s4[-2]=from s4[-1]= s4[0]=card 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=yes au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=no cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=from|SD w[-1]|w[0]=SD|card pos[-2]|pos[-1]=IN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|L type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|AllLetter w[-4..-1]=play w[-4..-1]=Blackbird w[-4..-1]=from w[-4..-1]=SD __EOS__ + +O w[0]=play w[1]=music w[2]=on wl[0]=play wl[1]=music wl[2]=on pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=o p2[0]=pl p2[1]=mu p2[2]=on p3[0]=pla p3[1]=mus p3[2]= p4[0]=play p4[1]=musi p4[2]= s1[0]=y s1[1]=c s1[2]=n s2[0]=ay s2[1]=ic s2[2]=on s3[0]=lay s3[1]=sic s3[2]= s4[0]=play s4[1]=usic s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|music w[1]|w[2]=music|on pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=music w[1..4]=on w[1..4]=Spotify __BOS__ +O w[-1]=play w[0]=music w[1]=on w[2]=Spotify wl[-1]=play wl[0]=music wl[1]=on wl[2]=spotify pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=m p1[1]=o p1[2]=S p2[-1]=pl p2[0]=mu p2[1]=on p2[2]=Sp p3[-1]=pla p3[0]=mus p3[1]= p3[2]=Spo p4[-1]=play p4[0]=musi p4[1]= p4[2]=Spot s1[-1]=y s1[0]=c s1[1]=n s1[2]=y s2[-1]=ay s2[0]=ic s2[1]=on s2[2]=fy s3[-1]=lay s3[0]=sic s3[1]= s3[2]=ify s4[-1]=play s4[0]=usic s4[1]= s4[2]=tify 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|music w[0]|w[1]=music|on w[1]|w[2]=on|Spotify pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=on w[1..4]=Spotify +O w[-2]=play w[-1]=music w[0]=on w[1]=Spotify wl[-2]=play wl[-1]=music wl[0]=on wl[1]=spotify pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=m p1[0]=o p1[1]=S p2[-2]=pl p2[-1]=mu p2[0]=on p2[1]=Sp p3[-2]=pla p3[-1]=mus p3[0]= p3[1]=Spo p4[-2]=play p4[-1]=musi p4[0]= p4[1]=Spot s1[-2]=y s1[-1]=c s1[0]=n s1[1]=y s2[-2]=ay s2[-1]=ic s2[0]=on s2[1]=fy s3[-2]=lay s3[-1]=sic s3[0]= s3[1]=ify s4[-2]=play s4[-1]=usic s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|music w[-1]|w[0]=music|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=music w[1..4]=Spotify +service w[-2]=music w[-1]=on w[0]=Spotify wl[-2]=music wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=m p1[-1]=o p1[0]=S p2[-2]=mu p2[-1]=on p2[0]=Sp p3[-2]=mus p3[-1]= p3[0]=Spo p4[-2]=musi p4[-1]= p4[0]=Spot s1[-2]=c s1[-1]=n s1[0]=y s2[-2]=ic s2[-1]=on s2[0]=fy s3[-2]=sic s3[-1]= s3[0]=ify s4[-2]=usic s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=music|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=music w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=One w[2]=Direction wl[0]=play wl[1]=one wl[2]=direction pos[0]=VB pos[1]=CD pos[2]=CD chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=ULLLLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=O p1[2]=D p2[0]=pl p2[1]=On p2[2]=Di p3[0]=pla p3[1]=One p3[2]=Dir p4[0]=play p4[1]= p4[2]=Dire s1[0]=y s1[1]=e s1[2]=n s2[0]=ay s2[1]=ne s2[2]=on s3[0]=lay s3[1]=One s3[2]=ion s4[0]=play s4[1]= s4[2]=tion 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|One w[1]|w[2]=One|Direction pos[0]|pos[1]=VB|CD pos[1]|pos[2]=CD|CD chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=One w[1..4]=Direction __BOS__ +artist w[-1]=play w[0]=One w[1]=Direction wl[-1]=play wl[0]=one wl[1]=direction pos[-1]=VB pos[0]=CD pos[1]=CD chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULL shape[1]=ULLLLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=O p1[1]=D p2[-1]=pl p2[0]=On p2[1]=Di p3[-1]=pla p3[0]=One p3[1]=Dir p4[-1]=play p4[0]= p4[1]=Dire s1[-1]=y s1[0]=e s1[1]=n s2[-1]=ay s2[0]=ne s2[1]=on s3[-1]=lay s3[0]=One s3[1]=ion s4[-1]=play s4[0]= s4[1]=tion 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|One w[0]|w[1]=One|Direction pos[-1]|pos[0]=VB|CD pos[0]|pos[1]=CD|CD chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Direction +artist w[-2]=play w[-1]=One w[0]=Direction wl[-2]=play wl[-1]=one wl[0]=direction pos[-2]=VB pos[-1]=CD pos[0]=CD chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=O p1[0]=D p2[-2]=pl p2[-1]=On p2[0]=Di p3[-2]=pla p3[-1]=One p3[0]=Dir p4[-2]=play p4[-1]= p4[0]=Dire s1[-2]=y s1[-1]=e s1[0]=n s2[-2]=ay s2[-1]=ne s2[0]=on s3[-2]=lay s3[-1]=One s3[0]=ion s4[-2]=play s4[-1]= s4[0]=tion 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|One w[-1]|w[0]=One|Direction pos[-2]|pos[-1]=VB|CD pos[-1]|pos[0]=CD|CD chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=One __EOS__ + +O w[0]=I'd w[1]=like w[2]=to wl[0]=i'd wl[1]=like wl[2]=to pos[0]=PRP pos[1]=MD pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=U'L shape[1]=LLLL shape[2]=LL shaped[0]=U'L shaped[1]=L shaped[2]=L type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=l p1[2]=t p2[0]=I' p2[1]=li p2[2]=to p3[0]=I'd p3[1]=lik p3[2]= p4[0]= p4[1]=like p4[2]= s1[0]=d s1[1]=e s1[2]=o s2[0]='d s2[1]=ke s2[2]=to s3[0]=I'd s3[1]=ike s3[2]= s4[0]= s4[1]=like s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=I'd|like w[1]|w[2]=like|to pos[0]|pos[1]=PRP|MD pos[1]|pos[2]=MD|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=like w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I'd w[0]=like w[1]=to w[2]=listen wl[-1]=i'd wl[0]=like wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=MD pos[1]=VB pos[2]=TO chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U'L shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U'L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=l p1[1]=t p1[2]=l p2[-1]=I' p2[0]=li p2[1]=to p2[2]=li p3[-1]=I'd p3[0]=lik p3[1]= p3[2]=lis p4[-1]= p4[0]=like p4[1]= p4[2]=list s1[-1]=d s1[0]=e s1[1]=o s1[2]=n s2[-1]='d s2[0]=ke s2[1]=to s2[2]=en s3[-1]=I'd s3[0]=ike s3[1]= s3[2]=ten s4[-1]= s4[0]=like s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I'd|like w[0]|w[1]=like|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|MD pos[0]|pos[1]=MD|VB pos[1]|pos[2]=VB|TO chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U'L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=some +O w[-2]=I'd w[-1]=like w[0]=to w[1]=listen w[2]=to wl[-2]=i'd wl[-1]=like wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=MD pos[0]=VB pos[1]=TO pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U'L shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U'L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=l p1[0]=t p1[1]=l p1[2]=t p2[-2]=I' p2[-1]=li p2[0]=to p2[1]=li p2[2]=to p3[-2]=I'd p3[-1]=lik p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=like p4[0]= p4[1]=list p4[2]= s1[-2]=d s1[-1]=e s1[0]=o s1[1]=n s1[2]=o s2[-2]='d s2[-1]=ke s2[0]=to s2[1]=en s2[2]=to s3[-2]=I'd s3[-1]=ike s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=like s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I'd|like w[-1]|w[0]=like|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|MD pos[-1]|pos[0]=MD|VB pos[0]|pos[1]=VB|TO pos[1]|pos[2]=TO|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U'L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[1..4]=listen w[1..4]=to w[1..4]=some w[1..4]=music +O w[-2]=like w[-1]=to w[0]=listen w[1]=to w[2]=some wl[-2]=like wl[-1]=to wl[0]=listen wl[1]=to wl[2]=some pos[-2]=MD pos[-1]=VB pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=l p1[1]=t p1[2]=s p2[-2]=li p2[-1]=to p2[0]=li p2[1]=to p2[2]=so p3[-2]=lik p3[-1]= p3[0]=lis p3[1]= p3[2]=som p4[-2]=like p4[-1]= p4[0]=list p4[1]= p4[2]=some s1[-2]=e s1[-1]=o s1[0]=n s1[1]=o s1[2]=e s2[-2]=ke s2[-1]=to s2[0]=en s2[1]=to s2[2]=me s3[-2]=ike s3[-1]= s3[0]=ten s3[1]= s3[2]=ome s4[-2]=like s4[-1]= s4[0]=sten s4[1]= s4[2]=some 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=like|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|some pos[-2]|pos[-1]=MD|VB pos[-1]|pos[0]=VB|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[-4..-1]=to w[1..4]=to w[1..4]=some w[1..4]=music +O w[-2]=to w[-1]=listen w[0]=to w[1]=some w[2]=music wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=some wl[2]=music pos[-2]=VB pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=s p1[2]=m p2[-2]=to p2[-1]=li p2[0]=to p2[1]=so p2[2]=mu p3[-2]= p3[-1]=lis p3[0]= p3[1]=som p3[2]=mus p4[-2]= p4[-1]=list p4[0]= p4[1]=some p4[2]=musi s1[-2]=o s1[-1]=n s1[0]=o s1[1]=e s1[2]=c s2[-2]=to s2[-1]=en s2[0]=to s2[1]=me s2[2]=ic s3[-2]= s3[-1]=ten s3[0]= s3[1]=ome s3[2]=sic s4[-2]= s4[-1]=sten s4[0]= s4[1]=some s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|some w[1]|w[2]=some|music pos[-2]|pos[-1]=VB|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[-4..-1]=to w[-4..-1]=listen w[1..4]=some w[1..4]=music +O w[-2]=listen w[-1]=to w[0]=some w[1]=music wl[-2]=listen wl[-1]=to wl[0]=some wl[1]=music pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=l p1[-1]=t p1[0]=s p1[1]=m p2[-2]=li p2[-1]=to p2[0]=so p2[1]=mu p3[-2]=lis p3[-1]= p3[0]=som p3[1]=mus p4[-2]=list p4[-1]= p4[0]=some p4[1]=musi s1[-2]=n s1[-1]=o s1[0]=e s1[1]=c s2[-2]=en s2[-1]=to s2[0]=me s2[1]=ic s3[-2]=ten s3[-1]= s3[0]=ome s3[1]=sic s4[-2]=sten s4[-1]= s4[0]=some s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|some w[0]|w[1]=some|music pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=like w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=music +O w[-2]=to w[-1]=some w[0]=music wl[-2]=to wl[-1]=some wl[0]=music pos[-2]=VB pos[-1]=IN pos[0]=DT chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=s p1[0]=m p2[-2]=to p2[-1]=so p2[0]=mu p3[-2]= p3[-1]=som p3[0]=mus p4[-2]= p4[-1]=some p4[0]=musi s1[-2]=o s1[-1]=e s1[0]=c s2[-2]=to s2[-1]=me s2[0]=ic s3[-2]= s3[-1]=ome s3[0]=sic s4[-2]= s4[-1]=some s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|some w[-1]|w[0]=some|music pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=some __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=hear w[1..4]=Owner __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=hear wl[-1]=i wl[0]=want wl[1]=to wl[2]=hear pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=h p2[-1]= p2[0]=wa p2[1]=to p2[2]=he p3[-1]= p3[0]=wan p3[1]= p3[2]=hea p4[-1]= p4[0]=want p4[1]= p4[2]=hear s1[-1]=I s1[0]=t s1[1]=o s1[2]=r s2[-1]= s2[0]=nt s2[1]=to s2[2]=ar s3[-1]= s3[0]=ant s3[1]= s3[2]=ear s4[-1]= s4[0]=want s4[1]= s4[2]=hear 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|hear pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=hear w[1..4]=Owner w[1..4]=of +O w[-2]=I w[-1]=want w[0]=to w[1]=hear w[2]=Owner wl[-2]=i wl[-1]=want wl[0]=to wl[1]=hear wl[2]=owner pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shape[2]=ULLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=I p1[-1]=w p1[0]=t p1[1]=h p1[2]=O p2[-2]= p2[-1]=wa p2[0]=to p2[1]=he p2[2]=Ow p3[-2]= p3[-1]=wan p3[0]= p3[1]=hea p3[2]=Own p4[-2]= p4[-1]=want p4[0]= p4[1]=hear p4[2]=Owne s1[-2]=I s1[-1]=t s1[0]=o s1[1]=r s1[2]=r s2[-2]= s2[-1]=nt s2[0]=to s2[1]=ar s2[2]=er s3[-2]= s3[-1]=ant s3[0]= s3[1]=ear s3[2]=ner s4[-2]= s4[-1]=want s4[0]= s4[1]=hear s4[2]=wner 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|hear w[1]|w[2]=hear|Owner pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=I w[-4..-1]=want w[1..4]=hear w[1..4]=Owner w[1..4]=of w[1..4]=a +O w[-2]=want w[-1]=to w[0]=hear w[1]=Owner w[2]=of wl[-2]=want wl[-1]=to wl[0]=hear wl[1]=owner wl[2]=of pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shape[1]=ULLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=w p1[-1]=t p1[0]=h p1[1]=O p1[2]=o p2[-2]=wa p2[-1]=to p2[0]=he p2[1]=Ow p2[2]=of p3[-2]=wan p3[-1]= p3[0]=hea p3[1]=Own p3[2]= p4[-2]=want p4[-1]= p4[0]=hear p4[1]=Owne p4[2]= s1[-2]=t s1[-1]=o s1[0]=r s1[1]=r s1[2]=f s2[-2]=nt s2[-1]=to s2[0]=ar s2[1]=er s2[2]=of s3[-2]=ant s3[-1]= s3[0]=ear s3[1]=ner s3[2]= s4[-2]=want s4[-1]= s4[0]=hear s4[1]=wner s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|hear w[0]|w[1]=hear|Owner w[1]|w[2]=Owner|of pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=Owner w[1..4]=of w[1..4]=a w[1..4]=Lonely +song w[-2]=to w[-1]=hear w[0]=Owner w[1]=of w[2]=a wl[-2]=to wl[-1]=hear wl[0]=owner wl[1]=of wl[2]=a pos[-2]=TO pos[-1]=VB pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=LLLL shape[0]=ULLLL shape[1]=LL shape[2]=L shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=h p1[0]=O p1[1]=o p1[2]=a p2[-2]=to p2[-1]=he p2[0]=Ow p2[1]=of p2[2]= p3[-2]= p3[-1]=hea p3[0]=Own p3[1]= p3[2]= p4[-2]= p4[-1]=hear p4[0]=Owne p4[1]= p4[2]= s1[-2]=o s1[-1]=r s1[0]=r s1[1]=f s1[2]=a s2[-2]=to s2[-1]=ar s2[0]=er s2[1]=of s2[2]= s3[-2]= s3[-1]=ear s3[0]=ner s3[1]= s3[2]= s4[-2]= s4[-1]=hear s4[0]=wner s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|hear w[-1]|w[0]=hear|Owner w[0]|w[1]=Owner|of w[1]|w[2]=of|a pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=hear w[1..4]=of w[1..4]=a w[1..4]=Lonely w[1..4]=Heart +song w[-2]=hear w[-1]=Owner w[0]=of w[1]=a w[2]=Lonely wl[-2]=hear wl[-1]=owner wl[0]=of wl[1]=a wl[2]=lonely pos[-2]=VB pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=LL shape[1]=L shape[2]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=h p1[-1]=O p1[0]=o p1[1]=a p1[2]=L p2[-2]=he p2[-1]=Ow p2[0]=of p2[1]= p2[2]=Lo p3[-2]=hea p3[-1]=Own p3[0]= p3[1]= p3[2]=Lon p4[-2]=hear p4[-1]=Owne p4[0]= p4[1]= p4[2]=Lone s1[-2]=r s1[-1]=r s1[0]=f s1[1]=a s1[2]=y s2[-2]=ar s2[-1]=er s2[0]=of s2[1]= s2[2]=ly s3[-2]=ear s3[-1]=ner s3[0]= s3[1]= s3[2]=ely s4[-2]=hear s4[-1]=wner s4[0]= s4[1]= s4[2]=nely 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=hear|Owner w[-1]|w[0]=Owner|of w[0]|w[1]=of|a w[1]|w[2]=a|Lonely pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=want w[-4..-1]=to w[-4..-1]=hear w[-4..-1]=Owner w[1..4]=a w[1..4]=Lonely w[1..4]=Heart +song w[-2]=Owner w[-1]=of w[0]=a w[1]=Lonely w[2]=Heart wl[-2]=owner wl[-1]=of wl[0]=a wl[1]=lonely wl[2]=heart pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=LL shape[0]=L shape[1]=ULLLLL shape[2]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=O p1[-1]=o p1[0]=a p1[1]=L p1[2]=H p2[-2]=Ow p2[-1]=of p2[0]= p2[1]=Lo p2[2]=He p3[-2]=Own p3[-1]= p3[0]= p3[1]=Lon p3[2]=Hea p4[-2]=Owne p4[-1]= p4[0]= p4[1]=Lone p4[2]=Hear s1[-2]=r s1[-1]=f s1[0]=a s1[1]=y s1[2]=t s2[-2]=er s2[-1]=of s2[0]= s2[1]=ly s2[2]=rt s3[-2]=ner s3[-1]= s3[0]= s3[1]=ely s3[2]=art s4[-2]=wner s4[-1]= s4[0]= s4[1]=nely s4[2]=eart 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Owner|of w[-1]|w[0]=of|a w[0]|w[1]=a|Lonely w[1]|w[2]=Lonely|Heart pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=to w[-4..-1]=hear w[-4..-1]=Owner w[-4..-1]=of w[1..4]=Lonely w[1..4]=Heart +song w[-2]=of w[-1]=a w[0]=Lonely w[1]=Heart wl[-2]=of wl[-1]=a wl[0]=lonely wl[1]=heart pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=LL shape[-1]=L shape[0]=ULLLLL shape[1]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=o p1[-1]=a p1[0]=L p1[1]=H p2[-2]=of p2[-1]= p2[0]=Lo p2[1]=He p3[-2]= p3[-1]= p3[0]=Lon p3[1]=Hea p4[-2]= p4[-1]= p4[0]=Lone p4[1]=Hear s1[-2]=f s1[-1]=a s1[0]=y s1[1]=t s2[-2]=of s2[-1]= s2[0]=ly s2[1]=rt s3[-2]= s3[-1]= s3[0]=ely s3[1]=art s4[-2]= s4[-1]= s4[0]=nely s4[1]=eart 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=of|a w[-1]|w[0]=a|Lonely w[0]|w[1]=Lonely|Heart pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=hear w[-4..-1]=Owner w[-4..-1]=of w[-4..-1]=a w[1..4]=Heart +song w[-2]=a w[-1]=Lonely w[0]=Heart wl[-2]=a wl[-1]=lonely wl[0]=heart pos[-2]=NN pos[-1]=NN pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=L shape[-1]=ULLLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=a p1[-1]=L p1[0]=H p2[-2]= p2[-1]=Lo p2[0]=He p3[-2]= p3[-1]=Lon p3[0]=Hea p4[-2]= p4[-1]=Lone p4[0]=Hear s1[-2]=a s1[-1]=y s1[0]=t s2[-2]= s2[-1]=ly s2[0]=rt s3[-2]= s3[-1]=ely s3[0]=art s4[-2]= s4[-1]=nely s4[0]=eart 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=a|Lonely w[-1]|w[0]=Lonely|Heart pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Owner w[-4..-1]=of w[-4..-1]=a w[-4..-1]=Lonely __EOS__ + +song w[0]=No w[1]=Scrubs w[2]=song wl[0]=no wl[1]=scrubs wl[2]=song pos[0]=DT pos[1]=DT pos[2]=NN chk[0]=I chk[1]=I chk[2]=O shape[0]=UL shape[1]=ULLLLL shape[2]=LLLL shaped[0]=UL shaped[1]=UL shaped[2]=L type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[0]=N p1[1]=S p1[2]=s p2[0]=No p2[1]=Sc p2[2]=so p3[0]= p3[1]=Scr p3[2]=son p4[0]= p4[1]=Scru p4[2]=song s1[0]=o s1[1]=s s1[2]=g s2[0]=No s2[1]=bs s2[2]=ng s3[0]= s3[1]=ubs s3[2]=ong s4[0]= s4[1]=rubs s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=No|Scrubs w[1]|w[2]=Scrubs|song pos[0]|pos[1]=DT|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Scrubs w[1..4]=song w[1..4]=play __BOS__ +song w[-1]=No w[0]=Scrubs w[1]=song w[2]=play wl[-1]=no wl[0]=scrubs wl[1]=song wl[2]=play pos[-1]=DT pos[0]=DT pos[1]=NN pos[2]=NN chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-1]=UL shape[0]=ULLLLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=N p1[0]=S p1[1]=s p1[2]=p p2[-1]=No p2[0]=Sc p2[1]=so p2[2]=pl p3[-1]= p3[0]=Scr p3[1]=son p3[2]=pla p4[-1]= p4[0]=Scru p4[1]=song p4[2]=play s1[-1]=o s1[0]=s s1[1]=g s1[2]=y s2[-1]=No s2[0]=bs s2[1]=ng s2[2]=ay s3[-1]= s3[0]=ubs s3[1]=ong s3[2]=lay s4[-1]= s4[0]=rubs s4[1]=song s4[2]=play 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=No|Scrubs w[0]|w[1]=Scrubs|song w[1]|w[2]=song|play pos[-1]|pos[0]=DT|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=No w[1..4]=song w[1..4]=play +O w[-2]=No w[-1]=Scrubs w[0]=song w[1]=play wl[-2]=no wl[-1]=scrubs wl[0]=song wl[1]=play pos[-2]=DT pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O shape[-2]=UL shape[-1]=ULLLLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter p1[-2]=N p1[-1]=S p1[0]=s p1[1]=p p2[-2]=No p2[-1]=Sc p2[0]=so p2[1]=pl p3[-2]= p3[-1]=Scr p3[0]=son p3[1]=pla p4[-2]= p4[-1]=Scru p4[0]=song p4[1]=play s1[-2]=o s1[-1]=s s1[0]=g s1[1]=y s2[-2]=No s2[-1]=bs s2[0]=ng s2[1]=ay s3[-2]= s3[-1]=ubs s3[0]=ong s3[1]=lay s4[-2]= s4[-1]=rubs s4[0]=song s4[1]=play 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=No|Scrubs w[-1]|w[0]=Scrubs|song w[0]|w[1]=song|play pos[-2]|pos[-1]=DT|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=No w[-4..-1]=Scrubs w[1..4]=play +O w[-2]=Scrubs w[-1]=song w[0]=play wl[-2]=scrubs wl[-1]=song wl[0]=play pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=I chk[-1]=O chk[0]=O shape[-2]=ULLLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter p1[-2]=S p1[-1]=s p1[0]=p p2[-2]=Sc p2[-1]=so p2[0]=pl p3[-2]=Scr p3[-1]=son p3[0]=pla p4[-2]=Scru p4[-1]=song p4[0]=play s1[-2]=s s1[-1]=g s1[0]=y s2[-2]=bs s2[-1]=ng s2[0]=ay s3[-2]=ubs s3[-1]=ong s3[0]=lay s4[-2]=rubs s4[-1]=song s4[0]=play 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Scrubs|song w[-1]|w[0]=song|play pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=No w[-4..-1]=Scrubs w[-4..-1]=song __EOS__ + +O w[0]=play w[1]=me w[2]=some wl[0]=play wl[1]=me wl[2]=some pos[0]=VB pos[1]=PRP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=s p2[0]=pl p2[1]=me p2[2]=so p3[0]=pla p3[1]= p3[2]=som p4[0]=play p4[1]= p4[2]=some s1[0]=y s1[1]=e s1[2]=e s2[0]=ay s2[1]=me s2[2]=me s3[0]=lay s3[1]= s3[2]=ome s4[0]=play s4[1]= s4[2]=some 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|me w[1]|w[2]=me|some pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=me w[1..4]=some w[1..4]=jazz __BOS__ +O w[-1]=play w[0]=me w[1]=some w[2]=jazz wl[-1]=play wl[0]=me wl[1]=some wl[2]=jazz pos[-1]=VB pos[0]=PRP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=m p1[1]=s p1[2]=j p2[-1]=pl p2[0]=me p2[1]=so p2[2]=ja p3[-1]=pla p3[0]= p3[1]=som p3[2]=jaz p4[-1]=play p4[0]= p4[1]=some p4[2]=jazz s1[-1]=y s1[0]=e s1[1]=e s1[2]=z s2[-1]=ay s2[0]=me s2[1]=me s2[2]=zz s3[-1]=lay s3[0]= s3[1]=ome s3[2]=azz s4[-1]=play s4[0]= s4[1]=some s4[2]=jazz 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|me w[0]|w[1]=me|some w[1]|w[2]=some|jazz pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=some w[1..4]=jazz +O w[-2]=play w[-1]=me w[0]=some w[1]=jazz wl[-2]=play wl[-1]=me wl[0]=some wl[1]=jazz pos[-2]=VB pos[-1]=PRP pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=m p1[0]=s p1[1]=j p2[-2]=pl p2[-1]=me p2[0]=so p2[1]=ja p3[-2]=pla p3[-1]= p3[0]=som p3[1]=jaz p4[-2]=play p4[-1]= p4[0]=some p4[1]=jazz s1[-2]=y s1[-1]=e s1[0]=e s1[1]=z s2[-2]=ay s2[-1]=me s2[0]=me s2[1]=zz s3[-2]=lay s3[-1]= s3[0]=ome s3[1]=azz s4[-2]=play s4[-1]= s4[0]=some s4[1]=jazz 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|me w[-1]|w[0]=me|some w[0]|w[1]=some|jazz pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[1..4]=jazz +genre w[-2]=me w[-1]=some w[0]=jazz wl[-2]=me wl[-1]=some wl[0]=jazz pos[-2]=PRP pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=s p1[0]=j p2[-2]=me p2[-1]=so p2[0]=ja p3[-2]= p3[-1]=som p3[0]=jaz p4[-2]= p4[-1]=some p4[0]=jazz s1[-2]=e s1[-1]=e s1[0]=z s2[-2]=me s2[-1]=me s2[0]=zz s3[-2]= s3[-1]=ome s3[0]=azz s4[-2]= s4[-1]=some s4[0]=jazz 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=me|some w[-1]|w[0]=some|jazz pos[-2]|pos[-1]=PRP|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=me w[-4..-1]=some __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=Bleeding +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=Bleeding w[1..4]=Love +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=Bleeding wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=bleeding pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=B p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=Bl p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=Ble p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]=Blee s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=g s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=ng s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=ing s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]=ding 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|Bleeding pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=Bleeding w[1..4]=Love +O w[-2]=to w[-1]=listen w[0]=to w[1]=Bleeding w[2]=Love wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=bleeding wl[2]=love pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=ULLLLLLL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=t p1[-1]=l p1[0]=t p1[1]=B p1[2]=L p2[-2]=to p2[-1]=li p2[0]=to p2[1]=Bl p2[2]=Lo p3[-2]= p3[-1]=lis p3[0]= p3[1]=Ble p3[2]=Lov p4[-2]= p4[-1]=list p4[0]= p4[1]=Blee p4[2]=Love s1[-2]=o s1[-1]=n s1[0]=o s1[1]=g s1[2]=e s2[-2]=to s2[-1]=en s2[0]=to s2[1]=ng s2[2]=ve s3[-2]= s3[-1]=ten s3[0]= s3[1]=ing s3[2]=ove s4[-2]= s4[-1]=sten s4[0]= s4[1]=ding s4[2]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|Bleeding w[1]|w[2]=Bleeding|Love pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=Bleeding w[1..4]=Love +song w[-2]=listen w[-1]=to w[0]=Bleeding w[1]=Love wl[-2]=listen wl[-1]=to wl[0]=bleeding wl[1]=love pos[-2]=VB pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=ULLLLLLL shape[1]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=l p1[-1]=t p1[0]=B p1[1]=L p2[-2]=li p2[-1]=to p2[0]=Bl p2[1]=Lo p3[-2]=lis p3[-1]= p3[0]=Ble p3[1]=Lov p4[-2]=list p4[-1]= p4[0]=Blee p4[1]=Love s1[-2]=n s1[-1]=o s1[0]=g s1[1]=e s2[-2]=en s2[-1]=to s2[0]=ng s2[1]=ve s3[-2]=ten s3[-1]= s3[0]=ing s3[1]=ove s4[-2]=sten s4[-1]= s4[0]=ding s4[1]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|Bleeding w[0]|w[1]=Bleeding|Love pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=Love +song w[-2]=to w[-1]=Bleeding w[0]=Love wl[-2]=to wl[-1]=bleeding wl[0]=love pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLLLL shape[0]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=t p1[-1]=B p1[0]=L p2[-2]=to p2[-1]=Bl p2[0]=Lo p3[-2]= p3[-1]=Ble p3[0]=Lov p4[-2]= p4[-1]=Blee p4[0]=Love s1[-2]=o s1[-1]=g s1[0]=e s2[-2]=to s2[-1]=ng s2[0]=ve s3[-2]= s3[-1]=ing s3[0]=ove s4[-2]= s4[-1]=ding s4[0]=Love 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|Bleeding w[-1]|w[0]=Bleeding|Love pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Bleeding __EOS__ + +O w[0]=play w[1]=song w[2]=She's wl[0]=play wl[1]=song wl[2]=she's pos[0]=VBP pos[1]=NN pos[2]=PRP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLL shape[2]=ULL'L shaped[0]=L shaped[1]=L shaped[2]=UL'L type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=s p1[2]=S p2[0]=pl p2[1]=so p2[2]=Sh p3[0]=pla p3[1]=son p3[2]=She p4[0]=play p4[1]=song p4[2]=She' s1[0]=y s1[1]=g s1[2]=s s2[0]=ay s2[1]=ng s2[2]='s s3[0]=lay s3[1]=ong s3[2]=e's s4[0]=play s4[1]=song s4[2]=he's 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=yes w[0]|w[1]=play|song w[1]|w[2]=song|She's pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|PRP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL'L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=song w[1..4]=She's w[1..4]=Got w[1..4]=the __BOS__ +O w[-1]=play w[0]=song w[1]=She's w[2]=Got wl[-1]=play wl[0]=song wl[1]=she's wl[2]=got pos[-1]=VBP pos[0]=NN pos[1]=PRP pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=ULL'L shape[2]=ULL shaped[-1]=L shaped[0]=L shaped[1]=UL'L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=S p1[2]=G p2[-1]=pl p2[0]=so p2[1]=Sh p2[2]=Go p3[-1]=pla p3[0]=son p3[1]=She p3[2]=Got p4[-1]=play p4[0]=song p4[1]=She' p4[2]= s1[-1]=y s1[0]=g s1[1]=s s1[2]=t s2[-1]=ay s2[0]=ng s2[1]='s s2[2]=ot s3[-1]=lay s3[0]=ong s3[1]=e's s3[2]=Got s4[-1]=play s4[0]=song s4[1]=he's s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=yes cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|She's w[1]|w[2]=She's|Got pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|PRP pos[1]|pos[2]=PRP|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL'L shaped[1]|shaped[2]=UL'L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=She's w[1..4]=Got w[1..4]=the w[1..4]=Look +song w[-2]=play w[-1]=song w[0]=She's w[1]=Got w[2]=the wl[-2]=play wl[-1]=song wl[0]=she's wl[1]=got wl[2]=the pos[-2]=VBP pos[-1]=NN pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=ULL'L shape[1]=ULL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=UL'L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=s p1[0]=S p1[1]=G p1[2]=t p2[-2]=pl p2[-1]=so p2[0]=Sh p2[1]=Go p2[2]=th p3[-2]=pla p3[-1]=son p3[0]=She p3[1]=Got p3[2]=the p4[-2]=play p4[-1]=song p4[0]=She' p4[1]= p4[2]= s1[-2]=y s1[-1]=g s1[0]=s s1[1]=t s1[2]=e s2[-2]=ay s2[-1]=ng s2[0]='s s2[1]=ot s2[2]=he s3[-2]=lay s3[-1]=ong s3[0]=e's s3[1]=Got s3[2]=the s4[-2]=play s4[-1]=song s4[0]=he's s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=yes cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|She's w[0]|w[1]=She's|Got w[1]|w[2]=Got|the pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL'L shaped[0]|shaped[1]=UL'L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=song w[1..4]=Got w[1..4]=the w[1..4]=Look +song w[-2]=song w[-1]=She's w[0]=Got w[1]=the w[2]=Look wl[-2]=song wl[-1]=she's wl[0]=got wl[1]=the wl[2]=look pos[-2]=NN pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULL'L shape[0]=ULL shape[1]=LLL shape[2]=ULLL shaped[-2]=L shaped[-1]=UL'L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=s p1[-1]=S p1[0]=G p1[1]=t p1[2]=L p2[-2]=so p2[-1]=Sh p2[0]=Go p2[1]=th p2[2]=Lo p3[-2]=son p3[-1]=She p3[0]=Got p3[1]=the p3[2]=Loo p4[-2]=song p4[-1]=She' p4[0]= p4[1]= p4[2]=Look s1[-2]=g s1[-1]=s s1[0]=t s1[1]=e s1[2]=k s2[-2]=ng s2[-1]='s s2[0]=ot s2[1]=he s2[2]=ok s3[-2]=ong s3[-1]=e's s3[0]=Got s3[1]=the s3[2]=ook s4[-2]=song s4[-1]=he's s4[0]= s4[1]= s4[2]=Look 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|She's w[-1]|w[0]=She's|Got w[0]|w[1]=Got|the w[1]|w[2]=the|Look pos[-2]|pos[-1]=NN|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL'L shaped[-1]|shaped[0]=UL'L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=She's w[1..4]=the w[1..4]=Look +song w[-2]=She's w[-1]=Got w[0]=the w[1]=Look wl[-2]=she's wl[-1]=got wl[0]=the wl[1]=look pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=PRP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULL'L shape[-1]=ULL shape[0]=LLL shape[1]=ULLL shaped[-2]=UL'L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=S p1[-1]=G p1[0]=t p1[1]=L p2[-2]=Sh p2[-1]=Go p2[0]=th p2[1]=Lo p3[-2]=She p3[-1]=Got p3[0]=the p3[1]=Loo p4[-2]=She' p4[-1]= p4[0]= p4[1]=Look s1[-2]=s s1[-1]=t s1[0]=e s1[1]=k s2[-2]='s s2[-1]=ot s2[0]=he s2[1]=ok s3[-2]=e's s3[-1]=Got s3[0]=the s3[1]=ook s4[-2]=he's s4[-1]= s4[0]= s4[1]=Look 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=She's|Got w[-1]|w[0]=Got|the w[0]|w[1]=the|Look pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL'L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=She's w[-4..-1]=Got w[1..4]=Look +song w[-2]=Got w[-1]=the w[0]=Look wl[-2]=got wl[-1]=the wl[0]=look pos[-2]=PRP pos[-1]=PRP pos[0]=PRP chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=ULL shape[-1]=LLL shape[0]=ULLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=G p1[-1]=t p1[0]=L p2[-2]=Go p2[-1]=th p2[0]=Lo p3[-2]=Got p3[-1]=the p3[0]=Loo p4[-2]= p4[-1]= p4[0]=Look s1[-2]=t s1[-1]=e s1[0]=k s2[-2]=ot s2[-1]=he s2[0]=ok s3[-2]=Got s3[-1]=the s3[0]=ook s4[-2]= s4[-1]= s4[0]=Look 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Got|the w[-1]|w[0]=the|Look pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=song w[-4..-1]=She's w[-4..-1]=Got w[-4..-1]=the __EOS__ + +O w[0]=play w[1]=a w[2]=song wl[0]=play wl[1]=a wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=s p2[0]=pl p2[1]= p2[2]=so p3[0]=pla p3[1]= p3[2]=son p4[0]=play p4[1]= p4[2]=song s1[0]=y s1[1]=a s1[2]=g s2[0]=ay s2[1]= s2[2]=ng s3[0]=lay s3[1]= s3[2]=ong s4[0]=play s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=song __BOS__ +O w[-1]=play w[0]=a w[1]=song wl[-1]=play wl[0]=a wl[1]=song pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=L shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=a p1[1]=s p2[-1]=pl p2[0]= p2[1]=so p3[-1]=pla p3[0]= p3[1]=son p4[-1]=play p4[0]= p4[1]=song s1[-1]=y s1[0]=a s1[1]=g s2[-1]=ay s2[0]= s2[1]=ng s3[-1]=lay s3[0]= s3[1]=ong s4[-1]=play s4[0]= s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|a w[0]|w[1]=a|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=song +O w[-2]=play w[-1]=a w[0]=song wl[-2]=play wl[-1]=a wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=a p1[0]=s p2[-2]=pl p2[-1]= p2[0]=so p3[-2]=pla p3[-1]= p3[0]=son p4[-2]=play p4[-1]= p4[0]=song s1[-2]=y s1[-1]=a s1[0]=g s2[-2]=ay s2[-1]= s2[0]=ng s3[-2]=lay s3[-1]= s3[0]=ong s4[-2]=play s4[-1]= s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a __EOS__ + +O w[0]=play w[1]=R&B wl[0]=play wl[1]=r&b pos[0]=VB pos[1]=NNP chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=U&U shaped[0]=L shaped[1]=U&U type[0]=AllLetter type[1]=AllUpperSymbol p1[0]=p p1[1]=R p2[0]=pl p2[1]=R& p3[0]=pla p3[1]=R&B p4[0]=play p4[1]= s1[0]=y s1[1]=B s2[0]=ay s2[1]=&B s3[0]=lay s3[1]=R&B s4[0]=play s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=yes al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=no ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=yes w[0]|w[1]=play|R&B pos[0]|pos[1]=VB|NNP chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|U&U type[0]|type[1]=AllLetter|AllUpperSymbol w[1..4]=R&B __BOS__ +genre w[-1]=play w[0]=R&B wl[-1]=play wl[0]=r&b pos[-1]=VB pos[0]=NNP chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=U&U shaped[-1]=L shaped[0]=U&U type[-1]=AllLetter type[0]=AllUpperSymbol p1[-1]=p p1[0]=R p2[-1]=pl p2[0]=R& p3[-1]=pla p3[0]=R&B p4[-1]=play p4[0]= s1[-1]=y s1[0]=B s2[-1]=ay s2[0]=&B s3[-1]=lay s3[0]=R&B s4[-1]=play s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=yes al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=no ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=yes w[-1]|w[0]=play|R&B pos[-1]|pos[0]=VB|NNP chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|U&U type[-1]|type[0]=AllLetter|AllUpperSymbol w[-4..-1]=play __EOS__ + +O w[0]=play w[1]=Let w[2]=Her wl[0]=play wl[1]=let wl[2]=her pos[0]=VB pos[1]=VB pos[2]=VB chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULL shape[2]=ULL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=L p1[2]=H p2[0]=pl p2[1]=Le p2[2]=He p3[0]=pla p3[1]=Let p3[2]=Her p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=t s1[2]=r s2[0]=ay s2[1]=et s2[2]=er s3[0]=lay s3[1]=Let s3[2]=Her s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Let w[1]|w[2]=Let|Her pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Let w[1..4]=Her w[1..4]=Go w[1..4]=by __BOS__ +song w[-1]=play w[0]=Let w[1]=Her w[2]=Go wl[-1]=play wl[0]=let wl[1]=her wl[2]=go pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=VB chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULL shape[1]=ULL shape[2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=L p1[1]=H p1[2]=G p2[-1]=pl p2[0]=Le p2[1]=He p2[2]=Go p3[-1]=pla p3[0]=Let p3[1]=Her p3[2]= p4[-1]=play p4[0]= p4[1]= p4[2]= s1[-1]=y s1[0]=t s1[1]=r s1[2]=o s2[-1]=ay s2[0]=et s2[1]=er s2[2]=Go s3[-1]=lay s3[0]=Let s3[1]=Her s3[2]= s4[-1]=play s4[0]= s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Let w[0]|w[1]=Let|Her w[1]|w[2]=Her|Go pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Her w[1..4]=Go w[1..4]=by w[1..4]=Passenger +song w[-2]=play w[-1]=Let w[0]=Her w[1]=Go w[2]=by wl[-2]=play wl[-1]=let wl[0]=her wl[1]=go wl[2]=by pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULL shape[0]=ULL shape[1]=UL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=L p1[0]=H p1[1]=G p1[2]=b p2[-2]=pl p2[-1]=Le p2[0]=He p2[1]=Go p2[2]=by p3[-2]=pla p3[-1]=Let p3[0]=Her p3[1]= p3[2]= p4[-2]=play p4[-1]= p4[0]= p4[1]= p4[2]= s1[-2]=y s1[-1]=t s1[0]=r s1[1]=o s1[2]=y s2[-2]=ay s2[-1]=et s2[0]=er s2[1]=Go s2[2]=by s3[-2]=lay s3[-1]=Let s3[0]=Her s3[1]= s3[2]= s4[-2]=play s4[-1]= s4[0]= s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Let w[-1]|w[0]=Let|Her w[0]|w[1]=Her|Go w[1]|w[2]=Go|by pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Let w[1..4]=Go w[1..4]=by w[1..4]=Passenger w[1..4]=song +song w[-2]=Let w[-1]=Her w[0]=Go w[1]=by w[2]=Passenger wl[-2]=let wl[-1]=her wl[0]=go wl[1]=by wl[2]=passenger pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULL shape[-1]=ULL shape[0]=UL shape[1]=LL shape[2]=ULLLLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=L p1[-1]=H p1[0]=G p1[1]=b p1[2]=P p2[-2]=Le p2[-1]=He p2[0]=Go p2[1]=by p2[2]=Pa p3[-2]=Let p3[-1]=Her p3[0]= p3[1]= p3[2]=Pas p4[-2]= p4[-1]= p4[0]= p4[1]= p4[2]=Pass s1[-2]=t s1[-1]=r s1[0]=o s1[1]=y s1[2]=r s2[-2]=et s2[-1]=er s2[0]=Go s2[1]=by s2[2]=er s3[-2]=Let s3[-1]=Her s3[0]= s3[1]= s3[2]=ger s4[-2]= s4[-1]= s4[0]= s4[1]= s4[2]=nger 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Let|Her w[-1]|w[0]=Her|Go w[0]|w[1]=Go|by w[1]|w[2]=by|Passenger pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Let w[-4..-1]=Her w[1..4]=by w[1..4]=Passenger w[1..4]=song w[1..4]=on +O w[-2]=Her w[-1]=Go w[0]=by w[1]=Passenger w[2]=song wl[-2]=her wl[-1]=go wl[0]=by wl[1]=passenger wl[2]=song pos[-2]=VB pos[-1]=VB pos[0]=IN pos[1]=NNP pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=O shape[-2]=ULL shape[-1]=UL shape[0]=LL shape[1]=ULLLLLLLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=H p1[-1]=G p1[0]=b p1[1]=P p1[2]=s p2[-2]=He p2[-1]=Go p2[0]=by p2[1]=Pa p2[2]=so p3[-2]=Her p3[-1]= p3[0]= p3[1]=Pas p3[2]=son p4[-2]= p4[-1]= p4[0]= p4[1]=Pass p4[2]=song s1[-2]=r s1[-1]=o s1[0]=y s1[1]=r s1[2]=g s2[-2]=er s2[-1]=Go s2[0]=by s2[1]=er s2[2]=ng s3[-2]=Her s3[-1]= s3[0]= s3[1]=ger s3[2]=ong s4[-2]= s4[-1]= s4[0]= s4[1]=nger s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Her|Go w[-1]|w[0]=Go|by w[0]|w[1]=by|Passenger w[1]|w[2]=Passenger|song pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Let w[-4..-1]=Her w[-4..-1]=Go w[1..4]=Passenger w[1..4]=song w[1..4]=on w[1..4]=Spotify +artist w[-2]=Go w[-1]=by w[0]=Passenger w[1]=song w[2]=on wl[-2]=go wl[-1]=by wl[0]=passenger wl[1]=song wl[2]=on pos[-2]=VB pos[-1]=IN pos[0]=NNP pos[1]=NN pos[2]=IN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=O chk[2]=O shape[-2]=UL shape[-1]=LL shape[0]=ULLLLLLLL shape[1]=LLLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=G p1[-1]=b p1[0]=P p1[1]=s p1[2]=o p2[-2]=Go p2[-1]=by p2[0]=Pa p2[1]=so p2[2]=on p3[-2]= p3[-1]= p3[0]=Pas p3[1]=son p3[2]= p4[-2]= p4[-1]= p4[0]=Pass p4[1]=song p4[2]= s1[-2]=o s1[-1]=y s1[0]=r s1[1]=g s1[2]=n s2[-2]=Go s2[-1]=by s2[0]=er s2[1]=ng s2[2]=on s3[-2]= s3[-1]= s3[0]=ger s3[1]=ong s3[2]= s4[-2]= s4[-1]= s4[0]=nger s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Go|by w[-1]|w[0]=by|Passenger w[0]|w[1]=Passenger|song w[1]|w[2]=song|on pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=Let w[-4..-1]=Her w[-4..-1]=Go w[-4..-1]=by w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=by w[-1]=Passenger w[0]=song w[1]=on w[2]=Spotify wl[-2]=by wl[-1]=passenger wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=IN pos[-1]=NNP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=ULLLLLLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=b p1[-1]=P p1[0]=s p1[1]=o p1[2]=S p2[-2]=by p2[-1]=Pa p2[0]=so p2[1]=on p2[2]=Sp p3[-2]= p3[-1]=Pas p3[0]=son p3[1]= p3[2]=Spo p4[-2]= p4[-1]=Pass p4[0]=song p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=r s1[0]=g s1[1]=n s1[2]=y s2[-2]=by s2[-1]=er s2[0]=ng s2[1]=on s2[2]=fy s3[-2]= s3[-1]=ger s3[0]=ong s3[1]= s3[2]=ify s4[-2]= s4[-1]=nger s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Passenger w[-1]|w[0]=Passenger|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Her w[-4..-1]=Go w[-4..-1]=by w[-4..-1]=Passenger w[1..4]=on w[1..4]=Spotify +O w[-2]=Passenger w[-1]=song w[0]=on w[1]=Spotify wl[-2]=passenger wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLLLLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=P p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Pa p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=Pas p3[-1]=son p3[0]= p3[1]=Spo p4[-2]=Pass p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=r s1[-1]=g s1[0]=n s1[1]=y s2[-2]=er s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]=ger s3[-1]=ong s3[0]= s3[1]=ify s4[-2]=nger s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Passenger|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=Go w[-4..-1]=by w[-4..-1]=Passenger w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Passenger w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=Ariana +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=Ariana w[1..4]=Grande +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=Ariana wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=ariana pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=A p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=Ar p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=Ari p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]=Aria s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=a s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=na s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=ana s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]=iana 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|Ariana pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=Ariana w[1..4]=Grande +O w[-2]=to w[-1]=listen w[0]=to w[1]=Ariana w[2]=Grande wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=ariana wl[2]=grande pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=ULLLLL shape[2]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=t p1[-1]=l p1[0]=t p1[1]=A p1[2]=G p2[-2]=to p2[-1]=li p2[0]=to p2[1]=Ar p2[2]=Gr p3[-2]= p3[-1]=lis p3[0]= p3[1]=Ari p3[2]=Gra p4[-2]= p4[-1]=list p4[0]= p4[1]=Aria p4[2]=Gran s1[-2]=o s1[-1]=n s1[0]=o s1[1]=a s1[2]=e s2[-2]=to s2[-1]=en s2[0]=to s2[1]=na s2[2]=de s3[-2]= s3[-1]=ten s3[0]= s3[1]=ana s3[2]=nde s4[-2]= s4[-1]=sten s4[0]= s4[1]=iana s4[2]=ande 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|Ariana w[1]|w[2]=Ariana|Grande pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=Ariana w[1..4]=Grande +artist w[-2]=listen w[-1]=to w[0]=Ariana w[1]=Grande wl[-2]=listen wl[-1]=to wl[0]=ariana wl[1]=grande pos[-2]=VB pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=ULLLLL shape[1]=ULLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=l p1[-1]=t p1[0]=A p1[1]=G p2[-2]=li p2[-1]=to p2[0]=Ar p2[1]=Gr p3[-2]=lis p3[-1]= p3[0]=Ari p3[1]=Gra p4[-2]=list p4[-1]= p4[0]=Aria p4[1]=Gran s1[-2]=n s1[-1]=o s1[0]=a s1[1]=e s2[-2]=en s2[-1]=to s2[0]=na s2[1]=de s3[-2]=ten s3[-1]= s3[0]=ana s3[1]=nde s4[-2]=sten s4[-1]= s4[0]=iana s4[1]=ande 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|Ariana w[0]|w[1]=Ariana|Grande pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=Grande +artist w[-2]=to w[-1]=Ariana w[0]=Grande wl[-2]=to wl[-1]=ariana wl[0]=grande pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLL shape[0]=ULLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=t p1[-1]=A p1[0]=G p2[-2]=to p2[-1]=Ar p2[0]=Gr p3[-2]= p3[-1]=Ari p3[0]=Gra p4[-2]= p4[-1]=Aria p4[0]=Gran s1[-2]=o s1[-1]=a s1[0]=e s2[-2]=to s2[-1]=na s2[0]=de s3[-2]= s3[-1]=ana s3[0]=nde s4[-2]= s4[-1]=iana s4[0]=ande 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|Ariana w[-1]|w[0]=Ariana|Grande pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=Ariana __EOS__ + +O w[0]=can w[1]=you w[2]=please wl[0]=can wl[1]=you wl[2]=please pos[0]=MD pos[1]=PRP pos[2]=UH chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pl p3[0]=can p3[1]=you p3[2]=ple p4[0]= p4[1]= p4[2]=plea s1[0]=n s1[1]=u s1[2]=e s2[0]=an s2[1]=ou s2[2]=se s3[0]=can s3[1]=you s3[2]=ase s4[0]= s4[1]= s4[2]=ease 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|please pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|UH chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=please w[1..4]=play w[1..4]=a __BOS__ +O w[-1]=can w[0]=you w[1]=please w[2]=play wl[-1]=can wl[0]=you wl[1]=please wl[2]=play pos[-1]=MD pos[0]=PRP pos[1]=UH pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=p p2[-1]=ca p2[0]=yo p2[1]=pl p2[2]=pl p3[-1]=can p3[0]=you p3[1]=ple p3[2]=pla p4[-1]= p4[0]= p4[1]=plea p4[2]=play s1[-1]=n s1[0]=u s1[1]=e s1[2]=y s2[-1]=an s2[0]=ou s2[1]=se s2[2]=ay s3[-1]=can s3[0]=you s3[1]=ase s3[2]=lay s4[-1]= s4[0]= s4[1]=ease s4[2]=play 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|please w[1]|w[2]=please|play pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|UH pos[1]|pos[2]=UH|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=please w[1..4]=play w[1..4]=a w[1..4]=song +O w[-2]=can w[-1]=you w[0]=please w[1]=play w[2]=a wl[-2]=can wl[-1]=you wl[0]=please wl[1]=play wl[2]=a pos[-2]=MD pos[-1]=PRP pos[0]=UH pos[1]=VB pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLLLL shape[1]=LLLL shape[2]=L shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=p p1[2]=a p2[-2]=ca p2[-1]=yo p2[0]=pl p2[1]=pl p2[2]= p3[-2]=can p3[-1]=you p3[0]=ple p3[1]=pla p3[2]= p4[-2]= p4[-1]= p4[0]=plea p4[1]=play p4[2]= s1[-2]=n s1[-1]=u s1[0]=e s1[1]=y s1[2]=a s2[-2]=an s2[-1]=ou s2[0]=se s2[1]=ay s2[2]= s3[-2]=can s3[-1]=you s3[0]=ase s3[1]=lay s3[2]= s4[-2]= s4[-1]= s4[0]=ease s4[1]=play s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|please w[0]|w[1]=please|play w[1]|w[2]=play|a pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|UH pos[0]|pos[1]=UH|VB pos[1]|pos[2]=VB|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=play w[1..4]=a w[1..4]=song w[1..4]=from +O w[-2]=you w[-1]=please w[0]=play w[1]=a w[2]=song wl[-2]=you wl[-1]=please wl[0]=play wl[1]=a wl[2]=song pos[-2]=PRP pos[-1]=UH pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLLLL shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=y p1[-1]=p p1[0]=p p1[1]=a p1[2]=s p2[-2]=yo p2[-1]=pl p2[0]=pl p2[1]= p2[2]=so p3[-2]=you p3[-1]=ple p3[0]=pla p3[1]= p3[2]=son p4[-2]= p4[-1]=plea p4[0]=play p4[1]= p4[2]=song s1[-2]=u s1[-1]=e s1[0]=y s1[1]=a s1[2]=g s2[-2]=ou s2[-1]=se s2[0]=ay s2[1]= s2[2]=ng s3[-2]=you s3[-1]=ase s3[0]=lay s3[1]= s3[2]=ong s4[-2]= s4[-1]=ease s4[0]=play s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|please w[-1]|w[0]=please|play w[0]|w[1]=play|a w[1]|w[2]=a|song pos[-2]|pos[-1]=PRP|UH pos[-1]|pos[0]=UH|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=please w[1..4]=a w[1..4]=song w[1..4]=from w[1..4]=my +O w[-2]=please w[-1]=play w[0]=a w[1]=song w[2]=from wl[-2]=please wl[-1]=play wl[0]=a wl[1]=song wl[2]=from pos[-2]=UH pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=L shape[1]=LLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=p p1[0]=a p1[1]=s p1[2]=f p2[-2]=pl p2[-1]=pl p2[0]= p2[1]=so p2[2]=fr p3[-2]=ple p3[-1]=pla p3[0]= p3[1]=son p3[2]=fro p4[-2]=plea p4[-1]=play p4[0]= p4[1]=song p4[2]=from s1[-2]=e s1[-1]=y s1[0]=a s1[1]=g s1[2]=m s2[-2]=se s2[-1]=ay s2[0]= s2[1]=ng s2[2]=om s3[-2]=ase s3[-1]=lay s3[0]= s3[1]=ong s3[2]=rom s4[-2]=ease s4[-1]=play s4[0]= s4[1]=song s4[2]=from 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=please|play w[-1]|w[0]=play|a w[0]|w[1]=a|song w[1]|w[2]=song|from pos[-2]|pos[-1]=UH|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=please w[-4..-1]=play w[1..4]=song w[1..4]=from w[1..4]=my w[1..4]=favourite +O w[-2]=play w[-1]=a w[0]=song w[1]=from w[2]=my wl[-2]=play wl[-1]=a wl[0]=song wl[1]=from wl[2]=my pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=s p1[1]=f p1[2]=m p2[-2]=pl p2[-1]= p2[0]=so p2[1]=fr p2[2]=my p3[-2]=pla p3[-1]= p3[0]=son p3[1]=fro p3[2]= p4[-2]=play p4[-1]= p4[0]=song p4[1]=from p4[2]= s1[-2]=y s1[-1]=a s1[0]=g s1[1]=m s1[2]=y s2[-2]=ay s2[-1]= s2[0]=ng s2[1]=om s2[2]=my s3[-2]=lay s3[-1]= s3[0]=ong s3[1]=rom s3[2]= s4[-2]=play s4[-1]= s4[0]=song s4[1]=from s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|song w[0]|w[1]=song|from w[1]|w[2]=from|my pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=you w[-4..-1]=please w[-4..-1]=play w[-4..-1]=a w[1..4]=from w[1..4]=my w[1..4]=favourite w[1..4]=playlist +O w[-2]=a w[-1]=song w[0]=from w[1]=my w[2]=favourite wl[-2]=a wl[-1]=song wl[0]=from wl[1]=my wl[2]=favourite pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=PRP$ pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=L shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=s p1[0]=f p1[1]=m p1[2]=f p2[-2]= p2[-1]=so p2[0]=fr p2[1]=my p2[2]=fa p3[-2]= p3[-1]=son p3[0]=fro p3[1]= p3[2]=fav p4[-2]= p4[-1]=song p4[0]=from p4[1]= p4[2]=favo s1[-2]=a s1[-1]=g s1[0]=m s1[1]=y s1[2]=e s2[-2]= s2[-1]=ng s2[0]=om s2[1]=my s2[2]=te s3[-2]= s3[-1]=ong s3[0]=rom s3[1]= s3[2]=ite s4[-2]= s4[-1]=song s4[0]=from s4[1]= s4[2]=rite 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=a|song w[-1]|w[0]=song|from w[0]|w[1]=from|my w[1]|w[2]=my|favourite pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=please w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[1..4]=my w[1..4]=favourite w[1..4]=playlist +O w[-2]=song w[-1]=from w[0]=my w[1]=favourite w[2]=playlist wl[-2]=song wl[-1]=from wl[0]=my wl[1]=favourite wl[2]=playlist pos[-2]=NN pos[-1]=IN pos[0]=PRP$ pos[1]=JJ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLLLL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=f p1[0]=m p1[1]=f p1[2]=p p2[-2]=so p2[-1]=fr p2[0]=my p2[1]=fa p2[2]=pl p3[-2]=son p3[-1]=fro p3[0]= p3[1]=fav p3[2]=pla p4[-2]=song p4[-1]=from p4[0]= p4[1]=favo p4[2]=play s1[-2]=g s1[-1]=m s1[0]=y s1[1]=e s1[2]=t s2[-2]=ng s2[-1]=om s2[0]=my s2[1]=te s2[2]=st s3[-2]=ong s3[-1]=rom s3[0]= s3[1]=ite s3[2]=ist s4[-2]=song s4[-1]=from s4[0]= s4[1]=rite s4[2]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=song|from w[-1]|w[0]=from|my w[0]|w[1]=my|favourite w[1]|w[2]=favourite|playlist pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|JJ pos[1]|pos[2]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=song w[-4..-1]=from w[1..4]=favourite w[1..4]=playlist +playlist w[-2]=from w[-1]=my w[0]=favourite w[1]=playlist wl[-2]=from wl[-1]=my wl[0]=favourite wl[1]=playlist pos[-2]=IN pos[-1]=PRP$ pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLLLL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=f p1[-1]=m p1[0]=f p1[1]=p p2[-2]=fr p2[-1]=my p2[0]=fa p2[1]=pl p3[-2]=fro p3[-1]= p3[0]=fav p3[1]=pla p4[-2]=from p4[-1]= p4[0]=favo p4[1]=play s1[-2]=m s1[-1]=y s1[0]=e s1[1]=t s2[-2]=om s2[-1]=my s2[0]=te s2[1]=st s3[-2]=rom s3[-1]= s3[0]=ite s3[1]=ist s4[-2]=from s4[-1]= s4[0]=rite s4[1]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=from|my w[-1]|w[0]=my|favourite w[0]|w[1]=favourite|playlist pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=a w[-4..-1]=song w[-4..-1]=from w[-4..-1]=my w[1..4]=playlist +O w[-2]=my w[-1]=favourite w[0]=playlist wl[-2]=my wl[-1]=favourite wl[0]=playlist pos[-2]=PRP$ pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=LL shape[-1]=LLLLLLLLL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=f p1[0]=p p2[-2]=my p2[-1]=fa p2[0]=pl p3[-2]= p3[-1]=fav p3[0]=pla p4[-2]= p4[-1]=favo p4[0]=play s1[-2]=y s1[-1]=e s1[0]=t s2[-2]=my s2[-1]=te s2[0]=st s3[-2]= s3[-1]=ite s3[0]=ist s4[-2]= s4[-1]=rite s4[0]=list 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=my|favourite w[-1]|w[0]=favourite|playlist pos[-2]|pos[-1]=PRP$|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=song w[-4..-1]=from w[-4..-1]=my w[-4..-1]=favourite __EOS__ + +O w[0]=songs w[1]=by w[2]=Tom wl[0]=songs wl[1]=by wl[2]=tom pos[0]=NNS pos[1]=IN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLLL shape[1]=LL shape[2]=ULL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=s p1[1]=b p1[2]=T p2[0]=so p2[1]=by p2[2]=To p3[0]=son p3[1]= p3[2]=Tom p4[0]=song p4[1]= p4[2]= s1[0]=s s1[1]=y s1[2]=m s2[0]=gs s2[1]=by s2[2]=om s3[0]=ngs s3[1]= s3[2]=Tom s4[0]=ongs s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=songs|by w[1]|w[2]=by|Tom pos[0]|pos[1]=NNS|IN pos[1]|pos[2]=IN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=by w[1..4]=Tom w[1..4]=Waits __BOS__ +O w[-1]=songs w[0]=by w[1]=Tom w[2]=Waits wl[-1]=songs wl[0]=by wl[1]=tom wl[2]=waits pos[-1]=NNS pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLLL shape[0]=LL shape[1]=ULL shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-1]=s p1[0]=b p1[1]=T p1[2]=W p2[-1]=so p2[0]=by p2[1]=To p2[2]=Wa p3[-1]=son p3[0]= p3[1]=Tom p3[2]=Wai p4[-1]=song p4[0]= p4[1]= p4[2]=Wait s1[-1]=s s1[0]=y s1[1]=m s1[2]=s s2[-1]=gs s2[0]=by s2[1]=om s2[2]=ts s3[-1]=ngs s3[0]= s3[1]=Tom s3[2]=its s4[-1]=ongs s4[0]= s4[1]= s4[2]=aits 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=songs|by w[0]|w[1]=by|Tom w[1]|w[2]=Tom|Waits pos[-1]|pos[0]=NNS|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=songs w[1..4]=Tom w[1..4]=Waits +artist w[-2]=songs w[-1]=by w[0]=Tom w[1]=Waits wl[-2]=songs wl[-1]=by wl[0]=tom wl[1]=waits pos[-2]=NNS pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULL shape[1]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=b p1[0]=T p1[1]=W p2[-2]=so p2[-1]=by p2[0]=To p2[1]=Wa p3[-2]=son p3[-1]= p3[0]=Tom p3[1]=Wai p4[-2]=song p4[-1]= p4[0]= p4[1]=Wait s1[-2]=s s1[-1]=y s1[0]=m s1[1]=s s2[-2]=gs s2[-1]=by s2[0]=om s2[1]=ts s3[-2]=ngs s3[-1]= s3[0]=Tom s3[1]=its s4[-2]=ongs s4[-1]= s4[0]= s4[1]=aits 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=songs|by w[-1]|w[0]=by|Tom w[0]|w[1]=Tom|Waits pos[-2]|pos[-1]=NNS|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=songs w[-4..-1]=by w[1..4]=Waits +artist w[-2]=by w[-1]=Tom w[0]=Waits wl[-2]=by wl[-1]=tom wl[0]=waits pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=T p1[0]=W p2[-2]=by p2[-1]=To p2[0]=Wa p3[-2]= p3[-1]=Tom p3[0]=Wai p4[-2]= p4[-1]= p4[0]=Wait s1[-2]=y s1[-1]=m s1[0]=s s2[-2]=by s2[-1]=om s2[0]=ts s3[-2]= s3[-1]=Tom s3[0]=its s4[-2]= s4[-1]= s4[0]=aits 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Tom w[-1]|w[0]=Tom|Waits pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=songs w[-4..-1]=by w[-4..-1]=Tom __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=the +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=the w[1..4]=song +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=the wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=the pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=t p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=th p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=the p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]= s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=e s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=he s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=the s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|the pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=the w[1..4]=song w[1..4]=New +O w[-2]=to w[-1]=listen w[0]=to w[1]=the w[2]=song wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=the wl[2]=song pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=t p1[2]=s p2[-2]=to p2[-1]=li p2[0]=to p2[1]=th p2[2]=so p3[-2]= p3[-1]=lis p3[0]= p3[1]=the p3[2]=son p4[-2]= p4[-1]=list p4[0]= p4[1]= p4[2]=song s1[-2]=o s1[-1]=n s1[0]=o s1[1]=e s1[2]=g s2[-2]=to s2[-1]=en s2[0]=to s2[1]=he s2[2]=ng s3[-2]= s3[-1]=ten s3[0]= s3[1]=the s3[2]=ong s4[-2]= s4[-1]=sten s4[0]= s4[1]= s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|the w[1]|w[2]=the|song pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=the w[1..4]=song w[1..4]=New w[1..4]=York +O w[-2]=listen w[-1]=to w[0]=the w[1]=song w[2]=New wl[-2]=listen wl[-1]=to wl[0]=the wl[1]=song wl[2]=new pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=JJ pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=l p1[-1]=t p1[0]=t p1[1]=s p1[2]=N p2[-2]=li p2[-1]=to p2[0]=th p2[1]=so p2[2]=Ne p3[-2]=lis p3[-1]= p3[0]=the p3[1]=son p3[2]=New p4[-2]=list p4[-1]= p4[0]= p4[1]=song p4[2]= s1[-2]=n s1[-1]=o s1[0]=e s1[1]=g s1[2]=w s2[-2]=en s2[-1]=to s2[0]=he s2[1]=ng s2[2]=ew s3[-2]=ten s3[-1]= s3[0]=the s3[1]=ong s3[2]=New s4[-2]=sten s4[-1]= s4[0]= s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|the w[0]|w[1]=the|song w[1]|w[2]=song|New pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=song w[1..4]=New w[1..4]=York +O w[-2]=to w[-1]=the w[0]=song w[1]=New w[2]=York wl[-2]=to wl[-1]=the wl[0]=song wl[1]=new wl[2]=york pos[-2]=IN pos[-1]=DT pos[0]=JJ pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=LLL shape[0]=LLLL shape[1]=ULL shape[2]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=t p1[-1]=t p1[0]=s p1[1]=N p1[2]=Y p2[-2]=to p2[-1]=th p2[0]=so p2[1]=Ne p2[2]=Yo p3[-2]= p3[-1]=the p3[0]=son p3[1]=New p3[2]=Yor p4[-2]= p4[-1]= p4[0]=song p4[1]= p4[2]=York s1[-2]=o s1[-1]=e s1[0]=g s1[1]=w s1[2]=k s2[-2]=to s2[-1]=he s2[0]=ng s2[1]=ew s2[2]=rk s3[-2]= s3[-1]=the s3[0]=ong s3[1]=New s3[2]=ork s4[-2]= s4[-1]= s4[0]=song s4[1]= s4[2]=York 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|song w[0]|w[1]=song|New w[1]|w[2]=New|York pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=the w[1..4]=New w[1..4]=York +song w[-2]=the w[-1]=song w[0]=New w[1]=York wl[-2]=the wl[-1]=song wl[0]=new wl[1]=york pos[-2]=DT pos[-1]=JJ pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLL shape[-1]=LLLL shape[0]=ULL shape[1]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=t p1[-1]=s p1[0]=N p1[1]=Y p2[-2]=th p2[-1]=so p2[0]=Ne p2[1]=Yo p3[-2]=the p3[-1]=son p3[0]=New p3[1]=Yor p4[-2]= p4[-1]=song p4[0]= p4[1]=York s1[-2]=e s1[-1]=g s1[0]=w s1[1]=k s2[-2]=he s2[-1]=ng s2[0]=ew s2[1]=rk s3[-2]=the s3[-1]=ong s3[0]=New s3[1]=ork s4[-2]= s4[-1]=song s4[0]= s4[1]=York 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=the|song w[-1]|w[0]=song|New w[0]|w[1]=New|York pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=the w[-4..-1]=song w[1..4]=York +song w[-2]=song w[-1]=New w[0]=York wl[-2]=song wl[-1]=new wl[0]=york pos[-2]=JJ pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=s p1[-1]=N p1[0]=Y p2[-2]=so p2[-1]=Ne p2[0]=Yo p3[-2]=son p3[-1]=New p3[0]=Yor p4[-2]=song p4[-1]= p4[0]=York s1[-2]=g s1[-1]=w s1[0]=k s2[-2]=ng s2[-1]=ew s2[0]=rk s3[-2]=ong s3[-1]=New s3[0]=ork s4[-2]=song s4[-1]= s4[0]=York 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|New w[-1]|w[0]=New|York pos[-2]|pos[-1]=JJ|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=to w[-4..-1]=the w[-4..-1]=song w[-4..-1]=New __EOS__ + +O w[0]=play w[1]=Abbey w[2]=Road wl[0]=play wl[1]=abbey wl[2]=road pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLL shape[2]=ULLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=A p1[2]=R p2[0]=pl p2[1]=Ab p2[2]=Ro p3[0]=pla p3[1]=Abb p3[2]=Roa p4[0]=play p4[1]=Abbe p4[2]=Road s1[0]=y s1[1]=y s1[2]=d s2[0]=ay s2[1]=ey s2[2]=ad s3[0]=lay s3[1]=bey s3[2]=oad s4[0]=play s4[1]=bbey s4[2]=Road 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Abbey w[1]|w[2]=Abbey|Road pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Abbey w[1..4]=Road w[1..4]=remastered w[1..4]=by __BOS__ +album w[-1]=play w[0]=Abbey w[1]=Road w[2]=remastered wl[-1]=play wl[0]=abbey wl[1]=road wl[2]=remastered pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=VBN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULLL shape[2]=LLLLLLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=A p1[1]=R p1[2]=r p2[-1]=pl p2[0]=Ab p2[1]=Ro p2[2]=re p3[-1]=pla p3[0]=Abb p3[1]=Roa p3[2]=rem p4[-1]=play p4[0]=Abbe p4[1]=Road p4[2]=rema s1[-1]=y s1[0]=y s1[1]=d s1[2]=d s2[-1]=ay s2[0]=ey s2[1]=ad s2[2]=ed s3[-1]=lay s3[0]=bey s3[1]=oad s3[2]=red s4[-1]=play s4[0]=bbey s4[1]=Road s4[2]=ered 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Abbey w[0]|w[1]=Abbey|Road w[1]|w[2]=Road|remastered pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|VBN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Road w[1..4]=remastered w[1..4]=by w[1..4]=The +album w[-2]=play w[-1]=Abbey w[0]=Road w[1]=remastered w[2]=by wl[-2]=play wl[-1]=abbey wl[0]=road wl[1]=remastered wl[2]=by pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=VBN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULLL shape[1]=LLLLLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=A p1[0]=R p1[1]=r p1[2]=b p2[-2]=pl p2[-1]=Ab p2[0]=Ro p2[1]=re p2[2]=by p3[-2]=pla p3[-1]=Abb p3[0]=Roa p3[1]=rem p3[2]= p4[-2]=play p4[-1]=Abbe p4[0]=Road p4[1]=rema p4[2]= s1[-2]=y s1[-1]=y s1[0]=d s1[1]=d s1[2]=y s2[-2]=ay s2[-1]=ey s2[0]=ad s2[1]=ed s2[2]=by s3[-2]=lay s3[-1]=bey s3[0]=oad s3[1]=red s3[2]= s4[-2]=play s4[-1]=bbey s4[0]=Road s4[1]=ered s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Abbey w[-1]|w[0]=Abbey|Road w[0]|w[1]=Road|remastered w[1]|w[2]=remastered|by pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|VBN pos[1]|pos[2]=VBN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=Abbey w[1..4]=remastered w[1..4]=by w[1..4]=The w[1..4]=Beatles +O w[-2]=Abbey w[-1]=Road w[0]=remastered w[1]=by w[2]=The wl[-2]=abbey wl[-1]=road wl[0]=remastered wl[1]=by wl[2]=the pos[-2]=NNP pos[-1]=NNP pos[0]=VBN pos[1]=IN pos[2]=DT chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=ULLLL shape[-1]=ULLL shape[0]=LLLLLLLLLL shape[1]=LL shape[2]=ULL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=A p1[-1]=R p1[0]=r p1[1]=b p1[2]=T p2[-2]=Ab p2[-1]=Ro p2[0]=re p2[1]=by p2[2]=Th p3[-2]=Abb p3[-1]=Roa p3[0]=rem p3[1]= p3[2]=The p4[-2]=Abbe p4[-1]=Road p4[0]=rema p4[1]= p4[2]= s1[-2]=y s1[-1]=d s1[0]=d s1[1]=y s1[2]=e s2[-2]=ey s2[-1]=ad s2[0]=ed s2[1]=by s2[2]=he s3[-2]=bey s3[-1]=oad s3[0]=red s3[1]= s3[2]=The s4[-2]=bbey s4[-1]=Road s4[0]=ered s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Abbey|Road w[-1]|w[0]=Road|remastered w[0]|w[1]=remastered|by w[1]|w[2]=by|The pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|VBN pos[0]|pos[1]=VBN|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Abbey w[-4..-1]=Road w[1..4]=by w[1..4]=The w[1..4]=Beatles +O w[-2]=Road w[-1]=remastered w[0]=by w[1]=The w[2]=Beatles wl[-2]=road wl[-1]=remastered wl[0]=by wl[1]=the wl[2]=beatles pos[-2]=NNP pos[-1]=VBN pos[0]=IN pos[1]=DT pos[2]=DT chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=LLLLLLLLLL shape[0]=LL shape[1]=ULL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=R p1[-1]=r p1[0]=b p1[1]=T p1[2]=B p2[-2]=Ro p2[-1]=re p2[0]=by p2[1]=Th p2[2]=Be p3[-2]=Roa p3[-1]=rem p3[0]= p3[1]=The p3[2]=Bea p4[-2]=Road p4[-1]=rema p4[0]= p4[1]= p4[2]=Beat s1[-2]=d s1[-1]=d s1[0]=y s1[1]=e s1[2]=s s2[-2]=ad s2[-1]=ed s2[0]=by s2[1]=he s2[2]=es s3[-2]=oad s3[-1]=red s3[0]= s3[1]=The s3[2]=les s4[-2]=Road s4[-1]=ered s4[0]= s4[1]= s4[2]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Road|remastered w[-1]|w[0]=remastered|by w[0]|w[1]=by|The w[1]|w[2]=The|Beatles pos[-2]|pos[-1]=NNP|VBN pos[-1]|pos[0]=VBN|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|DT chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Abbey w[-4..-1]=Road w[-4..-1]=remastered w[1..4]=The w[1..4]=Beatles +artist w[-2]=remastered w[-1]=by w[0]=The w[1]=Beatles wl[-2]=remastered wl[-1]=by wl[0]=the wl[1]=beatles pos[-2]=VBN pos[-1]=IN pos[0]=DT pos[1]=DT chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLLLLLL shape[-1]=LL shape[0]=ULL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=r p1[-1]=b p1[0]=T p1[1]=B p2[-2]=re p2[-1]=by p2[0]=Th p2[1]=Be p3[-2]=rem p3[-1]= p3[0]=The p3[1]=Bea p4[-2]=rema p4[-1]= p4[0]= p4[1]=Beat s1[-2]=d s1[-1]=y s1[0]=e s1[1]=s s2[-2]=ed s2[-1]=by s2[0]=he s2[1]=es s3[-2]=red s3[-1]= s3[0]=The s3[1]=les s4[-2]=ered s4[-1]= s4[0]= s4[1]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=remastered|by w[-1]|w[0]=by|The w[0]|w[1]=The|Beatles pos[-2]|pos[-1]=VBN|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Abbey w[-4..-1]=Road w[-4..-1]=remastered w[-4..-1]=by w[1..4]=Beatles +artist w[-2]=by w[-1]=The w[0]=Beatles wl[-2]=by wl[-1]=the wl[0]=beatles pos[-2]=IN pos[-1]=DT pos[0]=DT chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=T p1[0]=B p2[-2]=by p2[-1]=Th p2[0]=Be p3[-2]= p3[-1]=The p3[0]=Bea p4[-2]= p4[-1]= p4[0]=Beat s1[-2]=y s1[-1]=e s1[0]=s s2[-2]=by s2[-1]=he s2[0]=es s3[-2]= s3[-1]=The s3[0]=les s4[-2]= s4[-1]= s4[0]=tles 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|The w[-1]|w[0]=The|Beatles pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|DT chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Road w[-4..-1]=remastered w[-4..-1]=by w[-4..-1]=The __EOS__ + +O w[0]=I'd w[1]=like w[2]=to wl[0]=i'd wl[1]=like wl[2]=to pos[0]=PRP pos[1]=MD pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=U'L shape[1]=LLLL shape[2]=LL shaped[0]=U'L shaped[1]=L shaped[2]=L type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=l p1[2]=t p2[0]=I' p2[1]=li p2[2]=to p3[0]=I'd p3[1]=lik p3[2]= p4[0]= p4[1]=like p4[2]= s1[0]=d s1[1]=e s1[2]=o s2[0]='d s2[1]=ke s2[2]=to s3[0]=I'd s3[1]=ike s3[2]= s4[0]= s4[1]=like s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=I'd|like w[1]|w[2]=like|to pos[0]|pos[1]=PRP|MD pos[1]|pos[2]=MD|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=like w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I'd w[0]=like w[1]=to w[2]=listen wl[-1]=i'd wl[0]=like wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=MD pos[1]=VB pos[2]=TO chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U'L shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U'L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=l p1[1]=t p1[2]=l p2[-1]=I' p2[0]=li p2[1]=to p2[2]=li p3[-1]=I'd p3[0]=lik p3[1]= p3[2]=lis p4[-1]= p4[0]=like p4[1]= p4[2]=list s1[-1]=d s1[0]=e s1[1]=o s1[2]=n s2[-1]='d s2[0]=ke s2[1]=to s2[2]=en s3[-1]=I'd s3[0]=ike s3[1]= s3[2]=ten s4[-1]= s4[0]=like s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I'd|like w[0]|w[1]=like|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|MD pos[0]|pos[1]=MD|VB pos[1]|pos[2]=VB|TO chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U'L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=classic +O w[-2]=I'd w[-1]=like w[0]=to w[1]=listen w[2]=to wl[-2]=i'd wl[-1]=like wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=MD pos[0]=VB pos[1]=TO pos[2]=VB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U'L shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U'L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=l p1[0]=t p1[1]=l p1[2]=t p2[-2]=I' p2[-1]=li p2[0]=to p2[1]=li p2[2]=to p3[-2]=I'd p3[-1]=lik p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=like p4[0]= p4[1]=list p4[2]= s1[-2]=d s1[-1]=e s1[0]=o s1[1]=n s1[2]=o s2[-2]='d s2[-1]=ke s2[0]=to s2[1]=en s2[2]=to s3[-2]=I'd s3[-1]=ike s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=like s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I'd|like w[-1]|w[0]=like|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|MD pos[-1]|pos[0]=MD|VB pos[0]|pos[1]=VB|TO pos[1]|pos[2]=TO|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U'L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[1..4]=listen w[1..4]=to w[1..4]=classic w[1..4]=opera +O w[-2]=like w[-1]=to w[0]=listen w[1]=to w[2]=classic wl[-2]=like wl[-1]=to wl[0]=listen wl[1]=to wl[2]=classic pos[-2]=MD pos[-1]=VB pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=l p1[1]=t p1[2]=c p2[-2]=li p2[-1]=to p2[0]=li p2[1]=to p2[2]=cl p3[-2]=lik p3[-1]= p3[0]=lis p3[1]= p3[2]=cla p4[-2]=like p4[-1]= p4[0]=list p4[1]= p4[2]=clas s1[-2]=e s1[-1]=o s1[0]=n s1[1]=o s1[2]=c s2[-2]=ke s2[-1]=to s2[0]=en s2[1]=to s2[2]=ic s3[-2]=ike s3[-1]= s3[0]=ten s3[1]= s3[2]=sic s4[-2]=like s4[-1]= s4[0]=sten s4[1]= s4[2]=ssic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=like|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|classic pos[-2]|pos[-1]=MD|VB pos[-1]|pos[0]=VB|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[-4..-1]=to w[1..4]=to w[1..4]=classic w[1..4]=opera +O w[-2]=to w[-1]=listen w[0]=to w[1]=classic w[2]=opera wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=classic wl[2]=opera pos[-2]=VB pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLLLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=c p1[2]=o p2[-2]=to p2[-1]=li p2[0]=to p2[1]=cl p2[2]=op p3[-2]= p3[-1]=lis p3[0]= p3[1]=cla p3[2]=ope p4[-2]= p4[-1]=list p4[0]= p4[1]=clas p4[2]=oper s1[-2]=o s1[-1]=n s1[0]=o s1[1]=c s1[2]=a s2[-2]=to s2[-1]=en s2[0]=to s2[1]=ic s2[2]=ra s3[-2]= s3[-1]=ten s3[0]= s3[1]=sic s3[2]=era s4[-2]= s4[-1]=sten s4[0]= s4[1]=ssic s4[2]=pera 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|classic w[1]|w[2]=classic|opera pos[-2]|pos[-1]=VB|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I'd w[-4..-1]=like w[-4..-1]=to w[-4..-1]=listen w[1..4]=classic w[1..4]=opera +genre w[-2]=listen w[-1]=to w[0]=classic w[1]=opera wl[-2]=listen wl[-1]=to wl[0]=classic wl[1]=opera pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLLLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=l p1[-1]=t p1[0]=c p1[1]=o p2[-2]=li p2[-1]=to p2[0]=cl p2[1]=op p3[-2]=lis p3[-1]= p3[0]=cla p3[1]=ope p4[-2]=list p4[-1]= p4[0]=clas p4[1]=oper s1[-2]=n s1[-1]=o s1[0]=c s1[1]=a s2[-2]=en s2[-1]=to s2[0]=ic s2[1]=ra s3[-2]=ten s3[-1]= s3[0]=sic s3[1]=era s4[-2]=sten s4[-1]= s4[0]=ssic s4[1]=pera 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|classic w[0]|w[1]=classic|opera pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=like w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=opera +genre w[-2]=to w[-1]=classic w[0]=opera wl[-2]=to wl[-1]=classic wl[0]=opera pos[-2]=VB pos[-1]=IN pos[0]=IN chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=LLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=c p1[0]=o p2[-2]=to p2[-1]=cl p2[0]=op p3[-2]= p3[-1]=cla p3[0]=ope p4[-2]= p4[-1]=clas p4[0]=oper s1[-2]=o s1[-1]=c s1[0]=a s2[-2]=to s2[-1]=ic s2[0]=ra s3[-2]= s3[-1]=sic s3[0]=era s4[-2]= s4[-1]=ssic s4[0]=pera 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|classic w[-1]|w[0]=classic|opera pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=classic __EOS__ + +O w[0]=play w[1]=Home w[2]=To wl[0]=play wl[1]=home wl[2]=to pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLL shape[2]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=H p1[2]=T p2[0]=pl p2[1]=Ho p2[2]=To p3[0]=pla p3[1]=Hom p3[2]= p4[0]=play p4[1]=Home p4[2]= s1[0]=y s1[1]=e s1[2]=o s2[0]=ay s2[1]=me s2[2]=To s3[0]=lay s3[1]=ome s3[2]= s4[0]=play s4[1]=Home s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Home w[1]|w[2]=Home|To pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Home w[1..4]=To w[1..4]=Mama w[1..4]=by __BOS__ +song w[-1]=play w[0]=Home w[1]=To w[2]=Mama wl[-1]=play wl[0]=home wl[1]=to wl[2]=mama pos[-1]=VB pos[0]=NN pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLL shape[1]=UL shape[2]=ULLL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=H p1[1]=T p1[2]=M p2[-1]=pl p2[0]=Ho p2[1]=To p2[2]=Ma p3[-1]=pla p3[0]=Hom p3[1]= p3[2]=Mam p4[-1]=play p4[0]=Home p4[1]= p4[2]=Mama s1[-1]=y s1[0]=e s1[1]=o s1[2]=a s2[-1]=ay s2[0]=me s2[1]=To s2[2]=ma s3[-1]=lay s3[0]=ome s3[1]= s3[2]=ama s4[-1]=play s4[0]=Home s4[1]= s4[2]=Mama 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Home w[0]|w[1]=Home|To w[1]|w[2]=To|Mama pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=To w[1..4]=Mama w[1..4]=by w[1..4]=Justin +song w[-2]=play w[-1]=Home w[0]=To w[1]=Mama w[2]=by wl[-2]=play wl[-1]=home wl[0]=to wl[1]=mama wl[2]=by pos[-2]=VB pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=ULLL shape[0]=UL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=H p1[0]=T p1[1]=M p1[2]=b p2[-2]=pl p2[-1]=Ho p2[0]=To p2[1]=Ma p2[2]=by p3[-2]=pla p3[-1]=Hom p3[0]= p3[1]=Mam p3[2]= p4[-2]=play p4[-1]=Home p4[0]= p4[1]=Mama p4[2]= s1[-2]=y s1[-1]=e s1[0]=o s1[1]=a s1[2]=y s2[-2]=ay s2[-1]=me s2[0]=To s2[1]=ma s2[2]=by s3[-2]=lay s3[-1]=ome s3[0]= s3[1]=ama s3[2]= s4[-2]=play s4[-1]=Home s4[0]= s4[1]=Mama s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Home w[-1]|w[0]=Home|To w[0]|w[1]=To|Mama w[1]|w[2]=Mama|by pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=Home w[1..4]=Mama w[1..4]=by w[1..4]=Justin w[1..4]=Bieber +song w[-2]=Home w[-1]=To w[0]=Mama w[1]=by w[2]=Justin wl[-2]=home wl[-1]=to wl[0]=mama wl[1]=by wl[2]=justin pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLL shape[-1]=UL shape[0]=ULLL shape[1]=LL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=H p1[-1]=T p1[0]=M p1[1]=b p1[2]=J p2[-2]=Ho p2[-1]=To p2[0]=Ma p2[1]=by p2[2]=Ju p3[-2]=Hom p3[-1]= p3[0]=Mam p3[1]= p3[2]=Jus p4[-2]=Home p4[-1]= p4[0]=Mama p4[1]= p4[2]=Just s1[-2]=e s1[-1]=o s1[0]=a s1[1]=y s1[2]=n s2[-2]=me s2[-1]=To s2[0]=ma s2[1]=by s2[2]=in s3[-2]=ome s3[-1]= s3[0]=ama s3[1]= s3[2]=tin s4[-2]=Home s4[-1]= s4[0]=Mama s4[1]= s4[2]=stin 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Home|To w[-1]|w[0]=To|Mama w[0]|w[1]=Mama|by w[1]|w[2]=by|Justin pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Home w[-4..-1]=To w[1..4]=by w[1..4]=Justin w[1..4]=Bieber w[1..4]=song +O w[-2]=To w[-1]=Mama w[0]=by w[1]=Justin w[2]=Bieber wl[-2]=to wl[-1]=mama wl[0]=by wl[1]=justin wl[2]=bieber pos[-2]=NN pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=UL shape[-1]=ULLL shape[0]=LL shape[1]=ULLLLL shape[2]=ULLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=T p1[-1]=M p1[0]=b p1[1]=J p1[2]=B p2[-2]=To p2[-1]=Ma p2[0]=by p2[1]=Ju p2[2]=Bi p3[-2]= p3[-1]=Mam p3[0]= p3[1]=Jus p3[2]=Bie p4[-2]= p4[-1]=Mama p4[0]= p4[1]=Just p4[2]=Bieb s1[-2]=o s1[-1]=a s1[0]=y s1[1]=n s1[2]=r s2[-2]=To s2[-1]=ma s2[0]=by s2[1]=in s2[2]=er s3[-2]= s3[-1]=ama s3[0]= s3[1]=tin s3[2]=ber s4[-2]= s4[-1]=Mama s4[0]= s4[1]=stin s4[2]=eber 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=To|Mama w[-1]|w[0]=Mama|by w[0]|w[1]=by|Justin w[1]|w[2]=Justin|Bieber pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Home w[-4..-1]=To w[-4..-1]=Mama w[1..4]=Justin w[1..4]=Bieber w[1..4]=song w[1..4]=on +artist w[-2]=Mama w[-1]=by w[0]=Justin w[1]=Bieber w[2]=song wl[-2]=mama wl[-1]=by wl[0]=justin wl[1]=bieber wl[2]=song pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP pos[2]=NN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLL shape[-1]=LL shape[0]=ULLLLL shape[1]=ULLLLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=M p1[-1]=b p1[0]=J p1[1]=B p1[2]=s p2[-2]=Ma p2[-1]=by p2[0]=Ju p2[1]=Bi p2[2]=so p3[-2]=Mam p3[-1]= p3[0]=Jus p3[1]=Bie p3[2]=son p4[-2]=Mama p4[-1]= p4[0]=Just p4[1]=Bieb p4[2]=song s1[-2]=a s1[-1]=y s1[0]=n s1[1]=r s1[2]=g s2[-2]=ma s2[-1]=by s2[0]=in s2[1]=er s2[2]=ng s3[-2]=ama s3[-1]= s3[0]=tin s3[1]=ber s3[2]=ong s4[-2]=Mama s4[-1]= s4[0]=stin s4[1]=eber s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Mama|by w[-1]|w[0]=by|Justin w[0]|w[1]=Justin|Bieber w[1]|w[2]=Bieber|song pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Home w[-4..-1]=To w[-4..-1]=Mama w[-4..-1]=by w[1..4]=Bieber w[1..4]=song w[1..4]=on w[1..4]=Spotify +artist w[-2]=by w[-1]=Justin w[0]=Bieber w[1]=song w[2]=on wl[-2]=by wl[-1]=justin wl[0]=bieber wl[1]=song wl[2]=on pos[-2]=IN pos[-1]=NNP pos[0]=NNP pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=ULLLLL shape[0]=ULLLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=b p1[-1]=J p1[0]=B p1[1]=s p1[2]=o p2[-2]=by p2[-1]=Ju p2[0]=Bi p2[1]=so p2[2]=on p3[-2]= p3[-1]=Jus p3[0]=Bie p3[1]=son p3[2]= p4[-2]= p4[-1]=Just p4[0]=Bieb p4[1]=song p4[2]= s1[-2]=y s1[-1]=n s1[0]=r s1[1]=g s1[2]=n s2[-2]=by s2[-1]=in s2[0]=er s2[1]=ng s2[2]=on s3[-2]= s3[-1]=tin s3[0]=ber s3[1]=ong s3[2]= s4[-2]= s4[-1]=stin s4[0]=eber s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Justin w[-1]|w[0]=Justin|Bieber w[0]|w[1]=Bieber|song w[1]|w[2]=song|on pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=To w[-4..-1]=Mama w[-4..-1]=by w[-4..-1]=Justin w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=Justin w[-1]=Bieber w[0]=song w[1]=on w[2]=Spotify wl[-2]=justin wl[-1]=bieber wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=NNP pos[-1]=NNP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=ULLLLL shape[-1]=ULLLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=J p1[-1]=B p1[0]=s p1[1]=o p1[2]=S p2[-2]=Ju p2[-1]=Bi p2[0]=so p2[1]=on p2[2]=Sp p3[-2]=Jus p3[-1]=Bie p3[0]=son p3[1]= p3[2]=Spo p4[-2]=Just p4[-1]=Bieb p4[0]=song p4[1]= p4[2]=Spot s1[-2]=n s1[-1]=r s1[0]=g s1[1]=n s1[2]=y s2[-2]=in s2[-1]=er s2[0]=ng s2[1]=on s2[2]=fy s3[-2]=tin s3[-1]=ber s3[0]=ong s3[1]= s3[2]=ify s4[-2]=stin s4[-1]=eber s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Justin|Bieber w[-1]|w[0]=Bieber|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Mama w[-4..-1]=by w[-4..-1]=Justin w[-4..-1]=Bieber w[1..4]=on w[1..4]=Spotify +O w[-2]=Bieber w[-1]=song w[0]=on w[1]=Spotify wl[-2]=bieber wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=B p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Bi p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=Bie p3[-1]=son p3[0]= p3[1]=Spo p4[-2]=Bieb p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=r s1[-1]=g s1[0]=n s1[1]=y s2[-2]=er s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]=ber s3[-1]=ong s3[0]= s3[1]=ify s4[-2]=eber s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Bieber|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Justin w[-4..-1]=Bieber w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Justin w[-4..-1]=Bieber w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=genre w[2]=RnB wl[0]=play wl[1]=genre wl[2]=rnb pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULU shaped[0]=L shaped[1]=L shaped[2]=ULU type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=g p1[2]=R p2[0]=pl p2[1]=ge p2[2]=Rn p3[0]=pla p3[1]=gen p3[2]=RnB p4[0]=play p4[1]=genr p4[2]= s1[0]=y s1[1]=e s1[2]=B s2[0]=ay s2[1]=re s2[2]=nB s3[0]=lay s3[1]=nre s3[2]=RnB s4[0]=play s4[1]=enre s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|genre w[1]|w[2]=genre|RnB pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|ULU type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=genre w[1..4]=RnB __BOS__ +O w[-1]=play w[0]=genre w[1]=RnB wl[-1]=play wl[0]=genre wl[1]=rnb pos[-1]=VBP pos[0]=NN pos[1]=IN chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULU shaped[-1]=L shaped[0]=L shaped[1]=ULU type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-1]=p p1[0]=g p1[1]=R p2[-1]=pl p2[0]=ge p2[1]=Rn p3[-1]=pla p3[0]=gen p3[1]=RnB p4[-1]=play p4[0]=genr p4[1]= s1[-1]=y s1[0]=e s1[1]=B s2[-1]=ay s2[0]=re s2[1]=nB s3[-1]=lay s3[0]=nre s3[1]=RnB s4[-1]=play s4[0]=enre s4[1]= 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|genre w[0]|w[1]=genre|RnB pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|ULU type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=RnB +genre w[-2]=play w[-1]=genre w[0]=RnB wl[-2]=play wl[-1]=genre wl[0]=rnb pos[-2]=VBP pos[-1]=NN pos[0]=IN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULU shaped[-2]=L shaped[-1]=L shaped[0]=ULU type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=g p1[0]=R p2[-2]=pl p2[-1]=ge p2[0]=Rn p3[-2]=pla p3[-1]=gen p3[0]=RnB p4[-2]=play p4[-1]=genr p4[0]= s1[-2]=y s1[-1]=e s1[0]=B s2[-2]=ay s2[-1]=re s2[0]=nB s3[-2]=lay s3[-1]=nre s3[0]=RnB s4[-2]=play s4[-1]=enre s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|genre w[-1]|w[0]=genre|RnB pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|ULU type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=genre __EOS__ + +O w[0]=play w[1]=the w[2]=artist wl[0]=play wl[1]=the wl[2]=artist pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=a p2[0]=pl p2[1]=th p2[2]=ar p3[0]=pla p3[1]=the p3[2]=art p4[0]=play p4[1]= p4[2]=arti s1[0]=y s1[1]=e s1[2]=t s2[0]=ay s2[1]=he s2[2]=st s3[0]=lay s3[1]=the s3[2]=ist s4[0]=play s4[1]= s4[2]=tist 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|artist pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=artist w[1..4]=Rush __BOS__ +O w[-1]=play w[0]=the w[1]=artist w[2]=Rush wl[-1]=play wl[0]=the wl[1]=artist wl[2]=rush pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLLL shape[2]=ULLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=a p1[2]=R p2[-1]=pl p2[0]=th p2[1]=ar p2[2]=Ru p3[-1]=pla p3[0]=the p3[1]=art p3[2]=Rus p4[-1]=play p4[0]= p4[1]=arti p4[2]=Rush s1[-1]=y s1[0]=e s1[1]=t s1[2]=h s2[-1]=ay s2[0]=he s2[1]=st s2[2]=sh s3[-1]=lay s3[0]=the s3[1]=ist s3[2]=ush s4[-1]=play s4[0]= s4[1]=tist s4[2]=Rush 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|artist w[1]|w[2]=artist|Rush pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=artist w[1..4]=Rush +O w[-2]=play w[-1]=the w[0]=artist w[1]=Rush wl[-2]=play wl[-1]=the wl[0]=artist wl[1]=rush pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLLL shape[1]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=p p1[-1]=t p1[0]=a p1[1]=R p2[-2]=pl p2[-1]=th p2[0]=ar p2[1]=Ru p3[-2]=pla p3[-1]=the p3[0]=art p3[1]=Rus p4[-2]=play p4[-1]= p4[0]=arti p4[1]=Rush s1[-2]=y s1[-1]=e s1[0]=t s1[1]=h s2[-2]=ay s2[-1]=he s2[0]=st s2[1]=sh s3[-2]=lay s3[-1]=the s3[0]=ist s3[1]=ush s4[-2]=play s4[-1]= s4[0]=tist s4[1]=Rush 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|artist w[0]|w[1]=artist|Rush pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[1..4]=Rush +artist w[-2]=the w[-1]=artist w[0]=Rush wl[-2]=the wl[-1]=artist wl[0]=rush pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLL shape[-1]=LLLLLL shape[0]=ULLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=t p1[-1]=a p1[0]=R p2[-2]=th p2[-1]=ar p2[0]=Ru p3[-2]=the p3[-1]=art p3[0]=Rus p4[-2]= p4[-1]=arti p4[0]=Rush s1[-2]=e s1[-1]=t s1[0]=h s2[-2]=he s2[-1]=st s2[0]=sh s3[-2]=the s3[-1]=ist s3[0]=ush s4[-2]= s4[-1]=tist s4[0]=Rush 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|artist w[-1]|w[0]=artist|Rush pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=artist __EOS__ + +O w[0]=play w[1]=Theory w[2]=of wl[0]=play wl[1]=theory wl[2]=of pos[0]=VB pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLL shape[2]=LL shaped[0]=L shaped[1]=UL shaped[2]=L type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[0]=p p1[1]=T p1[2]=o p2[0]=pl p2[1]=Th p2[2]=of p3[0]=pla p3[1]=The p3[2]= p4[0]=play p4[1]=Theo p4[2]= s1[0]=y s1[1]=y s1[2]=f s2[0]=ay s2[1]=ry s2[2]=of s3[0]=lay s3[1]=ory s3[2]= s4[0]=play s4[1]=eory s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Theory w[1]|w[2]=Theory|of pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[1..4]=Theory w[1..4]=of w[1..4]=a w[1..4]=Deadman __BOS__ +artist w[-1]=play w[0]=Theory w[1]=of w[2]=a wl[-1]=play wl[0]=theory wl[1]=of wl[2]=a pos[-1]=VB pos[0]=NN pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=ULLLLL shape[1]=LL shape[2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=T p1[1]=o p1[2]=a p2[-1]=pl p2[0]=Th p2[1]=of p2[2]= p3[-1]=pla p3[0]=The p3[1]= p3[2]= p4[-1]=play p4[0]=Theo p4[1]= p4[2]= s1[-1]=y s1[0]=y s1[1]=f s1[2]=a s2[-1]=ay s2[0]=ry s2[1]=of s2[2]= s3[-1]=lay s3[0]=ory s3[1]= s3[2]= s4[-1]=play s4[0]=eory s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Theory w[0]|w[1]=Theory|of w[1]|w[2]=of|a pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=of w[1..4]=a w[1..4]=Deadman +artist w[-2]=play w[-1]=Theory w[0]=of w[1]=a w[2]=Deadman wl[-2]=play wl[-1]=theory wl[0]=of wl[1]=a wl[2]=deadman pos[-2]=VB pos[-1]=NN pos[0]=NN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=LL shape[1]=L shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=T p1[0]=o p1[1]=a p1[2]=D p2[-2]=pl p2[-1]=Th p2[0]=of p2[1]= p2[2]=De p3[-2]=pla p3[-1]=The p3[0]= p3[1]= p3[2]=Dea p4[-2]=play p4[-1]=Theo p4[0]= p4[1]= p4[2]=Dead s1[-2]=y s1[-1]=y s1[0]=f s1[1]=a s1[2]=n s2[-2]=ay s2[-1]=ry s2[0]=of s2[1]= s2[2]=an s3[-2]=lay s3[-1]=ory s3[0]= s3[1]= s3[2]=man s4[-2]=play s4[-1]=eory s4[0]= s4[1]= s4[2]=dman 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Theory w[-1]|w[0]=Theory|of w[0]|w[1]=of|a w[1]|w[2]=a|Deadman pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Theory w[1..4]=a w[1..4]=Deadman +artist w[-2]=Theory w[-1]=of w[0]=a w[1]=Deadman wl[-2]=theory wl[-1]=of wl[0]=a wl[1]=deadman pos[-2]=NN pos[-1]=NN pos[0]=NN pos[1]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=L shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=T p1[-1]=o p1[0]=a p1[1]=D p2[-2]=Th p2[-1]=of p2[0]= p2[1]=De p3[-2]=The p3[-1]= p3[0]= p3[1]=Dea p4[-2]=Theo p4[-1]= p4[0]= p4[1]=Dead s1[-2]=y s1[-1]=f s1[0]=a s1[1]=n s2[-2]=ry s2[-1]=of s2[0]= s2[1]=an s3[-2]=ory s3[-1]= s3[0]= s3[1]=man s4[-2]=eory s4[-1]= s4[0]= s4[1]=dman 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Theory|of w[-1]|w[0]=of|a w[0]|w[1]=a|Deadman pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Theory w[-4..-1]=of w[1..4]=Deadman +artist w[-2]=of w[-1]=a w[0]=Deadman wl[-2]=of wl[-1]=a wl[0]=deadman pos[-2]=NN pos[-1]=NN pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=L shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=o p1[-1]=a p1[0]=D p2[-2]=of p2[-1]= p2[0]=De p3[-2]= p3[-1]= p3[0]=Dea p4[-2]= p4[-1]= p4[0]=Dead s1[-2]=f s1[-1]=a s1[0]=n s2[-2]=of s2[-1]= s2[0]=an s3[-2]= s3[-1]= s3[0]=man s4[-2]= s4[-1]= s4[0]=dman 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=of|a w[-1]|w[0]=a|Deadman pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Theory w[-4..-1]=of w[-4..-1]=a __EOS__ + +genre w[0]=rock w[1]=compositions wl[0]=rock wl[1]=compositions pos[0]=NN pos[1]=NNS chk[0]=I chk[1]=O shape[0]=LLLL shape[1]=LLLLLLLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=r p1[1]=c p2[0]=ro p2[1]=co p3[0]=roc p3[1]=com p4[0]=rock p4[1]=comp s1[0]=k s1[1]=s s2[0]=ck s2[1]=ns s3[0]=ock s3[1]=ons s4[0]=rock s4[1]=ions 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=rock|compositions pos[0]|pos[1]=NN|NNS chk[0]|chk[1]=I|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=compositions __BOS__ +O w[-1]=rock w[0]=compositions wl[-1]=rock wl[0]=compositions pos[-1]=NN pos[0]=NNS chk[-1]=I chk[0]=O shape[-1]=LLLL shape[0]=LLLLLLLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=r p1[0]=c p2[-1]=ro p2[0]=co p3[-1]=roc p3[0]=com p4[-1]=rock p4[0]=comp s1[-1]=k s1[0]=s s2[-1]=ck s2[0]=ns s3[-1]=ock s3[0]=ons s4[-1]=rock s4[0]=ions 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=rock|compositions pos[-1]|pos[0]=NN|NNS chk[-1]|chk[0]=I|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=rock __EOS__ + +O w[0]=play w[1]=I w[2]=See wl[0]=play wl[1]=i wl[2]=see pos[0]=VB pos[1]=PRP pos[2]=PRP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=U shape[2]=ULL shaped[0]=L shaped[1]=U shaped[2]=UL type[0]=AllLetter type[1]=AllUpper type[2]=InitUpper p1[0]=p p1[1]=I p1[2]=S p2[0]=pl p2[1]= p2[2]=Se p3[0]=pla p3[1]= p3[2]=See p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=I s1[2]=e s2[0]=ay s2[1]= s2[2]=ee s3[0]=lay s3[1]= s3[2]=See s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=yes au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|I w[1]|w[2]=I|See pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|PRP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|U shaped[1]|shaped[2]=U|UL type[0]|type[1]=AllLetter|AllUpper type[1]|type[2]=AllUpper|InitUpper w[1..4]=I w[1..4]=See w[1..4]=Fire w[1..4]=by __BOS__ +song w[-1]=play w[0]=I w[1]=See w[2]=Fire wl[-1]=play wl[0]=i wl[1]=see wl[2]=fire pos[-1]=VB pos[0]=PRP pos[1]=PRP pos[2]=PRP chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=U shape[1]=ULL shape[2]=ULLL shaped[-1]=L shaped[0]=U shaped[1]=UL shaped[2]=UL type[-1]=AllLetter type[0]=AllUpper type[1]=InitUpper type[2]=InitUpper p1[-1]=p p1[0]=I p1[1]=S p1[2]=F p2[-1]=pl p2[0]= p2[1]=Se p2[2]=Fi p3[-1]=pla p3[0]= p3[1]=See p3[2]=Fir p4[-1]=play p4[0]= p4[1]= p4[2]=Fire s1[-1]=y s1[0]=I s1[1]=e s1[2]=e s2[-1]=ay s2[0]= s2[1]=ee s2[2]=re s3[-1]=lay s3[0]= s3[1]=See s3[2]=ire s4[-1]=play s4[0]= s4[1]= s4[2]=Fire 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-1]=no au[0]=yes au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|I w[0]|w[1]=I|See w[1]|w[2]=See|Fire pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|PRP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|U shaped[0]|shaped[1]=U|UL shaped[1]|shaped[2]=UL|UL type[-1]|type[0]=AllLetter|AllUpper type[0]|type[1]=AllUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=See w[1..4]=Fire w[1..4]=by w[1..4]=Ed +song w[-2]=play w[-1]=I w[0]=See w[1]=Fire w[2]=by wl[-2]=play wl[-1]=i wl[0]=see wl[1]=fire wl[2]=by pos[-2]=VB pos[-1]=PRP pos[0]=PRP pos[1]=PRP pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLL shape[-1]=U shape[0]=ULL shape[1]=ULLL shape[2]=LL shaped[-2]=L shaped[-1]=U shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=AllUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=p p1[-1]=I p1[0]=S p1[1]=F p1[2]=b p2[-2]=pl p2[-1]= p2[0]=Se p2[1]=Fi p2[2]=by p3[-2]=pla p3[-1]= p3[0]=See p3[1]=Fir p3[2]= p4[-2]=play p4[-1]= p4[0]= p4[1]=Fire p4[2]= s1[-2]=y s1[-1]=I s1[0]=e s1[1]=e s1[2]=y s2[-2]=ay s2[-1]= s2[0]=ee s2[1]=re s2[2]=by s3[-2]=lay s3[-1]= s3[0]=See s3[1]=ire s3[2]= s4[-2]=play s4[-1]= s4[0]= s4[1]=Fire s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|I w[-1]|w[0]=I|See w[0]|w[1]=See|Fire w[1]|w[2]=Fire|by pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|PRP pos[1]|pos[2]=PRP|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|U shaped[-1]|shaped[0]=U|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|AllUpper type[-1]|type[0]=AllUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=I w[1..4]=Fire w[1..4]=by w[1..4]=Ed w[1..4]=Sheeran +song w[-2]=I w[-1]=See w[0]=Fire w[1]=by w[2]=Ed wl[-2]=i wl[-1]=see wl[0]=fire wl[1]=by wl[2]=ed pos[-2]=PRP pos[-1]=PRP pos[0]=PRP pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=U shape[-1]=ULL shape[0]=ULLL shape[1]=LL shape[2]=UL shaped[-2]=U shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=I p1[-1]=S p1[0]=F p1[1]=b p1[2]=E p2[-2]= p2[-1]=Se p2[0]=Fi p2[1]=by p2[2]=Ed p3[-2]= p3[-1]=See p3[0]=Fir p3[1]= p3[2]= p4[-2]= p4[-1]= p4[0]=Fire p4[1]= p4[2]= s1[-2]=I s1[-1]=e s1[0]=e s1[1]=y s1[2]=d s2[-2]= s2[-1]=ee s2[0]=re s2[1]=by s2[2]=Ed s3[-2]= s3[-1]=See s3[0]=ire s3[1]= s3[2]= s4[-2]= s4[-1]= s4[0]=Fire s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|See w[-1]|w[0]=See|Fire w[0]|w[1]=Fire|by w[1]|w[2]=by|Ed pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=U|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=I w[-4..-1]=See w[1..4]=by w[1..4]=Ed w[1..4]=Sheeran w[1..4]=song +O w[-2]=See w[-1]=Fire w[0]=by w[1]=Ed w[2]=Sheeran wl[-2]=see wl[-1]=fire wl[0]=by wl[1]=ed wl[2]=sheeran pos[-2]=PRP pos[-1]=PRP pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULL shape[-1]=ULLL shape[0]=LL shape[1]=UL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=S p1[-1]=F p1[0]=b p1[1]=E p1[2]=S p2[-2]=Se p2[-1]=Fi p2[0]=by p2[1]=Ed p2[2]=Sh p3[-2]=See p3[-1]=Fir p3[0]= p3[1]= p3[2]=She p4[-2]= p4[-1]=Fire p4[0]= p4[1]= p4[2]=Shee s1[-2]=e s1[-1]=e s1[0]=y s1[1]=d s1[2]=n s2[-2]=ee s2[-1]=re s2[0]=by s2[1]=Ed s2[2]=an s3[-2]=See s3[-1]=ire s3[0]= s3[1]= s3[2]=ran s4[-2]= s4[-1]=Fire s4[0]= s4[1]= s4[2]=eran 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=See|Fire w[-1]|w[0]=Fire|by w[0]|w[1]=by|Ed w[1]|w[2]=Ed|Sheeran pos[-2]|pos[-1]=PRP|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=I w[-4..-1]=See w[-4..-1]=Fire w[1..4]=Ed w[1..4]=Sheeran w[1..4]=song w[1..4]=on +artist w[-2]=Fire w[-1]=by w[0]=Ed w[1]=Sheeran w[2]=song wl[-2]=fire wl[-1]=by wl[0]=ed wl[1]=sheeran wl[2]=song pos[-2]=PRP pos[-1]=IN pos[0]=NNP pos[1]=NNP pos[2]=NN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLL shape[-1]=LL shape[0]=UL shape[1]=ULLLLLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=F p1[-1]=b p1[0]=E p1[1]=S p1[2]=s p2[-2]=Fi p2[-1]=by p2[0]=Ed p2[1]=Sh p2[2]=so p3[-2]=Fir p3[-1]= p3[0]= p3[1]=She p3[2]=son p4[-2]=Fire p4[-1]= p4[0]= p4[1]=Shee p4[2]=song s1[-2]=e s1[-1]=y s1[0]=d s1[1]=n s1[2]=g s2[-2]=re s2[-1]=by s2[0]=Ed s2[1]=an s2[2]=ng s3[-2]=ire s3[-1]= s3[0]= s3[1]=ran s3[2]=ong s4[-2]=Fire s4[-1]= s4[0]= s4[1]=eran s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Fire|by w[-1]|w[0]=by|Ed w[0]|w[1]=Ed|Sheeran w[1]|w[2]=Sheeran|song pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|NN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=I w[-4..-1]=See w[-4..-1]=Fire w[-4..-1]=by w[1..4]=Sheeran w[1..4]=song w[1..4]=on w[1..4]=Spotify +artist w[-2]=by w[-1]=Ed w[0]=Sheeran w[1]=song w[2]=on wl[-2]=by wl[-1]=ed wl[0]=sheeran wl[1]=song wl[2]=on pos[-2]=IN pos[-1]=NNP pos[0]=NNP pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=UL shape[0]=ULLLLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=b p1[-1]=E p1[0]=S p1[1]=s p1[2]=o p2[-2]=by p2[-1]=Ed p2[0]=Sh p2[1]=so p2[2]=on p3[-2]= p3[-1]= p3[0]=She p3[1]=son p3[2]= p4[-2]= p4[-1]= p4[0]=Shee p4[1]=song p4[2]= s1[-2]=y s1[-1]=d s1[0]=n s1[1]=g s1[2]=n s2[-2]=by s2[-1]=Ed s2[0]=an s2[1]=ng s2[2]=on s3[-2]= s3[-1]= s3[0]=ran s3[1]=ong s3[2]= s4[-2]= s4[-1]= s4[0]=eran s4[1]=song s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Ed w[-1]|w[0]=Ed|Sheeran w[0]|w[1]=Sheeran|song w[1]|w[2]=song|on pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=See w[-4..-1]=Fire w[-4..-1]=by w[-4..-1]=Ed w[1..4]=song w[1..4]=on w[1..4]=Spotify +O w[-2]=Ed w[-1]=Sheeran w[0]=song w[1]=on w[2]=Spotify wl[-2]=ed wl[-1]=sheeran wl[0]=song wl[1]=on wl[2]=spotify pos[-2]=NNP pos[-1]=NNP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=UL shape[-1]=ULLLLLL shape[0]=LLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=E p1[-1]=S p1[0]=s p1[1]=o p1[2]=S p2[-2]=Ed p2[-1]=Sh p2[0]=so p2[1]=on p2[2]=Sp p3[-2]= p3[-1]=She p3[0]=son p3[1]= p3[2]=Spo p4[-2]= p4[-1]=Shee p4[0]=song p4[1]= p4[2]=Spot s1[-2]=d s1[-1]=n s1[0]=g s1[1]=n s1[2]=y s2[-2]=Ed s2[-1]=an s2[0]=ng s2[1]=on s2[2]=fy s3[-2]= s3[-1]=ran s3[0]=ong s3[1]= s3[2]=ify s4[-2]= s4[-1]=eran s4[0]=song s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Ed|Sheeran w[-1]|w[0]=Sheeran|song w[0]|w[1]=song|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Fire w[-4..-1]=by w[-4..-1]=Ed w[-4..-1]=Sheeran w[1..4]=on w[1..4]=Spotify +O w[-2]=Sheeran w[-1]=song w[0]=on w[1]=Spotify wl[-2]=sheeran wl[-1]=song wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I shape[-2]=ULLLLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=S p1[-1]=s p1[0]=o p1[1]=S p2[-2]=Sh p2[-1]=so p2[0]=on p2[1]=Sp p3[-2]=She p3[-1]=son p3[0]= p3[1]=Spo p4[-2]=Shee p4[-1]=song p4[0]= p4[1]=Spot s1[-2]=n s1[-1]=g s1[0]=n s1[1]=y s2[-2]=an s2[-1]=ng s2[0]=on s2[1]=fy s3[-2]=ran s3[-1]=ong s3[0]= s3[1]=ify s4[-2]=eran s4[-1]=song s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Sheeran|song w[-1]|w[0]=song|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Ed w[-4..-1]=Sheeran w[-4..-1]=song w[1..4]=Spotify +service w[-2]=song w[-1]=on w[0]=Spotify wl[-2]=song wl[-1]=on wl[0]=spotify pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=o p1[0]=S p2[-2]=so p2[-1]=on p2[0]=Sp p3[-2]=son p3[-1]= p3[0]=Spo p4[-2]=song p4[-1]= p4[0]=Spot s1[-2]=g s1[-1]=n s1[0]=y s2[-2]=ng s2[-1]=on s2[0]=fy s3[-2]=ong s3[-1]= s3[0]=ify s4[-2]=song s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=Ed w[-4..-1]=Sheeran w[-4..-1]=song w[-4..-1]=on __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=something +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=something w[1..4]=by +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=something wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=something pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=s p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=so p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=som p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]=some s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=g s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=ng s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=ing s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]=hing 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|something pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=something w[1..4]=by w[1..4]=Madonna +O w[-2]=to w[-1]=listen w[0]=to w[1]=something w[2]=by wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=something wl[2]=by pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLLLLLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=s p1[2]=b p2[-2]=to p2[-1]=li p2[0]=to p2[1]=so p2[2]=by p3[-2]= p3[-1]=lis p3[0]= p3[1]=som p3[2]= p4[-2]= p4[-1]=list p4[0]= p4[1]=some p4[2]= s1[-2]=o s1[-1]=n s1[0]=o s1[1]=g s1[2]=y s2[-2]=to s2[-1]=en s2[0]=to s2[1]=ng s2[2]=by s3[-2]= s3[-1]=ten s3[0]= s3[1]=ing s3[2]= s4[-2]= s4[-1]=sten s4[0]= s4[1]=hing s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|something w[1]|w[2]=something|by pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=something w[1..4]=by w[1..4]=Madonna +O w[-2]=listen w[-1]=to w[0]=something w[1]=by w[2]=Madonna wl[-2]=listen wl[-1]=to wl[0]=something wl[1]=by wl[2]=madonna pos[-2]=VB pos[-1]=IN pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLLLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=l p1[-1]=t p1[0]=s p1[1]=b p1[2]=M p2[-2]=li p2[-1]=to p2[0]=so p2[1]=by p2[2]=Ma p3[-2]=lis p3[-1]= p3[0]=som p3[1]= p3[2]=Mad p4[-2]=list p4[-1]= p4[0]=some p4[1]= p4[2]=Mado s1[-2]=n s1[-1]=o s1[0]=g s1[1]=y s1[2]=a s2[-2]=en s2[-1]=to s2[0]=ng s2[1]=by s2[2]=na s3[-2]=ten s3[-1]= s3[0]=ing s3[1]= s3[2]=nna s4[-2]=sten s4[-1]= s4[0]=hing s4[1]= s4[2]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|something w[0]|w[1]=something|by w[1]|w[2]=by|Madonna pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=by w[1..4]=Madonna +O w[-2]=to w[-1]=something w[0]=by w[1]=Madonna wl[-2]=to wl[-1]=something wl[0]=by wl[1]=madonna pos[-2]=IN pos[-1]=NN pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I shape[-2]=LL shape[-1]=LLLLLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-2]=t p1[-1]=s p1[0]=b p1[1]=M p2[-2]=to p2[-1]=so p2[0]=by p2[1]=Ma p3[-2]= p3[-1]=som p3[0]= p3[1]=Mad p4[-2]= p4[-1]=some p4[0]= p4[1]=Mado s1[-2]=o s1[-1]=g s1[0]=y s1[1]=a s2[-2]=to s2[-1]=ng s2[0]=by s2[1]=na s3[-2]= s3[-1]=ing s3[0]= s3[1]=nna s4[-2]= s4[-1]=hing s4[0]= s4[1]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|something w[-1]|w[0]=something|by w[0]|w[1]=by|Madonna pos[-2]|pos[-1]=IN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=something w[1..4]=Madonna +artist w[-2]=something w[-1]=by w[0]=Madonna wl[-2]=something wl[-1]=by wl[0]=madonna pos[-2]=NN pos[-1]=IN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLLLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=s p1[-1]=b p1[0]=M p2[-2]=so p2[-1]=by p2[0]=Ma p3[-2]=som p3[-1]= p3[0]=Mad p4[-2]=some p4[-1]= p4[0]=Mado s1[-2]=g s1[-1]=y s1[0]=a s2[-2]=ng s2[-1]=by s2[0]=na s3[-2]=ing s3[-1]= s3[0]=nna s4[-2]=hing s4[-1]= s4[0]=onna 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=something|by w[-1]|w[0]=by|Madonna pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=something w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=music w[2]=by wl[0]=play wl[1]=music wl[2]=by pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=m p1[2]=b p2[0]=pl p2[1]=mu p2[2]=by p3[0]=pla p3[1]=mus p3[2]= p4[0]=play p4[1]=musi p4[2]= s1[0]=y s1[1]=c s1[2]=y s2[0]=ay s2[1]=ic s2[2]=by s3[0]=lay s3[1]=sic s3[2]= s4[0]=play s4[1]=usic s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|music w[1]|w[2]=music|by pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=music w[1..4]=by w[1..4]=Vanessa w[1..4]=Paradis __BOS__ +O w[-1]=play w[0]=music w[1]=by w[2]=Vanessa wl[-1]=play wl[0]=music wl[1]=by wl[2]=vanessa pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=m p1[1]=b p1[2]=V p2[-1]=pl p2[0]=mu p2[1]=by p2[2]=Va p3[-1]=pla p3[0]=mus p3[1]= p3[2]=Van p4[-1]=play p4[0]=musi p4[1]= p4[2]=Vane s1[-1]=y s1[0]=c s1[1]=y s1[2]=a s2[-1]=ay s2[0]=ic s2[1]=by s2[2]=sa s3[-1]=lay s3[0]=sic s3[1]= s3[2]=ssa s4[-1]=play s4[0]=usic s4[1]= s4[2]=essa 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|music w[0]|w[1]=music|by w[1]|w[2]=by|Vanessa pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Vanessa w[1..4]=Paradis +O w[-2]=play w[-1]=music w[0]=by w[1]=Vanessa w[2]=Paradis wl[-2]=play wl[-1]=music wl[0]=by wl[1]=vanessa wl[2]=paradis pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=ULLLLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=m p1[0]=b p1[1]=V p1[2]=P p2[-2]=pl p2[-1]=mu p2[0]=by p2[1]=Va p2[2]=Pa p3[-2]=pla p3[-1]=mus p3[0]= p3[1]=Van p3[2]=Par p4[-2]=play p4[-1]=musi p4[0]= p4[1]=Vane p4[2]=Para s1[-2]=y s1[-1]=c s1[0]=y s1[1]=a s1[2]=s s2[-2]=ay s2[-1]=ic s2[0]=by s2[1]=sa s2[2]=is s3[-2]=lay s3[-1]=sic s3[0]= s3[1]=ssa s3[2]=dis s4[-2]=play s4[-1]=usic s4[0]= s4[1]=essa s4[2]=adis 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|music w[-1]|w[0]=music|by w[0]|w[1]=by|Vanessa w[1]|w[2]=Vanessa|Paradis pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[1..4]=Vanessa w[1..4]=Paradis +artist w[-2]=music w[-1]=by w[0]=Vanessa w[1]=Paradis wl[-2]=music wl[-1]=by wl[0]=vanessa wl[1]=paradis pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLL shape[-1]=LL shape[0]=ULLLLLL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=m p1[-1]=b p1[0]=V p1[1]=P p2[-2]=mu p2[-1]=by p2[0]=Va p2[1]=Pa p3[-2]=mus p3[-1]= p3[0]=Van p3[1]=Par p4[-2]=musi p4[-1]= p4[0]=Vane p4[1]=Para s1[-2]=c s1[-1]=y s1[0]=a s1[1]=s s2[-2]=ic s2[-1]=by s2[0]=sa s2[1]=is s3[-2]=sic s3[-1]= s3[0]=ssa s3[1]=dis s4[-2]=usic s4[-1]= s4[0]=essa s4[1]=adis 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=music|by w[-1]|w[0]=by|Vanessa w[0]|w[1]=Vanessa|Paradis pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[-4..-1]=by w[1..4]=Paradis +artist w[-2]=by w[-1]=Vanessa w[0]=Paradis wl[-2]=by wl[-1]=vanessa wl[0]=paradis pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=V p1[0]=P p2[-2]=by p2[-1]=Va p2[0]=Pa p3[-2]= p3[-1]=Van p3[0]=Par p4[-2]= p4[-1]=Vane p4[0]=Para s1[-2]=y s1[-1]=a s1[0]=s s2[-2]=by s2[-1]=sa s2[0]=is s3[-2]= s3[-1]=ssa s3[0]=dis s4[-2]= s4[-1]=essa s4[0]=adis 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Vanessa w[-1]|w[0]=Vanessa|Paradis pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=music w[-4..-1]=by w[-4..-1]=Vanessa __EOS__ + +O w[0]=play w[1]=album w[2]=In wl[0]=play wl[1]=album wl[2]=in pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=I p2[0]=pl p2[1]=al p2[2]=In p3[0]=pla p3[1]=alb p3[2]= p4[0]=play p4[1]=albu p4[2]= s1[0]=y s1[1]=m s1[2]=n s2[0]=ay s2[1]=um s2[2]=In s3[0]=lay s3[1]=bum s3[2]= s4[0]=play s4[1]=lbum s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|In pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=In w[1..4]=the w[1..4]=jungle __BOS__ +O w[-1]=play w[0]=album w[1]=In w[2]=the wl[-1]=play wl[0]=album wl[1]=in wl[2]=the pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=UL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=I p1[2]=t p2[-1]=pl p2[0]=al p2[1]=In p2[2]=th p3[-1]=pla p3[0]=alb p3[1]= p3[2]=the p4[-1]=play p4[0]=albu p4[1]= p4[2]= s1[-1]=y s1[0]=m s1[1]=n s1[2]=e s2[-1]=ay s2[0]=um s2[1]=In s2[2]=he s3[-1]=lay s3[0]=bum s3[1]= s3[2]=the s4[-1]=play s4[0]=lbum s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|In w[1]|w[2]=In|the pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=In w[1..4]=the w[1..4]=jungle w[1..4]=groove +album w[-2]=play w[-1]=album w[0]=In w[1]=the w[2]=jungle wl[-2]=play wl[-1]=album wl[0]=in wl[1]=the wl[2]=jungle pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=IN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=UL shape[1]=LLL shape[2]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=I p1[1]=t p1[2]=j p2[-2]=pl p2[-1]=al p2[0]=In p2[1]=th p2[2]=ju p3[-2]=pla p3[-1]=alb p3[0]= p3[1]=the p3[2]=jun p4[-2]=play p4[-1]=albu p4[0]= p4[1]= p4[2]=jung s1[-2]=y s1[-1]=m s1[0]=n s1[1]=e s1[2]=e s2[-2]=ay s2[-1]=um s2[0]=In s2[1]=he s2[2]=le s3[-2]=lay s3[-1]=bum s3[0]= s3[1]=the s3[2]=gle s4[-2]=play s4[-1]=lbum s4[0]= s4[1]= s4[2]=ngle 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|In w[0]|w[1]=In|the w[1]|w[2]=the|jungle pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|IN pos[1]|pos[2]=IN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[1..4]=the w[1..4]=jungle w[1..4]=groove +album w[-2]=album w[-1]=In w[0]=the w[1]=jungle w[2]=groove wl[-2]=album wl[-1]=in wl[0]=the wl[1]=jungle wl[2]=groove pos[-2]=NN pos[-1]=IN pos[0]=IN pos[1]=IN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLLL shape[-1]=UL shape[0]=LLL shape[1]=LLLLLL shape[2]=LLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=I p1[0]=t p1[1]=j p1[2]=g p2[-2]=al p2[-1]=In p2[0]=th p2[1]=ju p2[2]=gr p3[-2]=alb p3[-1]= p3[0]=the p3[1]=jun p3[2]=gro p4[-2]=albu p4[-1]= p4[0]= p4[1]=jung p4[2]=groo s1[-2]=m s1[-1]=n s1[0]=e s1[1]=e s1[2]=e s2[-2]=um s2[-1]=In s2[0]=he s2[1]=le s2[2]=ve s3[-2]=bum s3[-1]= s3[0]=the s3[1]=gle s3[2]=ove s4[-2]=lbum s4[-1]= s4[0]= s4[1]=ngle s4[2]=oove 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|In w[-1]|w[0]=In|the w[0]|w[1]=the|jungle w[1]|w[2]=jungle|groove pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|IN pos[0]|pos[1]=IN|IN pos[1]|pos[2]=IN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[-4..-1]=In w[1..4]=jungle w[1..4]=groove +album w[-2]=In w[-1]=the w[0]=jungle w[1]=groove wl[-2]=in wl[-1]=the wl[0]=jungle wl[1]=groove pos[-2]=IN pos[-1]=IN pos[0]=IN pos[1]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I shape[-2]=UL shape[-1]=LLL shape[0]=LLLLLL shape[1]=LLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=I p1[-1]=t p1[0]=j p1[1]=g p2[-2]=In p2[-1]=th p2[0]=ju p2[1]=gr p3[-2]= p3[-1]=the p3[0]=jun p3[1]=gro p4[-2]= p4[-1]= p4[0]=jung p4[1]=groo s1[-2]=n s1[-1]=e s1[0]=e s1[1]=e s2[-2]=In s2[-1]=he s2[0]=le s2[1]=ve s3[-2]= s3[-1]=the s3[0]=gle s3[1]=ove s4[-2]= s4[-1]= s4[0]=ngle s4[1]=oove 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=In|the w[-1]|w[0]=the|jungle w[0]|w[1]=jungle|groove pos[-2]|pos[-1]=IN|IN pos[-1]|pos[0]=IN|IN pos[0]|pos[1]=IN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=album w[-4..-1]=In w[-4..-1]=the w[1..4]=groove +album w[-2]=the w[-1]=jungle w[0]=groove wl[-2]=the wl[-1]=jungle wl[0]=groove pos[-2]=IN pos[-1]=IN pos[0]=IN chk[-2]=I chk[-1]=I chk[0]=I shape[-2]=LLL shape[-1]=LLLLLL shape[0]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=j p1[0]=g p2[-2]=th p2[-1]=ju p2[0]=gr p3[-2]=the p3[-1]=jun p3[0]=gro p4[-2]= p4[-1]=jung p4[0]=groo s1[-2]=e s1[-1]=e s1[0]=e s2[-2]=he s2[-1]=le s2[0]=ve s3[-2]=the s3[-1]=gle s3[0]=ove s4[-2]= s4[-1]=ngle s4[0]=oove 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|jungle w[-1]|w[0]=jungle|groove pos[-2]|pos[-1]=IN|IN pos[-1]|pos[0]=IN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=album w[-4..-1]=In w[-4..-1]=the w[-4..-1]=jungle __EOS__ + +O w[0]=play w[1]=album w[2]=Thriller wl[0]=play wl[1]=album wl[2]=thriller pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=T p2[0]=pl p2[1]=al p2[2]=Th p3[0]=pla p3[1]=alb p3[2]=Thr p4[0]=play p4[1]=albu p4[2]=Thri s1[0]=y s1[1]=m s1[2]=r s2[0]=ay s2[1]=um s2[2]=er s3[0]=lay s3[1]=bum s3[2]=ler s4[0]=play s4[1]=lbum s4[2]=ller 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Thriller pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Thriller __BOS__ +O w[-1]=play w[0]=album w[1]=Thriller wl[-1]=play wl[0]=album wl[1]=thriller pos[-1]=VB pos[0]=NN pos[1]=NNP chk[-1]=O chk[0]=O chk[1]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper p1[-1]=p p1[0]=a p1[1]=T p2[-1]=pl p2[0]=al p2[1]=Th p3[-1]=pla p3[0]=alb p3[1]=Thr p4[-1]=play p4[0]=albu p4[1]=Thri s1[-1]=y s1[0]=m s1[1]=r s2[-1]=ay s2[0]=um s2[1]=er s3[-1]=lay s3[0]=bum s3[1]=ler s4[-1]=play s4[0]=lbum s4[1]=ller 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Thriller pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=Thriller +album w[-2]=play w[-1]=album w[0]=Thriller wl[-2]=play wl[-1]=album wl[0]=thriller pos[-2]=VB pos[-1]=NN pos[0]=NNP chk[-2]=O chk[-1]=O chk[0]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper p1[-2]=p p1[-1]=a p1[0]=T p2[-2]=pl p2[-1]=al p2[0]=Th p3[-2]=pla p3[-1]=alb p3[0]=Thr p4[-2]=play p4[-1]=albu p4[0]=Thri s1[-2]=y s1[-1]=m s1[0]=r s2[-2]=ay s2[-1]=um s2[0]=er s3[-2]=lay s3[-1]=bum s3[0]=ler s4[-2]=play s4[-1]=lbum s4[0]=ller 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Thriller pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album __EOS__ + +O w[0]=play w[1]=song w[2]=by wl[0]=play wl[1]=song wl[2]=by pos[0]=VBP pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=s p1[2]=b p2[0]=pl p2[1]=so p2[2]=by p3[0]=pla p3[1]=son p3[2]= p4[0]=play p4[1]=song p4[2]= s1[0]=y s1[1]=g s1[2]=y s2[0]=ay s2[1]=ng s2[2]=by s3[0]=lay s3[1]=ong s3[2]= s4[0]=play s4[1]=song s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|song w[1]|w[2]=song|by pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=song w[1..4]=by w[1..4]=Lil w[1..4]=Wayne __BOS__ +O w[-1]=play w[0]=song w[1]=by w[2]=Lil wl[-1]=play wl[0]=song wl[1]=by wl[2]=lil pos[-1]=VBP pos[0]=NN pos[1]=IN pos[2]=NNP chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=ULL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-1]=p p1[0]=s p1[1]=b p1[2]=L p2[-1]=pl p2[0]=so p2[1]=by p2[2]=Li p3[-1]=pla p3[0]=son p3[1]= p3[2]=Lil p4[-1]=play p4[0]=song p4[1]= p4[2]= s1[-1]=y s1[0]=g s1[1]=y s1[2]=l s2[-1]=ay s2[0]=ng s2[1]=by s2[2]=il s3[-1]=lay s3[0]=ong s3[1]= s3[2]=Lil s4[-1]=play s4[0]=song s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|song w[0]|w[1]=song|by w[1]|w[2]=by|Lil pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[1..4]=by w[1..4]=Lil w[1..4]=Wayne +O w[-2]=play w[-1]=song w[0]=by w[1]=Lil w[2]=Wayne wl[-2]=play wl[-1]=song wl[0]=by wl[1]=lil wl[2]=wayne pos[-2]=VBP pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=ULL shape[2]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=s p1[0]=b p1[1]=L p1[2]=W p2[-2]=pl p2[-1]=so p2[0]=by p2[1]=Li p2[2]=Wa p3[-2]=pla p3[-1]=son p3[0]= p3[1]=Lil p3[2]=Way p4[-2]=play p4[-1]=song p4[0]= p4[1]= p4[2]=Wayn s1[-2]=y s1[-1]=g s1[0]=y s1[1]=l s1[2]=e s2[-2]=ay s2[-1]=ng s2[0]=by s2[1]=il s2[2]=ne s3[-2]=lay s3[-1]=ong s3[0]= s3[1]=Lil s3[2]=yne s4[-2]=play s4[-1]=song s4[0]= s4[1]= s4[2]=ayne 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|song w[-1]|w[0]=song|by w[0]|w[1]=by|Lil w[1]|w[2]=Lil|Wayne pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[1..4]=Lil w[1..4]=Wayne +artist w[-2]=song w[-1]=by w[0]=Lil w[1]=Wayne wl[-2]=song wl[-1]=by wl[0]=lil wl[1]=wayne pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLL shape[-1]=LL shape[0]=ULL shape[1]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=s p1[-1]=b p1[0]=L p1[1]=W p2[-2]=so p2[-1]=by p2[0]=Li p2[1]=Wa p3[-2]=son p3[-1]= p3[0]=Lil p3[1]=Way p4[-2]=song p4[-1]= p4[0]= p4[1]=Wayn s1[-2]=g s1[-1]=y s1[0]=l s1[1]=e s2[-2]=ng s2[-1]=by s2[0]=il s2[1]=ne s3[-2]=ong s3[-1]= s3[0]=Lil s3[1]=yne s4[-2]=song s4[-1]= s4[0]= s4[1]=ayne 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|by w[-1]|w[0]=by|Lil w[0]|w[1]=Lil|Wayne pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by w[1..4]=Wayne +artist w[-2]=by w[-1]=Lil w[0]=Wayne wl[-2]=by wl[-1]=lil wl[0]=wayne pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=b p1[-1]=L p1[0]=W p2[-2]=by p2[-1]=Li p2[0]=Wa p3[-2]= p3[-1]=Lil p3[0]=Way p4[-2]= p4[-1]= p4[0]=Wayn s1[-2]=y s1[-1]=l s1[0]=e s2[-2]=by s2[-1]=il s2[0]=ne s3[-2]= s3[-1]=Lil s3[0]=yne s4[-2]= s4[-1]= s4[0]=ayne 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=by|Lil w[-1]|w[0]=Lil|Wayne pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=song w[-4..-1]=by w[-4..-1]=Lil __EOS__ + +O w[0]=play w[1]=album w[2]=Born wl[0]=play wl[1]=album wl[2]=born pos[0]=VBP pos[1]=NN pos[2]=VBN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=B p2[0]=pl p2[1]=al p2[2]=Bo p3[0]=pla p3[1]=alb p3[2]=Bor p4[0]=play p4[1]=albu p4[2]=Born s1[0]=y s1[1]=m s1[2]=n s2[0]=ay s2[1]=um s2[2]=rn s3[0]=lay s3[1]=bum s3[2]=orn s4[0]=play s4[1]=lbum s4[2]=Born 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Born pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|VBN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Born w[1..4]=to w[1..4]=Run __BOS__ +O w[-1]=play w[0]=album w[1]=Born w[2]=to wl[-1]=play wl[0]=album wl[1]=born wl[2]=to pos[-1]=VBP pos[0]=NN pos[1]=VBN pos[2]=VBN chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=B p1[2]=t p2[-1]=pl p2[0]=al p2[1]=Bo p2[2]=to p3[-1]=pla p3[0]=alb p3[1]=Bor p3[2]= p4[-1]=play p4[0]=albu p4[1]=Born p4[2]= s1[-1]=y s1[0]=m s1[1]=n s1[2]=o s2[-1]=ay s2[0]=um s2[1]=rn s2[2]=to s3[-1]=lay s3[0]=bum s3[1]=orn s3[2]= s4[-1]=play s4[0]=lbum s4[1]=Born s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Born w[1]|w[2]=Born|to pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|VBN pos[1]|pos[2]=VBN|VBN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Born w[1..4]=to w[1..4]=Run w[1..4]=by +album w[-2]=play w[-1]=album w[0]=Born w[1]=to w[2]=Run wl[-2]=play wl[-1]=album wl[0]=born wl[1]=to wl[2]=run pos[-2]=VBP pos[-1]=NN pos[0]=VBN pos[1]=VBN pos[2]=VBN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLL shape[1]=LL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=B p1[1]=t p1[2]=R p2[-2]=pl p2[-1]=al p2[0]=Bo p2[1]=to p2[2]=Ru p3[-2]=pla p3[-1]=alb p3[0]=Bor p3[1]= p3[2]=Run p4[-2]=play p4[-1]=albu p4[0]=Born p4[1]= p4[2]= s1[-2]=y s1[-1]=m s1[0]=n s1[1]=o s1[2]=n s2[-2]=ay s2[-1]=um s2[0]=rn s2[1]=to s2[2]=un s3[-2]=lay s3[-1]=bum s3[0]=orn s3[1]= s3[2]=Run s4[-2]=play s4[-1]=lbum s4[0]=Born s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Born w[0]|w[1]=Born|to w[1]|w[2]=to|Run pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|VBN pos[0]|pos[1]=VBN|VBN pos[1]|pos[2]=VBN|VBN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=to w[1..4]=Run w[1..4]=by w[1..4]=Bruce +album w[-2]=album w[-1]=Born w[0]=to w[1]=Run w[2]=by wl[-2]=album wl[-1]=born wl[0]=to wl[1]=run wl[2]=by pos[-2]=NN pos[-1]=VBN pos[0]=VBN pos[1]=VBN pos[2]=IN chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=LLLLL shape[-1]=ULLL shape[0]=LL shape[1]=ULL shape[2]=LL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=a p1[-1]=B p1[0]=t p1[1]=R p1[2]=b p2[-2]=al p2[-1]=Bo p2[0]=to p2[1]=Ru p2[2]=by p3[-2]=alb p3[-1]=Bor p3[0]= p3[1]=Run p3[2]= p4[-2]=albu p4[-1]=Born p4[0]= p4[1]= p4[2]= s1[-2]=m s1[-1]=n s1[0]=o s1[1]=n s1[2]=y s2[-2]=um s2[-1]=rn s2[0]=to s2[1]=un s2[2]=by s3[-2]=bum s3[-1]=orn s3[0]= s3[1]=Run s3[2]= s4[-2]=lbum s4[-1]=Born s4[0]= s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=album|Born w[-1]|w[0]=Born|to w[0]|w[1]=to|Run w[1]|w[2]=Run|by pos[-2]|pos[-1]=NN|VBN pos[-1]|pos[0]=VBN|VBN pos[0]|pos[1]=VBN|VBN pos[1]|pos[2]=VBN|IN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Born w[1..4]=Run w[1..4]=by w[1..4]=Bruce w[1..4]=Springsteen +album w[-2]=Born w[-1]=to w[0]=Run w[1]=by w[2]=Bruce wl[-2]=born wl[-1]=to wl[0]=run wl[1]=by wl[2]=bruce pos[-2]=VBN pos[-1]=VBN pos[0]=VBN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=ULLL shape[-1]=LL shape[0]=ULL shape[1]=LL shape[2]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=B p1[-1]=t p1[0]=R p1[1]=b p1[2]=B p2[-2]=Bo p2[-1]=to p2[0]=Ru p2[1]=by p2[2]=Br p3[-2]=Bor p3[-1]= p3[0]=Run p3[1]= p3[2]=Bru p4[-2]=Born p4[-1]= p4[0]= p4[1]= p4[2]=Bruc s1[-2]=n s1[-1]=o s1[0]=n s1[1]=y s1[2]=e s2[-2]=rn s2[-1]=to s2[0]=un s2[1]=by s2[2]=ce s3[-2]=orn s3[-1]= s3[0]=Run s3[1]= s3[2]=uce s4[-2]=Born s4[-1]= s4[0]= s4[1]= s4[2]=ruce 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Born|to w[-1]|w[0]=to|Run w[0]|w[1]=Run|by w[1]|w[2]=by|Bruce pos[-2]|pos[-1]=VBN|VBN pos[-1]|pos[0]=VBN|VBN pos[0]|pos[1]=VBN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Born w[-4..-1]=to w[1..4]=by w[1..4]=Bruce w[1..4]=Springsteen w[1..4]=on +O w[-2]=to w[-1]=Run w[0]=by w[1]=Bruce w[2]=Springsteen wl[-2]=to wl[-1]=run wl[0]=by wl[1]=bruce wl[2]=springsteen pos[-2]=VBN pos[-1]=VBN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I chk[2]=I shape[-2]=LL shape[-1]=ULL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLLLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=t p1[-1]=R p1[0]=b p1[1]=B p1[2]=S p2[-2]=to p2[-1]=Ru p2[0]=by p2[1]=Br p2[2]=Sp p3[-2]= p3[-1]=Run p3[0]= p3[1]=Bru p3[2]=Spr p4[-2]= p4[-1]= p4[0]= p4[1]=Bruc p4[2]=Spri s1[-2]=o s1[-1]=n s1[0]=y s1[1]=e s1[2]=n s2[-2]=to s2[-1]=un s2[0]=by s2[1]=ce s2[2]=en s3[-2]= s3[-1]=Run s3[0]= s3[1]=uce s3[2]=een s4[-2]= s4[-1]= s4[0]= s4[1]=ruce s4[2]=teen 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|Run w[-1]|w[0]=Run|by w[0]|w[1]=by|Bruce w[1]|w[2]=Bruce|Springsteen pos[-2]|pos[-1]=VBN|VBN pos[-1]|pos[0]=VBN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=album w[-4..-1]=Born w[-4..-1]=to w[-4..-1]=Run w[1..4]=Bruce w[1..4]=Springsteen w[1..4]=on w[1..4]=Spotify +artist w[-2]=Run w[-1]=by w[0]=Bruce w[1]=Springsteen w[2]=on wl[-2]=run wl[-1]=by wl[0]=bruce wl[1]=springsteen wl[2]=on pos[-2]=VBN pos[-1]=IN pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-2]=I chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLLLLLLLL shape[2]=LL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=R p1[-1]=b p1[0]=B p1[1]=S p1[2]=o p2[-2]=Ru p2[-1]=by p2[0]=Br p2[1]=Sp p2[2]=on p3[-2]=Run p3[-1]= p3[0]=Bru p3[1]=Spr p3[2]= p4[-2]= p4[-1]= p4[0]=Bruc p4[1]=Spri p4[2]= s1[-2]=n s1[-1]=y s1[0]=e s1[1]=n s1[2]=n s2[-2]=un s2[-1]=by s2[0]=ce s2[1]=en s2[2]=on s3[-2]=Run s3[-1]= s3[0]=uce s3[1]=een s3[2]= s4[-2]= s4[-1]= s4[0]=ruce s4[1]=teen s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Run|by w[-1]|w[0]=by|Bruce w[0]|w[1]=Bruce|Springsteen w[1]|w[2]=Springsteen|on pos[-2]|pos[-1]=VBN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Born w[-4..-1]=to w[-4..-1]=Run w[-4..-1]=by w[1..4]=Springsteen w[1..4]=on w[1..4]=Spotify +artist w[-2]=by w[-1]=Bruce w[0]=Springsteen w[1]=on w[2]=Spotify wl[-2]=by wl[-1]=bruce wl[0]=springsteen wl[1]=on wl[2]=spotify pos[-2]=IN pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLLLLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=b p1[-1]=B p1[0]=S p1[1]=o p1[2]=S p2[-2]=by p2[-1]=Br p2[0]=Sp p2[1]=on p2[2]=Sp p3[-2]= p3[-1]=Bru p3[0]=Spr p3[1]= p3[2]=Spo p4[-2]= p4[-1]=Bruc p4[0]=Spri p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=e s1[0]=n s1[1]=n s1[2]=y s2[-2]=by s2[-1]=ce s2[0]=en s2[1]=on s2[2]=fy s3[-2]= s3[-1]=uce s3[0]=een s3[1]= s3[2]=ify s4[-2]= s4[-1]=ruce s4[0]=teen s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=by|Bruce w[-1]|w[0]=Bruce|Springsteen w[0]|w[1]=Springsteen|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=to w[-4..-1]=Run w[-4..-1]=by w[-4..-1]=Bruce w[1..4]=on w[1..4]=Spotify +O w[-2]=Bruce w[-1]=Springsteen w[0]=on w[1]=Spotify wl[-2]=bruce wl[-1]=springsteen wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULLLL shape[-1]=ULLLLLLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=B p1[-1]=S p1[0]=o p1[1]=S p2[-2]=Br p2[-1]=Sp p2[0]=on p2[1]=Sp p3[-2]=Bru p3[-1]=Spr p3[0]= p3[1]=Spo p4[-2]=Bruc p4[-1]=Spri p4[0]= p4[1]=Spot s1[-2]=e s1[-1]=n s1[0]=n s1[1]=y s2[-2]=ce s2[-1]=en s2[0]=on s2[1]=fy s3[-2]=uce s3[-1]=een s3[0]= s3[1]=ify s4[-2]=ruce s4[-1]=teen s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Bruce|Springsteen w[-1]|w[0]=Springsteen|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=Run w[-4..-1]=by w[-4..-1]=Bruce w[-4..-1]=Springsteen w[1..4]=Spotify +service w[-2]=Springsteen w[-1]=on w[0]=Spotify wl[-2]=springsteen wl[-1]=on wl[0]=spotify pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=S p1[-1]=o p1[0]=S p2[-2]=Sp p2[-1]=on p2[0]=Sp p3[-2]=Spr p3[-1]= p3[0]=Spo p4[-2]=Spri p4[-1]= p4[0]=Spot s1[-2]=n s1[-1]=n s1[0]=y s2[-2]=en s2[-1]=on s2[0]=fy s3[-2]=een s3[-1]= s3[0]=ify s4[-2]=teen s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Springsteen|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=by w[-4..-1]=Bruce w[-4..-1]=Springsteen w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=Imagine w[2]=Dragons wl[0]=play wl[1]=imagine wl[2]=dragons pos[0]=VBP pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLLL shape[2]=ULLLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=I p1[2]=D p2[0]=pl p2[1]=Im p2[2]=Dr p3[0]=pla p3[1]=Ima p3[2]=Dra p4[0]=play p4[1]=Imag p4[2]=Drag s1[0]=y s1[1]=e s1[2]=s s2[0]=ay s2[1]=ne s2[2]=ns s3[0]=lay s3[1]=ine s3[2]=ons s4[0]=play s4[1]=gine s4[2]=gons 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Imagine w[1]|w[2]=Imagine|Dragons pos[0]|pos[1]=VBP|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Imagine w[1..4]=Dragons __BOS__ +artist w[-1]=play w[0]=Imagine w[1]=Dragons wl[-1]=play wl[0]=imagine wl[1]=dragons pos[-1]=VBP pos[0]=NNP pos[1]=NNP chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=ULLLLLL shape[1]=ULLLLLL shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-1]=p p1[0]=I p1[1]=D p2[-1]=pl p2[0]=Im p2[1]=Dr p3[-1]=pla p3[0]=Ima p3[1]=Dra p4[-1]=play p4[0]=Imag p4[1]=Drag s1[-1]=y s1[0]=e s1[1]=s s2[-1]=ay s2[0]=ne s2[1]=ns s3[-1]=lay s3[0]=ine s3[1]=ons s4[-1]=play s4[0]=gine s4[1]=gons 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=no al[1]=no ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|Imagine w[0]|w[1]=Imagine|Dragons pos[-1]|pos[0]=VBP|NNP pos[0]|pos[1]=NNP|NNP chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=play w[1..4]=Dragons +artist w[-2]=play w[-1]=Imagine w[0]=Dragons wl[-2]=play wl[-1]=imagine wl[0]=dragons pos[-2]=VBP pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULLLLLL shape[0]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=I p1[0]=D p2[-2]=pl p2[-1]=Im p2[0]=Dr p3[-2]=pla p3[-1]=Ima p3[0]=Dra p4[-2]=play p4[-1]=Imag p4[0]=Drag s1[-2]=y s1[-1]=e s1[0]=s s2[-2]=ay s2[-1]=ne s2[0]=ns s3[-2]=lay s3[-1]=ine s3[0]=ons s4[-2]=play s4[-1]=gine s4[0]=gons 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|Imagine w[-1]|w[0]=Imagine|Dragons pos[-2]|pos[-1]=VBP|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=Imagine __EOS__ + +O w[0]=will w[1]=you w[2]=please wl[0]=will wl[1]=you wl[2]=please pos[0]=MD pos[1]=PRP pos[2]=UH chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=w p1[1]=y p1[2]=p p2[0]=wi p2[1]=yo p2[2]=pl p3[0]=wil p3[1]=you p3[2]=ple p4[0]=will p4[1]= p4[2]=plea s1[0]=l s1[1]=u s1[2]=e s2[0]=ll s2[1]=ou s2[2]=se s3[0]=ill s3[1]=you s3[2]=ase s4[0]=will s4[1]= s4[2]=ease 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=will|you w[1]|w[2]=you|please pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|UH chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=please w[1..4]=play w[1..4]=Tik __BOS__ +O w[-1]=will w[0]=you w[1]=please w[2]=play wl[-1]=will wl[0]=you wl[1]=please wl[2]=play pos[-1]=MD pos[0]=PRP pos[1]=UH pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=w p1[0]=y p1[1]=p p1[2]=p p2[-1]=wi p2[0]=yo p2[1]=pl p2[2]=pl p3[-1]=wil p3[0]=you p3[1]=ple p3[2]=pla p4[-1]=will p4[0]= p4[1]=plea p4[2]=play s1[-1]=l s1[0]=u s1[1]=e s1[2]=y s2[-1]=ll s2[0]=ou s2[1]=se s2[2]=ay s3[-1]=ill s3[0]=you s3[1]=ase s3[2]=lay s4[-1]=will s4[0]= s4[1]=ease s4[2]=play 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=will|you w[0]|w[1]=you|please w[1]|w[2]=please|play pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|UH pos[1]|pos[2]=UH|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=will w[1..4]=please w[1..4]=play w[1..4]=Tik w[1..4]=Tok +O w[-2]=will w[-1]=you w[0]=please w[1]=play w[2]=Tik wl[-2]=will wl[-1]=you wl[0]=please wl[1]=play wl[2]=tik pos[-2]=MD pos[-1]=PRP pos[0]=UH pos[1]=VB pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLLL shape[1]=LLLL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=w p1[-1]=y p1[0]=p p1[1]=p p1[2]=T p2[-2]=wi p2[-1]=yo p2[0]=pl p2[1]=pl p2[2]=Ti p3[-2]=wil p3[-1]=you p3[0]=ple p3[1]=pla p3[2]=Tik p4[-2]=will p4[-1]= p4[0]=plea p4[1]=play p4[2]= s1[-2]=l s1[-1]=u s1[0]=e s1[1]=y s1[2]=k s2[-2]=ll s2[-1]=ou s2[0]=se s2[1]=ay s2[2]=ik s3[-2]=ill s3[-1]=you s3[0]=ase s3[1]=lay s3[2]=Tik s4[-2]=will s4[-1]= s4[0]=ease s4[1]=play s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=will|you w[-1]|w[0]=you|please w[0]|w[1]=please|play w[1]|w[2]=play|Tik pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|UH pos[0]|pos[1]=UH|VB pos[1]|pos[2]=VB|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=will w[-4..-1]=you w[1..4]=play w[1..4]=Tik w[1..4]=Tok +O w[-2]=you w[-1]=please w[0]=play w[1]=Tik w[2]=Tok wl[-2]=you wl[-1]=please wl[0]=play wl[1]=tik wl[2]=tok pos[-2]=PRP pos[-1]=UH pos[0]=VB pos[1]=NNP pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=LLLLLL shape[0]=LLLL shape[1]=ULL shape[2]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=y p1[-1]=p p1[0]=p p1[1]=T p1[2]=T p2[-2]=yo p2[-1]=pl p2[0]=pl p2[1]=Ti p2[2]=To p3[-2]=you p3[-1]=ple p3[0]=pla p3[1]=Tik p3[2]=Tok p4[-2]= p4[-1]=plea p4[0]=play p4[1]= p4[2]= s1[-2]=u s1[-1]=e s1[0]=y s1[1]=k s1[2]=k s2[-2]=ou s2[-1]=se s2[0]=ay s2[1]=ik s2[2]=ok s3[-2]=you s3[-1]=ase s3[0]=lay s3[1]=Tik s3[2]=Tok s4[-2]= s4[-1]=ease s4[0]=play s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|please w[-1]|w[0]=please|play w[0]|w[1]=play|Tik w[1]|w[2]=Tik|Tok pos[-2]|pos[-1]=PRP|UH pos[-1]|pos[0]=UH|VB pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=will w[-4..-1]=you w[-4..-1]=please w[1..4]=Tik w[1..4]=Tok +song w[-2]=please w[-1]=play w[0]=Tik w[1]=Tok wl[-2]=please wl[-1]=play wl[0]=tik wl[1]=tok pos[-2]=UH pos[-1]=VB pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=ULL shape[1]=ULL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=p p1[-1]=p p1[0]=T p1[1]=T p2[-2]=pl p2[-1]=pl p2[0]=Ti p2[1]=To p3[-2]=ple p3[-1]=pla p3[0]=Tik p3[1]=Tok p4[-2]=plea p4[-1]=play p4[0]= p4[1]= s1[-2]=e s1[-1]=y s1[0]=k s1[1]=k s2[-2]=se s2[-1]=ay s2[0]=ik s2[1]=ok s3[-2]=ase s3[-1]=lay s3[0]=Tik s3[1]=Tok s4[-2]=ease s4[-1]=play s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=please|play w[-1]|w[0]=play|Tik w[0]|w[1]=Tik|Tok pos[-2]|pos[-1]=UH|VB pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=will w[-4..-1]=you w[-4..-1]=please w[-4..-1]=play w[1..4]=Tok +song w[-2]=play w[-1]=Tik w[0]=Tok wl[-2]=play wl[-1]=tik wl[0]=tok pos[-2]=VB pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=ULL shape[0]=ULL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=p p1[-1]=T p1[0]=T p2[-2]=pl p2[-1]=Ti p2[0]=To p3[-2]=pla p3[-1]=Tik p3[0]=Tok p4[-2]=play p4[-1]= p4[0]= s1[-2]=y s1[-1]=k s1[0]=k s2[-2]=ay s2[-1]=ik s2[0]=ok s3[-2]=lay s3[-1]=Tik s3[0]=Tok s4[-2]=play s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|Tik w[-1]|w[0]=Tik|Tok pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=you w[-4..-1]=please w[-4..-1]=play w[-4..-1]=Tik __EOS__ + +O w[0]=play w[1]=a w[2]=rock wl[0]=play wl[1]=a wl[2]=rock pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=L shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=r p2[0]=pl p2[1]= p2[2]=ro p3[0]=pla p3[1]= p3[2]=roc p4[0]=play p4[1]= p4[2]=rock s1[0]=y s1[1]=a s1[2]=k s2[0]=ay s2[1]= s2[2]=ck s3[0]=lay s3[1]= s3[2]=ock s4[0]=play s4[1]= s4[2]=rock 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|a w[1]|w[2]=a|rock pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=a w[1..4]=rock w[1..4]=song __BOS__ +O w[-1]=play w[0]=a w[1]=rock w[2]=song wl[-1]=play wl[0]=a wl[1]=rock wl[2]=song pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=L shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=r p1[2]=s p2[-1]=pl p2[0]= p2[1]=ro p2[2]=so p3[-1]=pla p3[0]= p3[1]=roc p3[2]=son p4[-1]=play p4[0]= p4[1]=rock p4[2]=song s1[-1]=y s1[0]=a s1[1]=k s1[2]=g s2[-1]=ay s2[0]= s2[1]=ck s2[2]=ng s3[-1]=lay s3[0]= s3[1]=ock s3[2]=ong s4[-1]=play s4[0]= s4[1]=rock s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|a w[0]|w[1]=a|rock w[1]|w[2]=rock|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=rock w[1..4]=song +genre w[-2]=play w[-1]=a w[0]=rock w[1]=song wl[-2]=play wl[-1]=a wl[0]=rock wl[1]=song pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O shape[-2]=LLLL shape[-1]=L shape[0]=LLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=a p1[0]=r p1[1]=s p2[-2]=pl p2[-1]= p2[0]=ro p2[1]=so p3[-2]=pla p3[-1]= p3[0]=roc p3[1]=son p4[-2]=play p4[-1]= p4[0]=rock p4[1]=song s1[-2]=y s1[-1]=a s1[0]=k s1[1]=g s2[-2]=ay s2[-1]= s2[0]=ck s2[1]=ng s3[-2]=lay s3[-1]= s3[0]=ock s3[1]=ong s4[-2]=play s4[-1]= s4[0]=rock s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|a w[-1]|w[0]=a|rock w[0]|w[1]=rock|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[1..4]=song +O w[-2]=a w[-1]=rock w[0]=song wl[-2]=a wl[-1]=rock wl[0]=song pos[-2]=DT pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=O shape[-2]=L shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=a p1[-1]=r p1[0]=s p2[-2]= p2[-1]=ro p2[0]=so p3[-2]= p3[-1]=roc p3[0]=son p4[-2]= p4[-1]=rock p4[0]=song s1[-2]=a s1[-1]=k s1[0]=g s2[-2]= s2[-1]=ck s2[0]=ng s3[-2]= s3[-1]=ock s3[0]=ong s4[-2]= s4[-1]=rock s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=a|rock w[-1]|w[0]=rock|song pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=a w[-4..-1]=rock __EOS__ + +O w[0]=play w[1]=Maroon w[2]=5 wl[0]=play wl[1]=maroon wl[2]=5 pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLLL shape[2]=D shaped[0]=L shaped[1]=UL shaped[2]=D type[0]=AllLetter type[1]=InitUpper type[2]=AllDigit p1[0]=p p1[1]=M p1[2]=5 p2[0]=pl p2[1]=Ma p2[2]= p3[0]=pla p3[1]=Mar p3[2]= p4[0]=play p4[1]=Maro p4[2]= s1[0]=y s1[1]=n s1[2]=5 s2[0]=ay s2[1]=on s2[2]= s3[0]=lay s3[1]=oon s3[2]= s4[0]=play s4[1]=roon s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=yes ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=no cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=no cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Maroon w[1]|w[2]=Maroon|5 pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|D type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllDigit w[1..4]=Maroon w[1..4]=5 w[1..4]=on w[1..4]=Spotify __BOS__ +artist w[-1]=play w[0]=Maroon w[1]=5 w[2]=on wl[-1]=play wl[0]=maroon wl[1]=5 wl[2]=on pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLLLL shape[1]=D shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=D shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=AllDigit type[2]=AllLetter p1[-1]=p p1[0]=M p1[1]=5 p1[2]=o p2[-1]=pl p2[0]=Ma p2[1]= p2[2]=on p3[-1]=pla p3[0]=Mar p3[1]= p3[2]= p4[-1]=play p4[0]=Maro p4[1]= p4[2]= s1[-1]=y s1[0]=n s1[1]=5 s1[2]=n s2[-1]=ay s2[0]=on s2[1]= s2[2]=on s3[-1]=lay s3[0]=oon s3[1]= s3[2]= s4[-1]=play s4[0]=roon s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=yes ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=no ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Maroon w[0]|w[1]=Maroon|5 w[1]|w[2]=5|on pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|D shaped[1]|shaped[2]=D|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllDigit type[1]|type[2]=AllDigit|AllLetter w[-4..-1]=play w[1..4]=5 w[1..4]=on w[1..4]=Spotify +artist w[-2]=play w[-1]=Maroon w[0]=5 w[1]=on w[2]=Spotify wl[-2]=play wl[-1]=maroon wl[0]=5 wl[1]=on wl[2]=spotify pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLLL shape[0]=D shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=D shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllDigit type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=M p1[0]=5 p1[1]=o p1[2]=S p2[-2]=pl p2[-1]=Ma p2[0]= p2[1]=on p2[2]=Sp p3[-2]=pla p3[-1]=Mar p3[0]= p3[1]= p3[2]=Spo p4[-2]=play p4[-1]=Maro p4[0]= p4[1]= p4[2]=Spot s1[-2]=y s1[-1]=n s1[0]=5 s1[1]=n s1[2]=y s2[-2]=ay s2[-1]=on s2[0]= s2[1]=on s2[2]=fy s3[-2]=lay s3[-1]=oon s3[0]= s3[1]= s3[2]=ify s4[-2]=play s4[-1]=roon s4[0]= s4[1]= s4[2]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=yes ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=no ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Maroon w[-1]|w[0]=Maroon|5 w[0]|w[1]=5|on w[1]|w[2]=on|Spotify pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|D shaped[0]|shaped[1]=D|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllDigit type[0]|type[1]=AllDigit|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Maroon w[1..4]=on w[1..4]=Spotify +O w[-2]=Maroon w[-1]=5 w[0]=on w[1]=Spotify wl[-2]=maroon wl[-1]=5 wl[0]=on wl[1]=spotify pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULLLLL shape[-1]=D shape[0]=LL shape[1]=ULLLLLL shaped[-2]=UL shaped[-1]=D shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=AllDigit type[0]=AllLetter type[1]=InitUpper p1[-2]=M p1[-1]=5 p1[0]=o p1[1]=S p2[-2]=Ma p2[-1]= p2[0]=on p2[1]=Sp p3[-2]=Mar p3[-1]= p3[0]= p3[1]=Spo p4[-2]=Maro p4[-1]= p4[0]= p4[1]=Spot s1[-2]=n s1[-1]=5 s1[0]=n s1[1]=y s2[-2]=on s2[-1]= s2[0]=on s2[1]=fy s3[-2]=oon s3[-1]= s3[0]= s3[1]=ify s4[-2]=roon s4[-1]= s4[0]= s4[1]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=yes ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=no ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Maroon|5 w[-1]|w[0]=5|on w[0]|w[1]=on|Spotify pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|D shaped[-1]|shaped[0]=D|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|AllDigit type[-1]|type[0]=AllDigit|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Maroon w[-4..-1]=5 w[1..4]=Spotify +service w[-2]=5 w[-1]=on w[0]=Spotify wl[-2]=5 wl[-1]=on wl[0]=spotify pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=D shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=D shaped[-1]=L shaped[0]=UL type[-2]=AllDigit type[-1]=AllLetter type[0]=InitUpper p1[-2]=5 p1[-1]=o p1[0]=S p2[-2]= p2[-1]=on p2[0]=Sp p3[-2]= p3[-1]= p3[0]=Spo p4[-2]= p4[-1]= p4[0]=Spot s1[-2]=5 s1[-1]=n s1[0]=y s2[-2]= s2[-1]=on s2[0]=fy s3[-2]= s3[-1]= s3[0]=ify s4[-2]= s4[-1]= s4[0]=tify 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=yes ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=yes cl[-2]=no cl[-1]=yes cl[0]=yes ca[-2]=no ca[-1]=yes ca[0]=yes cd[-2]=yes cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=5|on w[-1]|w[0]=on|Spotify pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=D|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=AllDigit|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Maroon w[-4..-1]=5 w[-4..-1]=on __EOS__ + +O w[0]=play w[1]=album w[2]=Nevermind wl[0]=play wl[1]=album wl[2]=nevermind pos[0]=VB pos[1]=NN pos[2]=NNP chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLLLL shape[2]=ULLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=UL type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[0]=p p1[1]=a p1[2]=N p2[0]=pl p2[1]=al p2[2]=Ne p3[0]=pla p3[1]=alb p3[2]=Nev p4[0]=play p4[1]=albu p4[2]=Neve s1[0]=y s1[1]=m s1[2]=d s2[0]=ay s2[1]=um s2[2]=nd s3[0]=lay s3[1]=bum s3[2]=ind s4[0]=play s4[1]=lbum s4[2]=mind 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|album w[1]|w[2]=album|Nevermind pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|NNP chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[1..4]=album w[1..4]=Nevermind w[1..4]=by w[1..4]=Nirvana __BOS__ +O w[-1]=play w[0]=album w[1]=Nevermind w[2]=by wl[-1]=play wl[0]=album wl[1]=nevermind wl[2]=by pos[-1]=VB pos[0]=NN pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=O chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=LLLLL shape[1]=ULLLLLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=N p1[2]=b p2[-1]=pl p2[0]=al p2[1]=Ne p2[2]=by p3[-1]=pla p3[0]=alb p3[1]=Nev p3[2]= p4[-1]=play p4[0]=albu p4[1]=Neve p4[2]= s1[-1]=y s1[0]=m s1[1]=d s1[2]=y s2[-1]=ay s2[0]=um s2[1]=nd s2[2]=by s3[-1]=lay s3[0]=bum s3[1]=ind s3[2]= s4[-1]=play s4[0]=lbum s4[1]=mind s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|album w[0]|w[1]=album|Nevermind w[1]|w[2]=Nevermind|by pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Nevermind w[1..4]=by w[1..4]=Nirvana +album w[-2]=play w[-1]=album w[0]=Nevermind w[1]=by w[2]=Nirvana wl[-2]=play wl[-1]=album wl[0]=nevermind wl[1]=by wl[2]=nirvana pos[-2]=VB pos[-1]=NN pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=LLLLL shape[0]=ULLLLLLLL shape[1]=LL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=a p1[0]=N p1[1]=b p1[2]=N p2[-2]=pl p2[-1]=al p2[0]=Ne p2[1]=by p2[2]=Ni p3[-2]=pla p3[-1]=alb p3[0]=Nev p3[1]= p3[2]=Nir p4[-2]=play p4[-1]=albu p4[0]=Neve p4[1]= p4[2]=Nirv s1[-2]=y s1[-1]=m s1[0]=d s1[1]=y s1[2]=a s2[-2]=ay s2[-1]=um s2[0]=nd s2[1]=by s2[2]=na s3[-2]=lay s3[-1]=bum s3[0]=ind s3[1]= s3[2]=ana s4[-2]=play s4[-1]=lbum s4[0]=mind s4[1]= s4[2]=vana 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|album w[-1]|w[0]=album|Nevermind w[0]|w[1]=Nevermind|by w[1]|w[2]=by|Nirvana pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[1..4]=by w[1..4]=Nirvana +O w[-2]=album w[-1]=Nevermind w[0]=by w[1]=Nirvana wl[-2]=album wl[-1]=nevermind wl[0]=by wl[1]=nirvana pos[-2]=NN pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=O chk[-1]=I chk[0]=O chk[1]=I shape[-2]=LLLLL shape[-1]=ULLLLLLLL shape[0]=LL shape[1]=ULLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=a p1[-1]=N p1[0]=b p1[1]=N p2[-2]=al p2[-1]=Ne p2[0]=by p2[1]=Ni p3[-2]=alb p3[-1]=Nev p3[0]= p3[1]=Nir p4[-2]=albu p4[-1]=Neve p4[0]= p4[1]=Nirv s1[-2]=m s1[-1]=d s1[0]=y s1[1]=a s2[-2]=um s2[-1]=nd s2[0]=by s2[1]=na s3[-2]=bum s3[-1]=ind s3[0]= s3[1]=ana s4[-2]=lbum s4[-1]=mind s4[0]= s4[1]=vana 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=album|Nevermind w[-1]|w[0]=Nevermind|by w[0]|w[1]=by|Nirvana pos[-2]|pos[-1]=NN|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Nevermind w[1..4]=Nirvana +artist w[-2]=Nevermind w[-1]=by w[0]=Nirvana wl[-2]=nevermind wl[-1]=by wl[0]=nirvana pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLLLLL shape[-1]=LL shape[0]=ULLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=N p1[-1]=b p1[0]=N p2[-2]=Ne p2[-1]=by p2[0]=Ni p3[-2]=Nev p3[-1]= p3[0]=Nir p4[-2]=Neve p4[-1]= p4[0]=Nirv s1[-2]=d s1[-1]=y s1[0]=a s2[-2]=nd s2[-1]=by s2[0]=na s3[-2]=ind s3[-1]= s3[0]=ana s4[-2]=mind s4[-1]= s4[0]=vana 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Nevermind|by w[-1]|w[0]=by|Nirvana pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=album w[-4..-1]=Nevermind w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=françoise w[2]=hardy wl[0]=play wl[1]=françoise wl[2]=hardy pos[0]=VBP pos[1]=NN pos[2]=NN chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=LLLLLLLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=f p1[2]=h p2[0]=pl p2[1]=fr p2[2]=ha p3[0]=pla p3[1]=fra p3[2]=har p4[0]=play p4[1]=fran p4[2]=hard s1[0]=y s1[1]=e s1[2]=y s2[0]=ay s2[1]=se s2[2]=dy s3[0]=lay s3[1]=ise s3[2]=rdy s4[0]=play s4[1]=oise s4[2]=ardy 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|françoise w[1]|w[2]=françoise|hardy pos[0]|pos[1]=VBP|NN pos[1]|pos[2]=NN|NN chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=françoise w[1..4]=hardy __BOS__ +artist w[-1]=play w[0]=françoise w[1]=hardy wl[-1]=play wl[0]=françoise wl[1]=hardy pos[-1]=VBP pos[0]=NN pos[1]=NN chk[-1]=O chk[0]=I chk[1]=I shape[-1]=LLLL shape[0]=LLLLLLLLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=f p1[1]=h p2[-1]=pl p2[0]=fr p2[1]=ha p3[-1]=pla p3[0]=fra p3[1]=har p4[-1]=play p4[0]=fran p4[1]=hard s1[-1]=y s1[0]=e s1[1]=y s2[-1]=ay s2[0]=se s2[1]=dy s3[-1]=lay s3[0]=ise s3[1]=rdy s4[-1]=play s4[0]=oise s4[1]=ardy 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|françoise w[0]|w[1]=françoise|hardy pos[-1]|pos[0]=VBP|NN pos[0]|pos[1]=NN|NN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=hardy +artist w[-2]=play w[-1]=françoise w[0]=hardy wl[-2]=play wl[-1]=françoise wl[0]=hardy pos[-2]=VBP pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LLLL shape[-1]=LLLLLLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=f p1[0]=h p2[-2]=pl p2[-1]=fr p2[0]=ha p3[-2]=pla p3[-1]=fra p3[0]=har p4[-2]=play p4[-1]=fran p4[0]=hard s1[-2]=y s1[-1]=e s1[0]=y s2[-2]=ay s2[-1]=se s2[0]=dy s3[-2]=lay s3[-1]=ise s3[0]=rdy s4[-2]=play s4[-1]=oise s4[0]=ardy 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|françoise w[-1]|w[0]=françoise|hardy pos[-2]|pos[-1]=VBP|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=françoise __EOS__ + +song w[0]=Live w[1]=While w[2]=We wl[0]=live wl[1]=while wl[2]=we pos[0]=VB pos[1]=VB pos[2]=VB chk[0]=I chk[1]=I chk[2]=I shape[0]=ULLL shape[1]=ULLLL shape[2]=UL shaped[0]=UL shaped[1]=UL shaped[2]=UL type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[0]=L p1[1]=W p1[2]=W p2[0]=Li p2[1]=Wh p2[2]=We p3[0]=Liv p3[1]=Whi p3[2]= p4[0]=Live p4[1]=Whil p4[2]= s1[0]=e s1[1]=e s1[2]=e s2[0]=ve s2[1]=le s2[2]=We s3[0]=ive s3[1]=ile s3[2]= s4[0]=Live s4[1]=hile s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=no al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=Live|While w[1]|w[2]=While|We pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=While w[1..4]=We w[1..4]=are w[1..4]=Young __BOS__ +song w[-1]=Live w[0]=While w[1]=We w[2]=are wl[-1]=live wl[0]=while wl[1]=we wl[2]=are pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=VB chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-1]=ULLL shape[0]=ULLLL shape[1]=UL shape[2]=LLL shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=L p1[0]=W p1[1]=W p1[2]=a p2[-1]=Li p2[0]=Wh p2[1]=We p2[2]=ar p3[-1]=Liv p3[0]=Whi p3[1]= p3[2]=are p4[-1]=Live p4[0]=Whil p4[1]= p4[2]= s1[-1]=e s1[0]=e s1[1]=e s1[2]=e s2[-1]=ve s2[0]=le s2[1]=We s2[2]=re s3[-1]=ive s3[0]=ile s3[1]= s3[2]=are s4[-1]=Live s4[0]=hile s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=Live|While w[0]|w[1]=While|We w[1]|w[2]=We|are pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Live w[1..4]=We w[1..4]=are w[1..4]=Young w[1..4]=song +song w[-2]=Live w[-1]=While w[0]=We w[1]=are w[2]=Young wl[-2]=live wl[-1]=while wl[0]=we wl[1]=are wl[2]=young pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=VB chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=ULLL shape[-1]=ULLLL shape[0]=UL shape[1]=LLL shape[2]=ULLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=L p1[-1]=W p1[0]=W p1[1]=a p1[2]=Y p2[-2]=Li p2[-1]=Wh p2[0]=We p2[1]=ar p2[2]=Yo p3[-2]=Liv p3[-1]=Whi p3[0]= p3[1]=are p3[2]=You p4[-2]=Live p4[-1]=Whil p4[0]= p4[1]= p4[2]=Youn s1[-2]=e s1[-1]=e s1[0]=e s1[1]=e s1[2]=g s2[-2]=ve s2[-1]=le s2[0]=We s2[1]=re s2[2]=ng s3[-2]=ive s3[-1]=ile s3[0]= s3[1]=are s3[2]=ung s4[-2]=Live s4[-1]=hile s4[0]= s4[1]= s4[2]=oung 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Live|While w[-1]|w[0]=While|We w[0]|w[1]=We|are w[1]|w[2]=are|Young pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|VB chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=Live w[-4..-1]=While w[1..4]=are w[1..4]=Young w[1..4]=song +song w[-2]=While w[-1]=We w[0]=are w[1]=Young w[2]=song wl[-2]=while wl[-1]=we wl[0]=are wl[1]=young wl[2]=song pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=VB pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=ULLLL shape[-1]=UL shape[0]=LLL shape[1]=ULLLL shape[2]=LLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper type[2]=AllLetter p1[-2]=W p1[-1]=W p1[0]=a p1[1]=Y p1[2]=s p2[-2]=Wh p2[-1]=We p2[0]=ar p2[1]=Yo p2[2]=so p3[-2]=Whi p3[-1]= p3[0]=are p3[1]=You p3[2]=son p4[-2]=Whil p4[-1]= p4[0]= p4[1]=Youn p4[2]=song s1[-2]=e s1[-1]=e s1[0]=e s1[1]=g s1[2]=g s2[-2]=le s2[-1]=We s2[0]=re s2[1]=ng s2[2]=ng s3[-2]=ile s3[-1]= s3[0]=are s3[1]=ung s3[2]=ong s4[-2]=hile s4[-1]= s4[0]= s4[1]=oung s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=While|We w[-1]|w[0]=We|are w[0]|w[1]=are|Young w[1]|w[2]=Young|song pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|VB pos[1]|pos[2]=VB|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=Live w[-4..-1]=While w[-4..-1]=We w[1..4]=Young w[1..4]=song +song w[-2]=We w[-1]=are w[0]=Young w[1]=song wl[-2]=we wl[-1]=are wl[0]=young wl[1]=song pos[-2]=VB pos[-1]=VB pos[0]=VB pos[1]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O shape[-2]=UL shape[-1]=LLL shape[0]=ULLLL shape[1]=LLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL shaped[1]=L type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper type[1]=AllLetter p1[-2]=W p1[-1]=a p1[0]=Y p1[1]=s p2[-2]=We p2[-1]=ar p2[0]=Yo p2[1]=so p3[-2]= p3[-1]=are p3[0]=You p3[1]=son p4[-2]= p4[-1]= p4[0]=Youn p4[1]=song s1[-2]=e s1[-1]=e s1[0]=g s1[1]=g s2[-2]=We s2[-1]=re s2[0]=ng s2[1]=ng s3[-2]= s3[-1]=are s3[0]=ung s3[1]=ong s4[-2]= s4[-1]= s4[0]=oung s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=yes iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=no al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=yes cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=We|are w[-1]|w[0]=are|Young w[0]|w[1]=Young|song pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|VB pos[0]|pos[1]=VB|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|L type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|AllLetter w[-4..-1]=Live w[-4..-1]=While w[-4..-1]=We w[-4..-1]=are w[1..4]=song +O w[-2]=are w[-1]=Young w[0]=song wl[-2]=are wl[-1]=young wl[0]=song pos[-2]=VB pos[-1]=VB pos[0]=NN chk[-2]=I chk[-1]=I chk[0]=O shape[-2]=LLL shape[-1]=ULLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=UL shaped[0]=L type[-2]=AllLetter type[-1]=InitUpper type[0]=AllLetter p1[-2]=a p1[-1]=Y p1[0]=s p2[-2]=ar p2[-1]=Yo p2[0]=so p3[-2]=are p3[-1]=You p3[0]=son p4[-2]= p4[-1]=Youn p4[0]=song s1[-2]=e s1[-1]=g s1[0]=g s2[-2]=re s2[-1]=ng s2[0]=ng s3[-2]=are s3[-1]=ung s3[0]=ong s4[-2]= s4[-1]=oung s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=are|Young w[-1]|w[0]=Young|song pos[-2]|pos[-1]=VB|VB pos[-1]|pos[0]=VB|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|L type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|AllLetter w[-4..-1]=While w[-4..-1]=We w[-4..-1]=are w[-4..-1]=Young __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=some +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=some w[1..4]=music +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=some wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=some pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=s p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=so p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=som p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]=some s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=e s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=me s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=ome s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]=some 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|some pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=some w[1..4]=music +O w[-2]=to w[-1]=listen w[0]=to w[1]=some w[2]=music wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=some wl[2]=music pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=s p1[2]=m p2[-2]=to p2[-1]=li p2[0]=to p2[1]=so p2[2]=mu p3[-2]= p3[-1]=lis p3[0]= p3[1]=som p3[2]=mus p4[-2]= p4[-1]=list p4[0]= p4[1]=some p4[2]=musi s1[-2]=o s1[-1]=n s1[0]=o s1[1]=e s1[2]=c s2[-2]=to s2[-1]=en s2[0]=to s2[1]=me s2[2]=ic s3[-2]= s3[-1]=ten s3[0]= s3[1]=ome s3[2]=sic s4[-2]= s4[-1]=sten s4[0]= s4[1]=some s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|some w[1]|w[2]=some|music pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=some w[1..4]=music +O w[-2]=listen w[-1]=to w[0]=some w[1]=music wl[-2]=listen wl[-1]=to wl[0]=some wl[1]=music pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=l p1[-1]=t p1[0]=s p1[1]=m p2[-2]=li p2[-1]=to p2[0]=so p2[1]=mu p3[-2]=lis p3[-1]= p3[0]=som p3[1]=mus p4[-2]=list p4[-1]= p4[0]=some p4[1]=musi s1[-2]=n s1[-1]=o s1[0]=e s1[1]=c s2[-2]=en s2[-1]=to s2[0]=me s2[1]=ic s3[-2]=ten s3[-1]= s3[0]=ome s3[1]=sic s4[-2]=sten s4[-1]= s4[0]=some s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|some w[0]|w[1]=some|music pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=music +O w[-2]=to w[-1]=some w[0]=music wl[-2]=to wl[-1]=some wl[0]=music pos[-2]=IN pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=s p1[0]=m p2[-2]=to p2[-1]=so p2[0]=mu p3[-2]= p3[-1]=som p3[0]=mus p4[-2]= p4[-1]=some p4[0]=musi s1[-2]=o s1[-1]=e s1[0]=c s2[-2]=to s2[-1]=me s2[0]=ic s3[-2]= s3[-1]=ome s3[0]=sic s4[-2]= s4[-1]=some s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|some w[-1]|w[0]=some|music pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=some __EOS__ + +O w[0]=play w[1]=Budapest wl[0]=play wl[1]=budapest pos[0]=VB pos[1]=NNP chk[0]=O chk[1]=I shape[0]=LLLL shape[1]=ULLLLLLL shaped[0]=L shaped[1]=UL type[0]=AllLetter type[1]=InitUpper p1[0]=p p1[1]=B p2[0]=pl p2[1]=Bu p3[0]=pla p3[1]=Bud p4[0]=play p4[1]=Buda s1[0]=y s1[1]=t s2[0]=ay s2[1]=st s3[0]=lay s3[1]=est s4[0]=play s4[1]=pest 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=yes au[0]=no au[1]=no al[0]=yes al[1]=no ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=yes cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|Budapest pos[0]|pos[1]=VB|NNP chk[0]|chk[1]=O|I shaped[0]|shaped[1]=L|UL type[0]|type[1]=AllLetter|InitUpper w[1..4]=Budapest __BOS__ +song w[-1]=play w[0]=Budapest wl[-1]=play wl[0]=budapest pos[-1]=VB pos[0]=NNP chk[-1]=O chk[0]=I shape[-1]=LLLL shape[0]=ULLLLLLL shaped[-1]=L shaped[0]=UL type[-1]=AllLetter type[0]=InitUpper p1[-1]=p p1[0]=B p2[-1]=pl p2[0]=Bu p3[-1]=pla p3[0]=Bud p4[-1]=play p4[0]=Buda s1[-1]=y s1[0]=t s2[-1]=ay s2[0]=st s3[-1]=lay s3[0]=est s4[-1]=play s4[0]=pest 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=yes au[-1]=no au[0]=no al[-1]=yes al[0]=no ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=yes cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|Budapest pos[-1]|pos[0]=VB|NNP chk[-1]|chk[0]=O|I shaped[-1]|shaped[0]=L|UL type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play __EOS__ + +O w[0]=play w[1]=Sweet w[2]=Dreams wl[0]=play wl[1]=sweet wl[2]=dreams pos[0]=VB pos[1]=NNP pos[2]=NNP chk[0]=O chk[1]=I chk[2]=I shape[0]=LLLL shape[1]=ULLLL shape[2]=ULLLLL shaped[0]=L shaped[1]=UL shaped[2]=UL type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[0]=p p1[1]=S p1[2]=D p2[0]=pl p2[1]=Sw p2[2]=Dr p3[0]=pla p3[1]=Swe p3[2]=Dre p4[0]=play p4[1]=Swee p4[2]=Drea s1[0]=y s1[1]=t s1[2]=s s2[0]=ay s2[1]=et s2[2]=ms s3[0]=lay s3[1]=eet s3[2]=ams s4[0]=play s4[1]=weet s4[2]=eams 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=yes iu[2]=yes au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=no al[2]=no ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=yes cu[2]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|Sweet w[1]|w[2]=Sweet|Dreams pos[0]|pos[1]=VB|NNP pos[1]|pos[2]=NNP|NNP chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[1..4]=Sweet w[1..4]=Dreams w[1..4]=by w[1..4]=Eurythmics __BOS__ +song w[-1]=play w[0]=Sweet w[1]=Dreams w[2]=by wl[-1]=play wl[0]=sweet wl[1]=dreams wl[2]=by pos[-1]=VB pos[0]=NNP pos[1]=NNP pos[2]=IN chk[-1]=O chk[0]=I chk[1]=I chk[2]=O shape[-1]=LLLL shape[0]=ULLLL shape[1]=ULLLLL shape[2]=LL shaped[-1]=L shaped[0]=UL shaped[1]=UL shaped[2]=L type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-1]=p p1[0]=S p1[1]=D p1[2]=b p2[-1]=pl p2[0]=Sw p2[1]=Dr p2[2]=by p3[-1]=pla p3[0]=Swe p3[1]=Dre p3[2]= p4[-1]=play p4[0]=Swee p4[1]=Drea p4[2]= s1[-1]=y s1[0]=t s1[1]=s s1[2]=y s2[-1]=ay s2[0]=et s2[1]=ms s2[2]=by s3[-1]=lay s3[0]=eet s3[1]=ams s3[2]= s4[-1]=play s4[0]=weet s4[1]=eams s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=no al[1]=no al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|Sweet w[0]|w[1]=Sweet|Dreams w[1]|w[2]=Dreams|by pos[-1]|pos[0]=VB|NNP pos[0]|pos[1]=NNP|NNP pos[1]|pos[2]=NNP|IN chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[1..4]=Dreams w[1..4]=by w[1..4]=Eurythmics +song w[-2]=play w[-1]=Sweet w[0]=Dreams w[1]=by w[2]=Eurythmics wl[-2]=play wl[-1]=sweet wl[0]=dreams wl[1]=by wl[2]=eurythmics pos[-2]=VB pos[-1]=NNP pos[0]=NNP pos[1]=IN pos[2]=NNP chk[-2]=O chk[-1]=I chk[0]=I chk[1]=O chk[2]=I shape[-2]=LLLL shape[-1]=ULLLL shape[0]=ULLLLL shape[1]=LL shape[2]=ULLLLLLLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=InitUpper p1[-2]=p p1[-1]=S p1[0]=D p1[1]=b p1[2]=E p2[-2]=pl p2[-1]=Sw p2[0]=Dr p2[1]=by p2[2]=Eu p3[-2]=pla p3[-1]=Swe p3[0]=Dre p3[1]= p3[2]=Eur p4[-2]=play p4[-1]=Swee p4[0]=Drea p4[1]= p4[2]=Eury s1[-2]=y s1[-1]=t s1[0]=s s1[1]=y s1[2]=s s2[-2]=ay s2[-1]=et s2[0]=ms s2[1]=by s2[2]=cs s3[-2]=lay s3[-1]=eet s3[0]=ams s3[1]= s3[2]=ics s4[-2]=play s4[-1]=weet s4[0]=eams s4[1]= s4[2]=mics 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|Sweet w[-1]|w[0]=Sweet|Dreams w[0]|w[1]=Dreams|by w[1]|w[2]=by|Eurythmics pos[-2]|pos[-1]=VB|NNP pos[-1]|pos[0]=NNP|NNP pos[0]|pos[1]=NNP|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Sweet w[1..4]=by w[1..4]=Eurythmics +O w[-2]=Sweet w[-1]=Dreams w[0]=by w[1]=Eurythmics wl[-2]=sweet wl[-1]=dreams wl[0]=by wl[1]=eurythmics pos[-2]=NNP pos[-1]=NNP pos[0]=IN pos[1]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=I shape[-2]=ULLLL shape[-1]=ULLLLL shape[0]=LL shape[1]=ULLLLLLLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=InitUpper p1[-2]=S p1[-1]=D p1[0]=b p1[1]=E p2[-2]=Sw p2[-1]=Dr p2[0]=by p2[1]=Eu p3[-2]=Swe p3[-1]=Dre p3[0]= p3[1]=Eur p4[-2]=Swee p4[-1]=Drea p4[0]= p4[1]=Eury s1[-2]=t s1[-1]=s s1[0]=y s1[1]=s s2[-2]=et s2[-1]=ms s2[0]=by s2[1]=cs s3[-2]=eet s3[-1]=ams s3[0]= s3[1]=ics s4[-2]=weet s4[-1]=eams s4[0]= s4[1]=mics 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=no al[0]=yes al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=Sweet|Dreams w[-1]|w[0]=Dreams|by w[0]|w[1]=by|Eurythmics pos[-2]|pos[-1]=NNP|NNP pos[-1]|pos[0]=NNP|IN pos[0]|pos[1]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Sweet w[-4..-1]=Dreams w[1..4]=Eurythmics +artist w[-2]=Dreams w[-1]=by w[0]=Eurythmics wl[-2]=dreams wl[-1]=by wl[0]=eurythmics pos[-2]=NNP pos[-1]=IN pos[0]=NNP chk[-2]=I chk[-1]=O chk[0]=I shape[-2]=ULLLLL shape[-1]=LL shape[0]=ULLLLLLLLL shaped[-2]=UL shaped[-1]=L shaped[0]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=InitUpper p1[-2]=D p1[-1]=b p1[0]=E p2[-2]=Dr p2[-1]=by p2[0]=Eu p3[-2]=Dre p3[-1]= p3[0]=Eur p4[-2]=Drea p4[-1]= p4[0]=Eury s1[-2]=s s1[-1]=y s1[0]=s s2[-2]=ms s2[-1]=by s2[0]=cs s3[-2]=ams s3[-1]= s3[0]=ics s4[-2]=eams s4[-1]= s4[0]=mics 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=yes iu[-1]=no iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=no al[-1]=yes al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=yes cu[-1]=no cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=Dreams|by w[-1]|w[0]=by|Eurythmics pos[-2]|pos[-1]=NNP|IN pos[-1]|pos[0]=IN|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|InitUpper w[-4..-1]=play w[-4..-1]=Sweet w[-4..-1]=Dreams w[-4..-1]=by __EOS__ + +O w[0]=play w[1]=the w[2]=50 wl[0]=play wl[1]=the wl[2]=50 pos[0]=VB pos[1]=DT pos[2]=CD chk[0]=O chk[1]=O chk[2]=I shape[0]=LLLL shape[1]=LLL shape[2]=DD shaped[0]=L shaped[1]=L shaped[2]=D type[0]=AllLetter type[1]=AllLetter type[2]=AllDigit p1[0]=p p1[1]=t p1[2]=5 p2[0]=pl p2[1]=th p2[2]=50 p3[0]=pla p3[1]=the p3[2]= p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=e s1[2]=0 s2[0]=ay s2[1]=he s2[2]=50 s3[0]=lay s3[1]=the s3[2]= s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=yes 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=no ad[0]=no ad[1]=no ad[2]=yes ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=no ca[0]=yes ca[1]=yes ca[2]=no cd[0]=no cd[1]=no cd[2]=yes cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|50 pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|CD chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|D type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllDigit w[1..4]=the w[1..4]=50 w[1..4]=Great w[1..4]=Beatles __BOS__ +O w[-1]=play w[0]=the w[1]=50 w[2]=Great wl[-1]=play wl[0]=the wl[1]=50 wl[2]=great pos[-1]=VB pos[0]=DT pos[1]=CD pos[2]=CD chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-1]=LLLL shape[0]=LLL shape[1]=DD shape[2]=ULLLL shaped[-1]=L shaped[0]=L shaped[1]=D shaped[2]=UL type[-1]=AllLetter type[0]=AllLetter type[1]=AllDigit type[2]=InitUpper p1[-1]=p p1[0]=t p1[1]=5 p1[2]=G p2[-1]=pl p2[0]=th p2[1]=50 p2[2]=Gr p3[-1]=pla p3[0]=the p3[1]= p3[2]=Gre p4[-1]=play p4[0]= p4[1]= p4[2]=Grea s1[-1]=y s1[0]=e s1[1]=0 s1[2]=t s2[-1]=ay s2[0]=he s2[1]=50 s2[2]=at s3[-1]=lay s3[0]=the s3[1]= s3[2]=eat s4[-1]=play s4[0]= s4[1]= s4[2]=reat 2d[-1]=no 2d[0]=no 2d[1]=yes 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-1]=no ad[0]=no ad[1]=yes ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=yes cl[-1]=yes cl[0]=yes cl[1]=no cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=no ca[2]=yes cd[-1]=no cd[0]=no cd[1]=yes cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|50 w[1]|w[2]=50|Great pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|CD pos[1]|pos[2]=CD|CD chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|D shaped[1]|shaped[2]=D|UL type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllDigit type[1]|type[2]=AllDigit|InitUpper w[-4..-1]=play w[1..4]=50 w[1..4]=Great w[1..4]=Beatles w[1..4]=Songs +playlist w[-2]=play w[-1]=the w[0]=50 w[1]=Great w[2]=Beatles wl[-2]=play wl[-1]=the wl[0]=50 wl[1]=great wl[2]=beatles pos[-2]=VB pos[-1]=DT pos[0]=CD pos[1]=CD pos[2]=CD chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLLL shape[-1]=LLL shape[0]=DD shape[1]=ULLLL shape[2]=ULLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=D shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=AllDigit type[1]=InitUpper type[2]=InitUpper p1[-2]=p p1[-1]=t p1[0]=5 p1[1]=G p1[2]=B p2[-2]=pl p2[-1]=th p2[0]=50 p2[1]=Gr p2[2]=Be p3[-2]=pla p3[-1]=the p3[0]= p3[1]=Gre p3[2]=Bea p4[-2]=play p4[-1]= p4[0]= p4[1]=Grea p4[2]=Beat s1[-2]=y s1[-1]=e s1[0]=0 s1[1]=t s1[2]=s s2[-2]=ay s2[-1]=he s2[0]=50 s2[1]=at s2[2]=es s3[-2]=lay s3[-1]=the s3[0]= s3[1]=eat s3[2]=les s4[-2]=play s4[-1]= s4[0]= s4[1]=reat s4[2]=tles 2d[-2]=no 2d[-1]=no 2d[0]=yes 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=yes ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=no cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=no ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=yes cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|50 w[0]|w[1]=50|Great w[1]|w[2]=Great|Beatles pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|CD pos[0]|pos[1]=CD|CD pos[1]|pos[2]=CD|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|D shaped[0]|shaped[1]=D|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllDigit type[0]|type[1]=AllDigit|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[1..4]=Great w[1..4]=Beatles w[1..4]=Songs w[1..4]=playlist +playlist w[-2]=the w[-1]=50 w[0]=Great w[1]=Beatles w[2]=Songs wl[-2]=the wl[-1]=50 wl[0]=great wl[1]=beatles wl[2]=songs pos[-2]=DT pos[-1]=CD pos[0]=CD pos[1]=CD pos[2]=CD chk[-2]=O chk[-1]=I chk[0]=I chk[1]=I chk[2]=I shape[-2]=LLL shape[-1]=DD shape[0]=ULLLL shape[1]=ULLLLLL shape[2]=ULLLL shaped[-2]=L shaped[-1]=D shaped[0]=UL shaped[1]=UL shaped[2]=UL type[-2]=AllLetter type[-1]=AllDigit type[0]=InitUpper type[1]=InitUpper type[2]=InitUpper p1[-2]=t p1[-1]=5 p1[0]=G p1[1]=B p1[2]=S p2[-2]=th p2[-1]=50 p2[0]=Gr p2[1]=Be p2[2]=So p3[-2]=the p3[-1]= p3[0]=Gre p3[1]=Bea p3[2]=Son p4[-2]= p4[-1]= p4[0]=Grea p4[1]=Beat p4[2]=Song s1[-2]=e s1[-1]=0 s1[0]=t s1[1]=s s1[2]=s s2[-2]=he s2[-1]=50 s2[0]=at s2[1]=es s2[2]=gs s3[-2]=the s3[-1]= s3[0]=eat s3[1]=les s3[2]=ngs s4[-2]= s4[-1]= s4[0]=reat s4[1]=tles s4[2]=ongs 2d[-2]=no 2d[-1]=yes 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=no al[0]=no al[1]=no al[2]=no ad[-2]=no ad[-1]=yes ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=no ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=yes cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=the|50 w[-1]|w[0]=50|Great w[0]|w[1]=Great|Beatles w[1]|w[2]=Beatles|Songs pos[-2]|pos[-1]=DT|CD pos[-1]|pos[0]=CD|CD pos[0]|pos[1]=CD|CD pos[1]|pos[2]=CD|CD chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=L|D shaped[-1]|shaped[0]=D|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=AllLetter|AllDigit type[-1]|type[0]=AllDigit|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=play w[-4..-1]=the w[-4..-1]=50 w[1..4]=Beatles w[1..4]=Songs w[1..4]=playlist w[1..4]=in +playlist w[-2]=50 w[-1]=Great w[0]=Beatles w[1]=Songs w[2]=playlist wl[-2]=50 wl[-1]=great wl[0]=beatles wl[1]=songs wl[2]=playlist pos[-2]=CD pos[-1]=CD pos[0]=CD pos[1]=CD pos[2]=NN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=I chk[2]=O shape[-2]=DD shape[-1]=ULLLL shape[0]=ULLLLLL shape[1]=ULLLL shape[2]=LLLLLLLL shaped[-2]=D shaped[-1]=UL shaped[0]=UL shaped[1]=UL shaped[2]=L type[-2]=AllDigit type[-1]=InitUpper type[0]=InitUpper type[1]=InitUpper type[2]=AllLetter p1[-2]=5 p1[-1]=G p1[0]=B p1[1]=S p1[2]=p p2[-2]=50 p2[-1]=Gr p2[0]=Be p2[1]=So p2[2]=pl p3[-2]= p3[-1]=Gre p3[0]=Bea p3[1]=Son p3[2]=pla p4[-2]= p4[-1]=Grea p4[0]=Beat p4[1]=Song p4[2]=play s1[-2]=0 s1[-1]=t s1[0]=s s1[1]=s s1[2]=t s2[-2]=50 s2[-1]=at s2[0]=es s2[1]=gs s2[2]=st s3[-2]= s3[-1]=eat s3[0]=les s3[1]=ngs s3[2]=ist s4[-2]= s4[-1]=reat s4[0]=tles s4[1]=ongs s4[2]=list 2d[-2]=yes 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=yes iu[0]=yes iu[1]=yes iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=no al[2]=yes ad[-2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=yes cu[0]=yes cu[1]=yes cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=no ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=50|Great w[-1]|w[0]=Great|Beatles w[0]|w[1]=Beatles|Songs w[1]|w[2]=Songs|playlist pos[-2]|pos[-1]=CD|CD pos[-1]|pos[0]=CD|CD pos[0]|pos[1]=CD|CD pos[1]|pos[2]=CD|NN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|I chk[1]|chk[2]=I|O shaped[-2]|shaped[-1]=D|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|UL shaped[1]|shaped[2]=UL|L type[-2]|type[-1]=AllDigit|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|InitUpper type[1]|type[2]=InitUpper|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=50 w[-4..-1]=Great w[1..4]=Songs w[1..4]=playlist w[1..4]=in w[1..4]=Prime +playlist w[-2]=Great w[-1]=Beatles w[0]=Songs w[1]=playlist w[2]=in wl[-2]=great wl[-1]=beatles wl[0]=songs wl[1]=playlist wl[2]=in pos[-2]=CD pos[-1]=CD pos[0]=CD pos[1]=NN pos[2]=IN chk[-2]=I chk[-1]=I chk[0]=I chk[1]=O chk[2]=O shape[-2]=ULLLL shape[-1]=ULLLLLL shape[0]=ULLLL shape[1]=LLLLLLLL shape[2]=LL shaped[-2]=UL shaped[-1]=UL shaped[0]=UL shaped[1]=L shaped[2]=L type[-2]=InitUpper type[-1]=InitUpper type[0]=InitUpper type[1]=AllLetter type[2]=AllLetter p1[-2]=G p1[-1]=B p1[0]=S p1[1]=p p1[2]=i p2[-2]=Gr p2[-1]=Be p2[0]=So p2[1]=pl p2[2]=in p3[-2]=Gre p3[-1]=Bea p3[0]=Son p3[1]=pla p3[2]= p4[-2]=Grea p4[-1]=Beat p4[0]=Song p4[1]=play p4[2]= s1[-2]=t s1[-1]=s s1[0]=s s1[1]=t s1[2]=n s2[-2]=at s2[-1]=es s2[0]=gs s2[1]=st s2[2]=in s3[-2]=eat s3[-1]=les s3[0]=ngs s3[1]=ist s3[2]= s4[-2]=reat s4[-1]=tles s4[0]=ongs s4[1]=list s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=yes iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=no al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=yes cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Great|Beatles w[-1]|w[0]=Beatles|Songs w[0]|w[1]=Songs|playlist w[1]|w[2]=playlist|in pos[-2]|pos[-1]=CD|CD pos[-1]|pos[0]=CD|CD pos[0]|pos[1]=CD|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|I chk[0]|chk[1]=I|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|UL shaped[0]|shaped[1]=UL|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|InitUpper type[0]|type[1]=InitUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=the w[-4..-1]=50 w[-4..-1]=Great w[-4..-1]=Beatles w[1..4]=playlist w[1..4]=in w[1..4]=Prime w[1..4]=Music +O w[-2]=Beatles w[-1]=Songs w[0]=playlist w[1]=in w[2]=Prime wl[-2]=beatles wl[-1]=songs wl[0]=playlist wl[1]=in wl[2]=prime pos[-2]=CD pos[-1]=CD pos[0]=NN pos[1]=IN pos[2]=NNP chk[-2]=I chk[-1]=I chk[0]=O chk[1]=O chk[2]=I shape[-2]=ULLLLLL shape[-1]=ULLLL shape[0]=LLLLLLLL shape[1]=LL shape[2]=ULLLL shaped[-2]=UL shaped[-1]=UL shaped[0]=L shaped[1]=L shaped[2]=UL type[-2]=InitUpper type[-1]=InitUpper type[0]=AllLetter type[1]=AllLetter type[2]=InitUpper p1[-2]=B p1[-1]=S p1[0]=p p1[1]=i p1[2]=P p2[-2]=Be p2[-1]=So p2[0]=pl p2[1]=in p2[2]=Pr p3[-2]=Bea p3[-1]=Son p3[0]=pla p3[1]= p3[2]=Pri p4[-2]=Beat p4[-1]=Song p4[0]=play p4[1]= p4[2]=Prim s1[-2]=s s1[-1]=s s1[0]=t s1[1]=n s1[2]=e s2[-2]=es s2[-1]=gs s2[0]=st s2[1]=in s2[2]=me s3[-2]=les s3[-1]=ngs s3[0]=ist s3[1]= s3[2]=ime s4[-2]=tles s4[-1]=ongs s4[0]=list s4[1]= s4[2]=rime 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=yes iu[0]=no iu[1]=no iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=yes cu[0]=no cu[1]=no cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Beatles|Songs w[-1]|w[0]=Songs|playlist w[0]|w[1]=playlist|in w[1]|w[2]=in|Prime pos[-2]|pos[-1]=CD|CD pos[-1]|pos[0]=CD|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNP chk[-2]|chk[-1]=I|I chk[-1]|chk[0]=I|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|I shaped[-2]|shaped[-1]=UL|UL shaped[-1]|shaped[0]=UL|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|UL type[-2]|type[-1]=InitUpper|InitUpper type[-1]|type[0]=InitUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|InitUpper w[-4..-1]=50 w[-4..-1]=Great w[-4..-1]=Beatles w[-4..-1]=Songs w[1..4]=in w[1..4]=Prime w[1..4]=Music +O w[-2]=Songs w[-1]=playlist w[0]=in w[1]=Prime w[2]=Music wl[-2]=songs wl[-1]=playlist wl[0]=in wl[1]=prime wl[2]=music pos[-2]=CD pos[-1]=NN pos[0]=IN pos[1]=NNP pos[2]=NNP chk[-2]=I chk[-1]=O chk[0]=O chk[1]=I chk[2]=I shape[-2]=ULLLL shape[-1]=LLLLLLLL shape[0]=LL shape[1]=ULLLL shape[2]=ULLLL shaped[-2]=UL shaped[-1]=L shaped[0]=L shaped[1]=UL shaped[2]=UL type[-2]=InitUpper type[-1]=AllLetter type[0]=AllLetter type[1]=InitUpper type[2]=InitUpper p1[-2]=S p1[-1]=p p1[0]=i p1[1]=P p1[2]=M p2[-2]=So p2[-1]=pl p2[0]=in p2[1]=Pr p2[2]=Mu p3[-2]=Son p3[-1]=pla p3[0]= p3[1]=Pri p3[2]=Mus p4[-2]=Song p4[-1]=play p4[0]= p4[1]=Prim p4[2]=Musi s1[-2]=s s1[-1]=t s1[0]=n s1[1]=e s1[2]=c s2[-2]=gs s2[-1]=st s2[0]=in s2[1]=me s2[2]=ic s3[-2]=ngs s3[-1]=ist s3[0]= s3[1]=ime s3[2]=sic s4[-2]=ongs s4[-1]=list s4[0]= s4[1]=rime s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=yes iu[2]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=no al[2]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=yes cu[2]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=Songs|playlist w[-1]|w[0]=playlist|in w[0]|w[1]=in|Prime w[1]|w[2]=Prime|Music pos[-2]|pos[-1]=CD|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNP pos[1]|pos[2]=NNP|NNP chk[-2]|chk[-1]=I|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|I chk[1]|chk[2]=I|I shaped[-2]|shaped[-1]=UL|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|UL shaped[1]|shaped[2]=UL|UL type[-2]|type[-1]=InitUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|InitUpper type[1]|type[2]=InitUpper|InitUpper w[-4..-1]=Great w[-4..-1]=Beatles w[-4..-1]=Songs w[-4..-1]=playlist w[1..4]=Prime w[1..4]=Music +service w[-2]=playlist w[-1]=in w[0]=Prime w[1]=Music wl[-2]=playlist wl[-1]=in wl[0]=prime wl[1]=music pos[-2]=NN pos[-1]=IN pos[0]=NNP pos[1]=NNP chk[-2]=O chk[-1]=O chk[0]=I chk[1]=I shape[-2]=LLLLLLLL shape[-1]=LL shape[0]=ULLLL shape[1]=ULLLL shaped[-2]=L shaped[-1]=L shaped[0]=UL shaped[1]=UL type[-2]=AllLetter type[-1]=AllLetter type[0]=InitUpper type[1]=InitUpper p1[-2]=p p1[-1]=i p1[0]=P p1[1]=M p2[-2]=pl p2[-1]=in p2[0]=Pr p2[1]=Mu p3[-2]=pla p3[-1]= p3[0]=Pri p3[1]=Mus p4[-2]=play p4[-1]= p4[0]=Prim p4[1]=Musi s1[-2]=t s1[-1]=n s1[0]=e s1[1]=c s2[-2]=st s2[-1]=in s2[0]=me s2[1]=ic s3[-2]=ist s3[-1]= s3[0]=ime s3[1]=sic s4[-2]=list s4[-1]= s4[0]=rime s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=yes iu[1]=yes au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=no al[1]=no ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=yes cu[1]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=playlist|in w[-1]|w[0]=in|Prime w[0]|w[1]=Prime|Music pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNP pos[0]|pos[1]=NNP|NNP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|I chk[0]|chk[1]=I|I shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|UL shaped[0]|shaped[1]=UL|UL type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|InitUpper type[0]|type[1]=InitUpper|InitUpper w[-4..-1]=Beatles w[-4..-1]=Songs w[-4..-1]=playlist w[-4..-1]=in w[1..4]=Music +service w[-2]=in w[-1]=Prime w[0]=Music wl[-2]=in wl[-1]=prime wl[0]=music pos[-2]=IN pos[-1]=NNP pos[0]=NNP chk[-2]=O chk[-1]=I chk[0]=I shape[-2]=LL shape[-1]=ULLLL shape[0]=ULLLL shaped[-2]=L shaped[-1]=UL shaped[0]=UL type[-2]=AllLetter type[-1]=InitUpper type[0]=InitUpper p1[-2]=i p1[-1]=P p1[0]=M p2[-2]=in p2[-1]=Pr p2[0]=Mu p3[-2]= p3[-1]=Pri p3[0]=Mus p4[-2]= p4[-1]=Prim p4[0]=Musi s1[-2]=n s1[-1]=e s1[0]=c s2[-2]=in s2[-1]=me s2[0]=ic s3[-2]= s3[-1]=ime s3[0]=sic s4[-2]= s4[-1]=rime s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=yes iu[0]=yes au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=no al[0]=no ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=yes cu[0]=yes cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=in|Prime w[-1]|w[0]=Prime|Music pos[-2]|pos[-1]=IN|NNP pos[-1]|pos[0]=NNP|NNP chk[-2]|chk[-1]=O|I chk[-1]|chk[0]=I|I shaped[-2]|shaped[-1]=L|UL shaped[-1]|shaped[0]=UL|UL type[-2]|type[-1]=AllLetter|InitUpper type[-1]|type[0]=InitUpper|InitUpper w[-4..-1]=Songs w[-4..-1]=playlist w[-4..-1]=in w[-4..-1]=Prime __EOS__ + +O w[0]=continue w[1]=playing wl[0]=continue wl[1]=playing pos[0]=VB pos[1]=VBG chk[0]=O chk[1]=O shape[0]=LLLLLLLL shape[1]=LLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=c p1[1]=p p2[0]=co p2[1]=pl p3[0]=con p3[1]=pla p4[0]=cont p4[1]=play s1[0]=e s1[1]=g s2[0]=ue s2[1]=ng s3[0]=nue s3[1]=ing s4[0]=inue s4[1]=ying 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=continue|playing pos[0]|pos[1]=VB|VBG chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=playing __BOS__ +O w[-1]=continue w[0]=playing wl[-1]=continue wl[0]=playing pos[-1]=VB pos[0]=VBG chk[-1]=O chk[0]=O shape[-1]=LLLLLLLL shape[0]=LLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=c p1[0]=p p2[-1]=co p2[0]=pl p3[-1]=con p3[0]=pla p4[-1]=cont p4[0]=play s1[-1]=e s1[0]=g s2[-1]=ue s2[0]=ng s3[-1]=nue s3[0]=ing s4[-1]=inue s4[0]=ying 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=continue|playing pos[-1]|pos[0]=VB|VBG chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=continue __EOS__ + +O w[0]=start w[1]=music w[2]=again wl[0]=start wl[1]=music wl[2]=again pos[0]=VB pos[1]=NN pos[2]=RB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LLLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=m p1[2]=a p2[0]=st p2[1]=mu p2[2]=ag p3[0]=sta p3[1]=mus p3[2]=aga p4[0]=star p4[1]=musi p4[2]=agai s1[0]=t s1[1]=c s1[2]=n s2[0]=rt s2[1]=ic s2[2]=in s3[0]=art s3[1]=sic s3[2]=ain s4[0]=tart s4[1]=usic s4[2]=gain 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=start|music w[1]|w[2]=music|again pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|RB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=music w[1..4]=again __BOS__ +O w[-1]=start w[0]=music w[1]=again wl[-1]=start wl[0]=music wl[1]=again pos[-1]=VB pos[0]=NN pos[1]=RB chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLL shape[0]=LLLLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=s p1[0]=m p1[1]=a p2[-1]=st p2[0]=mu p2[1]=ag p3[-1]=sta p3[0]=mus p3[1]=aga p4[-1]=star p4[0]=musi p4[1]=agai s1[-1]=t s1[0]=c s1[1]=n s2[-1]=rt s2[0]=ic s2[1]=in s3[-1]=art s3[0]=sic s3[1]=ain s4[-1]=tart s4[0]=usic s4[1]=gain 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=start|music w[0]|w[1]=music|again pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|RB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=start w[1..4]=again +O w[-2]=start w[-1]=music w[0]=again wl[-2]=start wl[-1]=music wl[0]=again pos[-2]=VB pos[-1]=NN pos[0]=RB chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LLLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=m p1[0]=a p2[-2]=st p2[-1]=mu p2[0]=ag p3[-2]=sta p3[-1]=mus p3[0]=aga p4[-2]=star p4[-1]=musi p4[0]=agai s1[-2]=t s1[-1]=c s1[0]=n s2[-2]=rt s2[-1]=ic s2[0]=in s3[-2]=art s3[-1]=sic s3[0]=ain s4[-2]=tart s4[-1]=usic s4[0]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=start|music w[-1]|w[0]=music|again pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=start w[-4..-1]=music __EOS__ + +O w[0]=resume wl[0]=resume pos[0]=VB chk[0]=O shape[0]=LLLLLL shaped[0]=L type[0]=AllLetter p1[0]=r p2[0]=re p3[0]=res p4[0]=resu s1[0]=e s2[0]=me s3[0]=ume s4[0]=sume 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=resume w[1]=it wl[0]=resume wl[1]=it pos[0]=VB pos[1]=PRP chk[0]=O chk[1]=O shape[0]=LLLLLL shape[1]=LL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=r p1[1]=i p2[0]=re p2[1]=it p3[0]=res p3[1]= p4[0]=resu p4[1]= s1[0]=e s1[1]=t s2[0]=me s2[1]=it s3[0]=ume s3[1]= s4[0]=sume s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=resume|it pos[0]|pos[1]=VB|PRP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=it __BOS__ +O w[-1]=resume w[0]=it wl[-1]=resume wl[0]=it pos[-1]=VB pos[0]=PRP chk[-1]=O chk[0]=O shape[-1]=LLLLLL shape[0]=LL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=r p1[0]=i p2[-1]=re p2[0]=it p3[-1]=res p3[0]= p4[-1]=resu p4[0]= s1[-1]=e s1[0]=t s2[-1]=me s2[0]=it s3[-1]=ume s3[0]= s4[-1]=sume s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=resume|it pos[-1]|pos[0]=VB|PRP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=resume __EOS__ + +O w[0]=resume w[1]=playing wl[0]=resume wl[1]=playing pos[0]=VB pos[1]=VBG chk[0]=O chk[1]=O shape[0]=LLLLLL shape[1]=LLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=r p1[1]=p p2[0]=re p2[1]=pl p3[0]=res p3[1]=pla p4[0]=resu p4[1]=play s1[0]=e s1[1]=g s2[0]=me s2[1]=ng s3[0]=ume s3[1]=ing s4[0]=sume s4[1]=ying 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=resume|playing pos[0]|pos[1]=VB|VBG chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=playing __BOS__ +O w[-1]=resume w[0]=playing wl[-1]=resume wl[0]=playing pos[-1]=VB pos[0]=VBG chk[-1]=O chk[0]=O shape[-1]=LLLLLL shape[0]=LLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=r p1[0]=p p2[-1]=re p2[0]=pl p3[-1]=res p3[0]=pla p4[-1]=resu p4[0]=play s1[-1]=e s1[0]=g s2[-1]=me s2[0]=ng s3[-1]=ume s3[0]=ing s4[-1]=sume s4[0]=ying 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=resume|playing pos[-1]|pos[0]=VB|VBG chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=resume __EOS__ + +O w[0]=continue w[1]=the w[2]=music wl[0]=continue wl[1]=the wl[2]=music pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLLLL shape[1]=LLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=t p1[2]=m p2[0]=co p2[1]=th p2[2]=mu p3[0]=con p3[1]=the p3[2]=mus p4[0]=cont p4[1]= p4[2]=musi s1[0]=e s1[1]=e s1[2]=c s2[0]=ue s2[1]=he s2[2]=ic s3[0]=nue s3[1]=the s3[2]=sic s4[0]=inue s4[1]= s4[2]=usic 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=continue|the w[1]|w[2]=the|music pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=music __BOS__ +O w[-1]=continue w[0]=the w[1]=music wl[-1]=continue wl[0]=the wl[1]=music pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLLLL shape[0]=LLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=c p1[0]=t p1[1]=m p2[-1]=co p2[0]=th p2[1]=mu p3[-1]=con p3[0]=the p3[1]=mus p4[-1]=cont p4[0]= p4[1]=musi s1[-1]=e s1[0]=e s1[1]=c s2[-1]=ue s2[0]=he s2[1]=ic s3[-1]=nue s3[0]=the s3[1]=sic s4[-1]=inue s4[0]= s4[1]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=continue|the w[0]|w[1]=the|music pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=continue w[1..4]=music +O w[-2]=continue w[-1]=the w[0]=music wl[-2]=continue wl[-1]=the wl[0]=music pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLLLL shape[-1]=LLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=c p1[-1]=t p1[0]=m p2[-2]=co p2[-1]=th p2[0]=mu p3[-2]=con p3[-1]=the p3[0]=mus p4[-2]=cont p4[-1]= p4[0]=musi s1[-2]=e s1[-1]=e s1[0]=c s2[-2]=ue s2[-1]=he s2[0]=ic s3[-2]=nue s3[-1]=the s3[0]=sic s4[-2]=inue s4[-1]= s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=continue|the w[-1]|w[0]=the|music pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=continue w[-4..-1]=the __EOS__ + +O w[0]=continue wl[0]=continue pos[0]=VB chk[0]=O shape[0]=LLLLLLLL shaped[0]=L type[0]=AllLetter p1[0]=c p2[0]=co p3[0]=con p4[0]=cont s1[0]=e s2[0]=ue s3[0]=nue s4[0]=inue 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=resume w[1]=music wl[0]=resume wl[1]=music pos[0]=VB pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLLLL shape[1]=LLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=r p1[1]=m p2[0]=re p2[1]=mu p3[0]=res p3[1]=mus p4[0]=resu p4[1]=musi s1[0]=e s1[1]=c s2[0]=me s2[1]=ic s3[0]=ume s3[1]=sic s4[0]=sume s4[1]=usic 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=resume|music pos[0]|pos[1]=VB|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=music __BOS__ +O w[-1]=resume w[0]=music wl[-1]=resume wl[0]=music pos[-1]=VB pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLLLL shape[0]=LLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=r p1[0]=m p2[-1]=re p2[0]=mu p3[-1]=res p3[0]=mus p4[-1]=resu p4[0]=musi s1[-1]=e s1[0]=c s2[-1]=me s2[0]=ic s3[-1]=ume s3[0]=sic s4[-1]=sume s4[0]=usic 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=resume|music pos[-1]|pos[0]=VB|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=resume __EOS__ + +O w[0]=restart w[1]=music wl[0]=restart wl[1]=music pos[0]=VB pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLLLLL shape[1]=LLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=r p1[1]=m p2[0]=re p2[1]=mu p3[0]=res p3[1]=mus p4[0]=rest p4[1]=musi s1[0]=t s1[1]=c s2[0]=rt s2[1]=ic s3[0]=art s3[1]=sic s4[0]=tart s4[1]=usic 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=restart|music pos[0]|pos[1]=VB|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=music __BOS__ +O w[-1]=restart w[0]=music wl[-1]=restart wl[0]=music pos[-1]=VB pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLLLLL shape[0]=LLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=r p1[0]=m p2[-1]=re p2[0]=mu p3[-1]=res p3[0]=mus p4[-1]=rest p4[0]=musi s1[-1]=t s1[0]=c s2[-1]=rt s2[0]=ic s3[-1]=art s3[0]=sic s4[-1]=tart s4[0]=usic 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=restart|music pos[-1]|pos[0]=VB|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=restart __EOS__ + +O w[0]=resume w[1]=this w[2]=song wl[0]=resume wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=t p1[2]=s p2[0]=re p2[1]=th p2[2]=so p3[0]=res p3[1]=thi p3[2]=son p4[0]=resu p4[1]=this p4[2]=song s1[0]=e s1[1]=s s1[2]=g s2[0]=me s2[1]=is s2[2]=ng s3[0]=ume s3[1]=his s3[2]=ong s4[0]=sume s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=resume|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song __BOS__ +O w[-1]=resume w[0]=this w[1]=song wl[-1]=resume wl[0]=this wl[1]=song pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=r p1[0]=t p1[1]=s p2[-1]=re p2[0]=th p2[1]=so p3[-1]=res p3[0]=thi p3[1]=son p4[-1]=resu p4[0]=this p4[1]=song s1[-1]=e s1[0]=s s1[1]=g s2[-1]=me s2[0]=is s2[1]=ng s3[-1]=ume s3[0]=his s3[1]=ong s4[-1]=sume s4[0]=this s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=resume|this w[0]|w[1]=this|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=resume w[1..4]=song +O w[-2]=resume w[-1]=this w[0]=song wl[-2]=resume wl[-1]=this wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=r p1[-1]=t p1[0]=s p2[-2]=re p2[-1]=th p2[0]=so p3[-2]=res p3[-1]=thi p3[0]=son p4[-2]=resu p4[-1]=this p4[0]=song s1[-2]=e s1[-1]=s s1[0]=g s2[-2]=me s2[-1]=is s2[0]=ng s3[-2]=ume s3[-1]=his s3[0]=ong s4[-2]=sume s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=resume|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=resume w[-4..-1]=this __EOS__ + +O w[0]=can w[1]=you w[2]=pause wl[0]=can wl[1]=you wl[2]=pause pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=p p2[0]=ca p2[1]=yo p2[2]=pa p3[0]=can p3[1]=you p3[2]=pau p4[0]= p4[1]= p4[2]=paus s1[0]=n s1[1]=u s1[2]=e s2[0]=an s2[1]=ou s2[2]=se s3[0]=can s3[1]=you s3[2]=use s4[0]= s4[1]= s4[2]=ause 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|pause pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=pause w[1..4]=it __BOS__ +O w[-1]=can w[0]=you w[1]=pause w[2]=it wl[-1]=can wl[0]=you wl[1]=pause wl[2]=it pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=p p1[2]=i p2[-1]=ca p2[0]=yo p2[1]=pa p2[2]=it p3[-1]=can p3[0]=you p3[1]=pau p3[2]= p4[-1]= p4[0]= p4[1]=paus p4[2]= s1[-1]=n s1[0]=u s1[1]=e s1[2]=t s2[-1]=an s2[0]=ou s2[1]=se s2[2]=it s3[-1]=can s3[0]=you s3[1]=use s3[2]= s4[-1]= s4[0]= s4[1]=ause s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|pause w[1]|w[2]=pause|it pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=pause w[1..4]=it +O w[-2]=can w[-1]=you w[0]=pause w[1]=it wl[-2]=can wl[-1]=you wl[0]=pause wl[1]=it pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLLL shape[1]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=c p1[-1]=y p1[0]=p p1[1]=i p2[-2]=ca p2[-1]=yo p2[0]=pa p2[1]=it p3[-2]=can p3[-1]=you p3[0]=pau p3[1]= p4[-2]= p4[-1]= p4[0]=paus p4[1]= s1[-2]=n s1[-1]=u s1[0]=e s1[1]=t s2[-2]=an s2[-1]=ou s2[0]=se s2[1]=it s3[-2]=can s3[-1]=you s3[0]=use s3[1]= s4[-2]= s4[-1]= s4[0]=ause s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|pause w[0]|w[1]=pause|it pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=it +O w[-2]=you w[-1]=pause w[0]=it wl[-2]=you wl[-1]=pause wl[0]=it pos[-2]=PRP pos[-1]=VB pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=y p1[-1]=p p1[0]=i p2[-2]=yo p2[-1]=pa p2[0]=it p3[-2]=you p3[-1]=pau p3[0]= p4[-2]= p4[-1]=paus p4[0]= s1[-2]=u s1[-1]=e s1[0]=t s2[-2]=ou s2[-1]=se s2[0]=it s3[-2]=you s3[-1]=use s3[0]= s4[-2]= s4[-1]=ause s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=you|pause w[-1]|w[0]=pause|it pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=pause __EOS__ + +O w[0]=pause w[1]=it wl[0]=pause wl[1]=it pos[0]=VB pos[1]=PRP chk[0]=O chk[1]=O shape[0]=LLLLL shape[1]=LL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=i p2[0]=pa p2[1]=it p3[0]=pau p3[1]= p4[0]=paus p4[1]= s1[0]=e s1[1]=t s2[0]=se s2[1]=it s3[0]=use s3[1]= s4[0]=ause s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=pause|it pos[0]|pos[1]=VB|PRP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=it __BOS__ +O w[-1]=pause w[0]=it wl[-1]=pause wl[0]=it pos[-1]=VB pos[0]=PRP chk[-1]=O chk[0]=O shape[-1]=LLLLL shape[0]=LL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=i p2[-1]=pa p2[0]=it p3[-1]=pau p3[0]= p4[-1]=paus p4[0]= s1[-1]=e s1[0]=t s2[-1]=se s2[0]=it s3[-1]=use s3[0]= s4[-1]=ause s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=pause|it pos[-1]|pos[0]=VB|PRP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=pause __EOS__ + +O w[0]=pause w[1]=playing wl[0]=pause wl[1]=playing pos[0]=VB pos[1]=VBG chk[0]=O chk[1]=O shape[0]=LLLLL shape[1]=LLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=p p2[0]=pa p2[1]=pl p3[0]=pau p3[1]=pla p4[0]=paus p4[1]=play s1[0]=e s1[1]=g s2[0]=se s2[1]=ng s3[0]=use s3[1]=ing s4[0]=ause s4[1]=ying 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=pause|playing pos[0]|pos[1]=VB|VBG chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=playing __BOS__ +O w[-1]=pause w[0]=playing wl[-1]=pause wl[0]=playing pos[-1]=VB pos[0]=VBG chk[-1]=O chk[0]=O shape[-1]=LLLLL shape[0]=LLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=p p2[-1]=pa p2[0]=pl p3[-1]=pau p3[0]=pla p4[-1]=paus p4[0]=play s1[-1]=e s1[0]=g s2[-1]=se s2[0]=ng s3[-1]=use s3[0]=ing s4[-1]=ause s4[0]=ying 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=pause|playing pos[-1]|pos[0]=VB|VBG chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=pause __EOS__ + +O w[0]=pause w[1]=song wl[0]=pause wl[1]=song pos[0]=VB pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=s p2[0]=pa p2[1]=so p3[0]=pau p3[1]=son p4[0]=paus p4[1]=song s1[0]=e s1[1]=g s2[0]=se s2[1]=ng s3[0]=use s3[1]=ong s4[0]=ause s4[1]=song 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=pause|song pos[0]|pos[1]=VB|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=song __BOS__ +O w[-1]=pause w[0]=song wl[-1]=pause wl[0]=song pos[-1]=VB pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=s p2[-1]=pa p2[0]=so p3[-1]=pau p3[0]=son p4[-1]=paus p4[0]=song s1[-1]=e s1[0]=g s2[-1]=se s2[0]=ng s3[-1]=use s3[0]=ong s4[-1]=ause s4[0]=song 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=pause|song pos[-1]|pos[0]=VB|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=pause __EOS__ + +O w[0]=please w[1]=pause wl[0]=please wl[1]=pause pos[0]=UH pos[1]=VB chk[0]=O chk[1]=O shape[0]=LLLLLL shape[1]=LLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=p p2[0]=pl p2[1]=pa p3[0]=ple p3[1]=pau p4[0]=plea p4[1]=paus s1[0]=e s1[1]=e s2[0]=se s2[1]=se s3[0]=ase s3[1]=use s4[0]=ease s4[1]=ause 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=please|pause pos[0]|pos[1]=UH|VB chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=pause __BOS__ +O w[-1]=please w[0]=pause wl[-1]=please wl[0]=pause pos[-1]=UH pos[0]=VB chk[-1]=O chk[0]=O shape[-1]=LLLLLL shape[0]=LLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=p p2[-1]=pl p2[0]=pa p3[-1]=ple p3[0]=pau p4[-1]=plea p4[0]=paus s1[-1]=e s1[0]=e s2[-1]=se s2[0]=se s3[-1]=ase s3[0]=use s4[-1]=ease s4[0]=ause 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=please|pause pos[-1]|pos[0]=UH|VB chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=please __EOS__ + +O w[0]=pause wl[0]=pause pos[0]=VB chk[0]=O shape[0]=LLLLL shaped[0]=L type[0]=AllLetter p1[0]=p p2[0]=pa p3[0]=pau p4[0]=paus s1[0]=e s2[0]=se s3[0]=use s4[0]=ause 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=put w[1]=it w[2]=on wl[0]=put wl[1]=it wl[2]=on pos[0]=VB pos[1]=PRP pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=i p1[2]=o p2[0]=pu p2[1]=it p2[2]=on p3[0]=put p3[1]= p3[2]= p4[0]= p4[1]= p4[2]= s1[0]=t s1[1]=t s1[2]=n s2[0]=ut s2[1]=it s2[2]=on s3[0]=put s3[1]= s3[2]= s4[0]= s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|it w[1]|w[2]=it|on pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=on w[1..4]=pause __BOS__ +O w[-1]=put w[0]=it w[1]=on w[2]=pause wl[-1]=put wl[0]=it wl[1]=on wl[2]=pause pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=i p1[1]=o p1[2]=p p2[-1]=pu p2[0]=it p2[1]=on p2[2]=pa p3[-1]=put p3[0]= p3[1]= p3[2]=pau p4[-1]= p4[0]= p4[1]= p4[2]=paus s1[-1]=t s1[0]=t s1[1]=n s1[2]=e s2[-1]=ut s2[0]=it s2[1]=on s2[2]=se s3[-1]=put s3[0]= s3[1]= s3[2]=use s4[-1]= s4[0]= s4[1]= s4[2]=ause 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|it w[0]|w[1]=it|on w[1]|w[2]=on|pause pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=on w[1..4]=pause +O w[-2]=put w[-1]=it w[0]=on w[1]=pause wl[-2]=put wl[-1]=it wl[0]=on wl[1]=pause pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LL shape[0]=LL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=i p1[0]=o p1[1]=p p2[-2]=pu p2[-1]=it p2[0]=on p2[1]=pa p3[-2]=put p3[-1]= p3[0]= p3[1]=pau p4[-2]= p4[-1]= p4[0]= p4[1]=paus s1[-2]=t s1[-1]=t s1[0]=n s1[1]=e s2[-2]=ut s2[-1]=it s2[0]=on s2[1]=se s3[-2]=put s3[-1]= s3[0]= s3[1]=use s4[-2]= s4[-1]= s4[0]= s4[1]=ause 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=put|it w[-1]|w[0]=it|on w[0]|w[1]=on|pause pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=it w[1..4]=pause +O w[-2]=it w[-1]=on w[0]=pause wl[-2]=it wl[-1]=on wl[0]=pause pos[-2]=PRP pos[-1]=IN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=i p1[-1]=o p1[0]=p p2[-2]=it p2[-1]=on p2[0]=pa p3[-2]= p3[-1]= p3[0]=pau p4[-2]= p4[-1]= p4[0]=paus s1[-2]=t s1[-1]=n s1[0]=e s2[-2]=it s2[-1]=on s2[0]=se s3[-2]= s3[-1]= s3[0]=use s4[-2]= s4[-1]= s4[0]=ause 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=it|on w[-1]|w[0]=on|pause pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=it w[-4..-1]=on __EOS__ + +O w[0]=pause w[1]=this w[2]=song wl[0]=pause wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pa p2[1]=th p2[2]=so p3[0]=pau p3[1]=thi p3[2]=son p4[0]=paus p4[1]=this p4[2]=song s1[0]=e s1[1]=s s1[2]=g s2[0]=se s2[1]=is s2[2]=ng s3[0]=use s3[1]=his s3[2]=ong s4[0]=ause s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=pause|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song __BOS__ +O w[-1]=pause w[0]=this w[1]=song wl[-1]=pause wl[0]=this wl[1]=song pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=t p1[1]=s p2[-1]=pa p2[0]=th p2[1]=so p3[-1]=pau p3[0]=thi p3[1]=son p4[-1]=paus p4[0]=this p4[1]=song s1[-1]=e s1[0]=s s1[1]=g s2[-1]=se s2[0]=is s2[1]=ng s3[-1]=use s3[0]=his s3[1]=ong s4[-1]=ause s4[0]=this s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=pause|this w[0]|w[1]=this|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=pause w[1..4]=song +O w[-2]=pause w[-1]=this w[0]=song wl[-2]=pause wl[-1]=this wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p2[-2]=pa p2[-1]=th p2[0]=so p3[-2]=pau p3[-1]=thi p3[0]=son p4[-2]=paus p4[-1]=this p4[0]=song s1[-2]=e s1[-1]=s s1[0]=g s2[-2]=se s2[-1]=is s2[0]=ng s3[-2]=use s3[-1]=his s3[0]=ong s4[-2]=ause s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=pause|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=pause w[-4..-1]=this __EOS__ + +O w[0]=skip w[1]=to w[2]=the wl[0]=skip wl[1]=to wl[2]=the pos[0]=VB pos[1]=IN pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=t p2[0]=sk p2[1]=to p2[2]=th p3[0]=ski p3[1]= p3[2]=the p4[0]=skip p4[1]= p4[2]= s1[0]=p s1[1]=o s1[2]=e s2[0]=ip s2[1]=to s2[2]=he s3[0]=kip s3[1]= s3[2]=the s4[0]=skip s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=skip|to w[1]|w[2]=to|the pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=the w[1..4]=previous w[1..4]=song __BOS__ +O w[-1]=skip w[0]=to w[1]=the w[2]=previous wl[-1]=skip wl[0]=to wl[1]=the wl[2]=previous pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLL shape[2]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=s p1[0]=t p1[1]=t p1[2]=p p2[-1]=sk p2[0]=to p2[1]=th p2[2]=pr p3[-1]=ski p3[0]= p3[1]=the p3[2]=pre p4[-1]=skip p4[0]= p4[1]= p4[2]=prev s1[-1]=p s1[0]=o s1[1]=e s1[2]=s s2[-1]=ip s2[0]=to s2[1]=he s2[2]=us s3[-1]=kip s3[0]= s3[1]=the s3[2]=ous s4[-1]=skip s4[0]= s4[1]= s4[2]=ious 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=skip|to w[0]|w[1]=to|the w[1]|w[2]=the|previous pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=skip w[1..4]=the w[1..4]=previous w[1..4]=song +O w[-2]=skip w[-1]=to w[0]=the w[1]=previous w[2]=song wl[-2]=skip wl[-1]=to wl[0]=the wl[1]=previous wl[2]=song pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=JJ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLLLLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=t p1[0]=t p1[1]=p p1[2]=s p2[-2]=sk p2[-1]=to p2[0]=th p2[1]=pr p2[2]=so p3[-2]=ski p3[-1]= p3[0]=the p3[1]=pre p3[2]=son p4[-2]=skip p4[-1]= p4[0]= p4[1]=prev p4[2]=song s1[-2]=p s1[-1]=o s1[0]=e s1[1]=s s1[2]=g s2[-2]=ip s2[-1]=to s2[0]=he s2[1]=us s2[2]=ng s3[-2]=kip s3[-1]= s3[0]=the s3[1]=ous s3[2]=ong s4[-2]=skip s4[-1]= s4[0]= s4[1]=ious s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=skip|to w[-1]|w[0]=to|the w[0]|w[1]=the|previous w[1]|w[2]=previous|song pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to w[1..4]=previous w[1..4]=song +O w[-2]=to w[-1]=the w[0]=previous w[1]=song wl[-2]=to wl[-1]=the wl[0]=previous wl[1]=song pos[-2]=IN pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLL shape[0]=LLLLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=t p1[0]=p p1[1]=s p2[-2]=to p2[-1]=th p2[0]=pr p2[1]=so p3[-2]= p3[-1]=the p3[0]=pre p3[1]=son p4[-2]= p4[-1]= p4[0]=prev p4[1]=song s1[-2]=o s1[-1]=e s1[0]=s s1[1]=g s2[-2]=to s2[-1]=he s2[0]=us s2[1]=ng s3[-2]= s3[-1]=the s3[0]=ous s3[1]=ong s4[-2]= s4[-1]= s4[0]=ious s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|previous w[0]|w[1]=previous|song pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to w[-4..-1]=the w[1..4]=song +O w[-2]=the w[-1]=previous w[0]=song wl[-2]=the wl[-1]=previous wl[0]=song pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=p p1[0]=s p2[-2]=th p2[-1]=pr p2[0]=so p3[-2]=the p3[-1]=pre p3[0]=son p4[-2]= p4[-1]=prev p4[0]=song s1[-2]=e s1[-1]=s s1[0]=g s2[-2]=he s2[-1]=us s2[0]=ng s3[-2]=the s3[-1]=ous s3[0]=ong s4[-2]= s4[-1]=ious s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|previous w[-1]|w[0]=previous|song pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to w[-4..-1]=the w[-4..-1]=previous __EOS__ + +O w[0]=go w[1]=back wl[0]=go wl[1]=back pos[0]=VB pos[1]=RB chk[0]=O chk[1]=O shape[0]=LL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=g p1[1]=b p2[0]=go p2[1]=ba p3[0]= p3[1]=bac p4[0]= p4[1]=back s1[0]=o s1[1]=k s2[0]=go s2[1]=ck s3[0]= s3[1]=ack s4[0]= s4[1]=back 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=go|back pos[0]|pos[1]=VB|RB chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=back __BOS__ +O w[-1]=go w[0]=back wl[-1]=go wl[0]=back pos[-1]=VB pos[0]=RB chk[-1]=O chk[0]=O shape[-1]=LL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=g p1[0]=b p2[-1]=go p2[0]=ba p3[-1]= p3[0]=bac p4[-1]= p4[0]=back s1[-1]=o s1[0]=k s2[-1]=go s2[0]=ck s3[-1]= s3[0]=ack s4[-1]= s4[0]=back 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=go|back pos[-1]|pos[0]=VB|RB chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=go __EOS__ + +O w[0]=skip w[1]=backward wl[0]=skip wl[1]=backward pos[0]=VB pos[1]=RB chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=s p1[1]=b p2[0]=sk p2[1]=ba p3[0]=ski p3[1]=bac p4[0]=skip p4[1]=back s1[0]=p s1[1]=d s2[0]=ip s2[1]=rd s3[0]=kip s3[1]=ard s4[0]=skip s4[1]=ward 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=skip|backward pos[0]|pos[1]=VB|RB chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=backward __BOS__ +O w[-1]=skip w[0]=backward wl[-1]=skip wl[0]=backward pos[-1]=VB pos[0]=RB chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=s p1[0]=b p2[-1]=sk p2[0]=ba p3[-1]=ski p3[0]=bac p4[-1]=skip p4[0]=back s1[-1]=p s1[0]=d s2[-1]=ip s2[0]=rd s3[-1]=kip s3[0]=ard s4[-1]=skip s4[0]=ward 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=skip|backward pos[-1]|pos[0]=VB|RB chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip __EOS__ + +O w[0]=go w[1]=back w[2]=to wl[0]=go wl[1]=back wl[2]=to pos[0]=VB pos[1]=RB pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=g p1[1]=b p1[2]=t p2[0]=go p2[1]=ba p2[2]=to p3[0]= p3[1]=bac p3[2]= p4[0]= p4[1]=back p4[2]= s1[0]=o s1[1]=k s1[2]=o s2[0]=go s2[1]=ck s2[2]=to s3[0]= s3[1]=ack s3[2]= s4[0]= s4[1]=back s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=go|back w[1]|w[2]=back|to pos[0]|pos[1]=VB|RB pos[1]|pos[2]=RB|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=back w[1..4]=to w[1..4]=the w[1..4]=previous __BOS__ +O w[-1]=go w[0]=back w[1]=to w[2]=the wl[-1]=go wl[0]=back wl[1]=to wl[2]=the pos[-1]=VB pos[0]=RB pos[1]=IN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LL shape[0]=LLLL shape[1]=LL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=g p1[0]=b p1[1]=t p1[2]=t p2[-1]=go p2[0]=ba p2[1]=to p2[2]=th p3[-1]= p3[0]=bac p3[1]= p3[2]=the p4[-1]= p4[0]=back p4[1]= p4[2]= s1[-1]=o s1[0]=k s1[1]=o s1[2]=e s2[-1]=go s2[0]=ck s2[1]=to s2[2]=he s3[-1]= s3[0]=ack s3[1]= s3[2]=the s4[-1]= s4[0]=back s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=go|back w[0]|w[1]=back|to w[1]|w[2]=to|the pos[-1]|pos[0]=VB|RB pos[0]|pos[1]=RB|IN pos[1]|pos[2]=IN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[1..4]=to w[1..4]=the w[1..4]=previous w[1..4]=station +O w[-2]=go w[-1]=back w[0]=to w[1]=the w[2]=previous wl[-2]=go wl[-1]=back wl[0]=to wl[1]=the wl[2]=previous pos[-2]=VB pos[-1]=RB pos[0]=IN pos[1]=DT pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LL shape[1]=LLL shape[2]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=g p1[-1]=b p1[0]=t p1[1]=t p1[2]=p p2[-2]=go p2[-1]=ba p2[0]=to p2[1]=th p2[2]=pr p3[-2]= p3[-1]=bac p3[0]= p3[1]=the p3[2]=pre p4[-2]= p4[-1]=back p4[0]= p4[1]= p4[2]=prev s1[-2]=o s1[-1]=k s1[0]=o s1[1]=e s1[2]=s s2[-2]=go s2[-1]=ck s2[0]=to s2[1]=he s2[2]=us s3[-2]= s3[-1]=ack s3[0]= s3[1]=the s3[2]=ous s4[-2]= s4[-1]=back s4[0]= s4[1]= s4[2]=ious 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=go|back w[-1]|w[0]=back|to w[0]|w[1]=to|the w[1]|w[2]=the|previous pos[-2]|pos[-1]=VB|RB pos[-1]|pos[0]=RB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=back w[1..4]=the w[1..4]=previous w[1..4]=station +O w[-2]=back w[-1]=to w[0]=the w[1]=previous w[2]=station wl[-2]=back wl[-1]=to wl[0]=the wl[1]=previous wl[2]=station pos[-2]=RB pos[-1]=IN pos[0]=DT pos[1]=JJ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLLLLLL shape[2]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=b p1[-1]=t p1[0]=t p1[1]=p p1[2]=s p2[-2]=ba p2[-1]=to p2[0]=th p2[1]=pr p2[2]=st p3[-2]=bac p3[-1]= p3[0]=the p3[1]=pre p3[2]=sta p4[-2]=back p4[-1]= p4[0]= p4[1]=prev p4[2]=stat s1[-2]=k s1[-1]=o s1[0]=e s1[1]=s s1[2]=n s2[-2]=ck s2[-1]=to s2[0]=he s2[1]=us s2[2]=on s3[-2]=ack s3[-1]= s3[0]=the s3[1]=ous s3[2]=ion s4[-2]=back s4[-1]= s4[0]= s4[1]=ious s4[2]=tion 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=back|to w[-1]|w[0]=to|the w[0]|w[1]=the|previous w[1]|w[2]=previous|station pos[-2]|pos[-1]=RB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=back w[-4..-1]=to w[1..4]=previous w[1..4]=station +O w[-2]=to w[-1]=the w[0]=previous w[1]=station wl[-2]=to wl[-1]=the wl[0]=previous wl[1]=station pos[-2]=IN pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLL shape[0]=LLLLLLLL shape[1]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=t p1[0]=p p1[1]=s p2[-2]=to p2[-1]=th p2[0]=pr p2[1]=st p3[-2]= p3[-1]=the p3[0]=pre p3[1]=sta p4[-2]= p4[-1]= p4[0]=prev p4[1]=stat s1[-2]=o s1[-1]=e s1[0]=s s1[1]=n s2[-2]=to s2[-1]=he s2[0]=us s2[1]=on s3[-2]= s3[-1]=the s3[0]=ous s3[1]=ion s4[-2]= s4[-1]= s4[0]=ious s4[1]=tion 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|previous w[0]|w[1]=previous|station pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=back w[-4..-1]=to w[-4..-1]=the w[1..4]=station +O w[-2]=the w[-1]=previous w[0]=station wl[-2]=the wl[-1]=previous wl[0]=station pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLLLLLL shape[0]=LLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=p p1[0]=s p2[-2]=th p2[-1]=pr p2[0]=st p3[-2]=the p3[-1]=pre p3[0]=sta p4[-2]= p4[-1]=prev p4[0]=stat s1[-2]=e s1[-1]=s s1[0]=n s2[-2]=he s2[-1]=us s2[0]=on s3[-2]=the s3[-1]=ous s3[0]=ion s4[-2]= s4[-1]=ious s4[0]=tion 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|previous w[-1]|w[0]=previous|station pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=back w[-4..-1]=to w[-4..-1]=the w[-4..-1]=previous __EOS__ + +O w[0]=back w[1]=up w[2]=a wl[0]=back wl[1]=up wl[2]=a pos[0]=VB pos[1]=RP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=L shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=b p1[1]=u p1[2]=a p2[0]=ba p2[1]=up p2[2]= p3[0]=bac p3[1]= p3[2]= p4[0]=back p4[1]= p4[2]= s1[0]=k s1[1]=p s1[2]=a s2[0]=ck s2[1]=up s2[2]= s3[0]=ack s3[1]= s3[2]= s4[0]=back s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=back|up w[1]|w[2]=up|a pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=up w[1..4]=a w[1..4]=track __BOS__ +O w[-1]=back w[0]=up w[1]=a w[2]=track wl[-1]=back wl[0]=up wl[1]=a wl[2]=track pos[-1]=VB pos[0]=RP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=L shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=b p1[0]=u p1[1]=a p1[2]=t p2[-1]=ba p2[0]=up p2[1]= p2[2]=tr p3[-1]=bac p3[0]= p3[1]= p3[2]=tra p4[-1]=back p4[0]= p4[1]= p4[2]=trac s1[-1]=k s1[0]=p s1[1]=a s1[2]=k s2[-1]=ck s2[0]=up s2[1]= s2[2]=ck s3[-1]=ack s3[0]= s3[1]= s3[2]=ack s4[-1]=back s4[0]= s4[1]= s4[2]=rack 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=back|up w[0]|w[1]=up|a w[1]|w[2]=a|track pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=back w[1..4]=a w[1..4]=track +O w[-2]=back w[-1]=up w[0]=a w[1]=track wl[-2]=back wl[-1]=up wl[0]=a wl[1]=track pos[-2]=VB pos[-1]=RP pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=L shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=b p1[-1]=u p1[0]=a p1[1]=t p2[-2]=ba p2[-1]=up p2[0]= p2[1]=tr p3[-2]=bac p3[-1]= p3[0]= p3[1]=tra p4[-2]=back p4[-1]= p4[0]= p4[1]=trac s1[-2]=k s1[-1]=p s1[0]=a s1[1]=k s2[-2]=ck s2[-1]=up s2[0]= s2[1]=ck s3[-2]=ack s3[-1]= s3[0]= s3[1]=ack s4[-2]=back s4[-1]= s4[0]= s4[1]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=back|up w[-1]|w[0]=up|a w[0]|w[1]=a|track pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=back w[-4..-1]=up w[1..4]=track +O w[-2]=up w[-1]=a w[0]=track wl[-2]=up wl[-1]=a wl[0]=track pos[-2]=RP pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=L shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=u p1[-1]=a p1[0]=t p2[-2]=up p2[-1]= p2[0]=tr p3[-2]= p3[-1]= p3[0]=tra p4[-2]= p4[-1]= p4[0]=trac s1[-2]=p s1[-1]=a s1[0]=k s2[-2]=up s2[-1]= s2[0]=ck s3[-2]= s3[-1]= s3[0]=ack s4[-2]= s4[-1]= s4[0]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=up|a w[-1]|w[0]=a|track pos[-2]|pos[-1]=RP|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=back w[-4..-1]=up w[-4..-1]=a __EOS__ + +O w[0]=go w[1]=to w[2]=previous wl[0]=go wl[1]=to wl[2]=previous pos[0]=VB pos[1]=IN pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LL shape[1]=LL shape[2]=LLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=g p1[1]=t p1[2]=p p2[0]=go p2[1]=to p2[2]=pr p3[0]= p3[1]= p3[2]=pre p4[0]= p4[1]= p4[2]=prev s1[0]=o s1[1]=o s1[2]=s s2[0]=go s2[1]=to s2[2]=us s3[0]= s3[1]= s3[2]=ous s4[0]= s4[1]= s4[2]=ious 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=go|to w[1]|w[2]=to|previous pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=previous __BOS__ +O w[-1]=go w[0]=to w[1]=previous wl[-1]=go wl[0]=to wl[1]=previous pos[-1]=VB pos[0]=IN pos[1]=JJ chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LL shape[0]=LL shape[1]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=g p1[0]=t p1[1]=p p2[-1]=go p2[0]=to p2[1]=pr p3[-1]= p3[0]= p3[1]=pre p4[-1]= p4[0]= p4[1]=prev s1[-1]=o s1[0]=o s1[1]=s s2[-1]=go s2[0]=to s2[1]=us s3[-1]= s3[0]= s3[1]=ous s4[-1]= s4[0]= s4[1]=ious 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=go|to w[0]|w[1]=to|previous pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=go w[1..4]=previous +O w[-2]=go w[-1]=to w[0]=previous wl[-2]=go wl[-1]=to wl[0]=previous pos[-2]=VB pos[-1]=IN pos[0]=JJ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=g p1[-1]=t p1[0]=p p2[-2]=go p2[-1]=to p2[0]=pr p3[-2]= p3[-1]= p3[0]=pre p4[-2]= p4[-1]= p4[0]=prev s1[-2]=o s1[-1]=o s1[0]=s s2[-2]=go s2[-1]=to s2[0]=us s3[-2]= s3[-1]= s3[0]=ous s4[-2]= s4[-1]= s4[0]=ious 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=go|to w[-1]|w[0]=to|previous pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=to __EOS__ + +O w[0]=previous w[1]=song wl[0]=previous wl[1]=song pos[0]=JJ pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLLLLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=s p2[0]=pr p2[1]=so p3[0]=pre p3[1]=son p4[0]=prev p4[1]=song s1[0]=s s1[1]=g s2[0]=us s2[1]=ng s3[0]=ous s3[1]=ong s4[0]=ious s4[1]=song 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=previous|song pos[0]|pos[1]=JJ|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=song __BOS__ +O w[-1]=previous w[0]=song wl[-1]=previous wl[0]=song pos[-1]=JJ pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLLLLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=s p2[-1]=pr p2[0]=so p3[-1]=pre p3[0]=son p4[-1]=prev p4[0]=song s1[-1]=s s1[0]=g s2[-1]=us s2[0]=ng s3[-1]=ous s3[0]=ong s4[-1]=ious s4[0]=song 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=previous|song pos[-1]|pos[0]=JJ|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=previous __EOS__ + +O w[0]=go w[1]=back w[2]=to wl[0]=go wl[1]=back wl[2]=to pos[0]=VB pos[1]=RB pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=g p1[1]=b p1[2]=t p2[0]=go p2[1]=ba p2[2]=to p3[0]= p3[1]=bac p3[2]= p4[0]= p4[1]=back p4[2]= s1[0]=o s1[1]=k s1[2]=o s2[0]=go s2[1]=ck s2[2]=to s3[0]= s3[1]=ack s3[2]= s4[0]= s4[1]=back s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=go|back w[1]|w[2]=back|to pos[0]|pos[1]=VB|RB pos[1]|pos[2]=RB|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=back w[1..4]=to w[1..4]=previous w[1..4]=song __BOS__ +O w[-1]=go w[0]=back w[1]=to w[2]=previous wl[-1]=go wl[0]=back wl[1]=to wl[2]=previous pos[-1]=VB pos[0]=RB pos[1]=IN pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LL shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=g p1[0]=b p1[1]=t p1[2]=p p2[-1]=go p2[0]=ba p2[1]=to p2[2]=pr p3[-1]= p3[0]=bac p3[1]= p3[2]=pre p4[-1]= p4[0]=back p4[1]= p4[2]=prev s1[-1]=o s1[0]=k s1[1]=o s1[2]=s s2[-1]=go s2[0]=ck s2[1]=to s2[2]=us s3[-1]= s3[0]=ack s3[1]= s3[2]=ous s4[-1]= s4[0]=back s4[1]= s4[2]=ious 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=go|back w[0]|w[1]=back|to w[1]|w[2]=to|previous pos[-1]|pos[0]=VB|RB pos[0]|pos[1]=RB|IN pos[1]|pos[2]=IN|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[1..4]=to w[1..4]=previous w[1..4]=song +O w[-2]=go w[-1]=back w[0]=to w[1]=previous w[2]=song wl[-2]=go wl[-1]=back wl[0]=to wl[1]=previous wl[2]=song pos[-2]=VB pos[-1]=RB pos[0]=IN pos[1]=JJ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=g p1[-1]=b p1[0]=t p1[1]=p p1[2]=s p2[-2]=go p2[-1]=ba p2[0]=to p2[1]=pr p2[2]=so p3[-2]= p3[-1]=bac p3[0]= p3[1]=pre p3[2]=son p4[-2]= p4[-1]=back p4[0]= p4[1]=prev p4[2]=song s1[-2]=o s1[-1]=k s1[0]=o s1[1]=s s1[2]=g s2[-2]=go s2[-1]=ck s2[0]=to s2[1]=us s2[2]=ng s3[-2]= s3[-1]=ack s3[0]= s3[1]=ous s3[2]=ong s4[-2]= s4[-1]=back s4[0]= s4[1]=ious s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=go|back w[-1]|w[0]=back|to w[0]|w[1]=to|previous w[1]|w[2]=previous|song pos[-2]|pos[-1]=VB|RB pos[-1]|pos[0]=RB|IN pos[0]|pos[1]=IN|JJ pos[1]|pos[2]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=back w[1..4]=previous w[1..4]=song +O w[-2]=back w[-1]=to w[0]=previous w[1]=song wl[-2]=back wl[-1]=to wl[0]=previous wl[1]=song pos[-2]=RB pos[-1]=IN pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=b p1[-1]=t p1[0]=p p1[1]=s p2[-2]=ba p2[-1]=to p2[0]=pr p2[1]=so p3[-2]=bac p3[-1]= p3[0]=pre p3[1]=son p4[-2]=back p4[-1]= p4[0]=prev p4[1]=song s1[-2]=k s1[-1]=o s1[0]=s s1[1]=g s2[-2]=ck s2[-1]=to s2[0]=us s2[1]=ng s3[-2]=ack s3[-1]= s3[0]=ous s3[1]=ong s4[-2]=back s4[-1]= s4[0]=ious s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=back|to w[-1]|w[0]=to|previous w[0]|w[1]=previous|song pos[-2]|pos[-1]=RB|IN pos[-1]|pos[0]=IN|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=back w[-4..-1]=to w[1..4]=song +O w[-2]=to w[-1]=previous w[0]=song wl[-2]=to wl[-1]=previous wl[0]=song pos[-2]=IN pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=p p1[0]=s p2[-2]=to p2[-1]=pr p2[0]=so p3[-2]= p3[-1]=pre p3[0]=son p4[-2]= p4[-1]=prev p4[0]=song s1[-2]=o s1[-1]=s s1[0]=g s2[-2]=to s2[-1]=us s2[0]=ng s3[-2]= s3[-1]=ous s3[0]=ong s4[-2]= s4[-1]=ious s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|previous w[-1]|w[0]=previous|song pos[-2]|pos[-1]=IN|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=back w[-4..-1]=to w[-4..-1]=previous __EOS__ + +O w[0]=skip w[1]=to w[2]=the wl[0]=skip wl[1]=to wl[2]=the pos[0]=VB pos[1]=IN pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=t p2[0]=sk p2[1]=to p2[2]=th p3[0]=ski p3[1]= p3[2]=the p4[0]=skip p4[1]= p4[2]= s1[0]=p s1[1]=o s1[2]=e s2[0]=ip s2[1]=to s2[2]=he s3[0]=kip s3[1]= s3[2]=the s4[0]=skip s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=skip|to w[1]|w[2]=to|the pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=the w[1..4]=back __BOS__ +O w[-1]=skip w[0]=to w[1]=the w[2]=back wl[-1]=skip wl[0]=to wl[1]=the wl[2]=back pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=s p1[0]=t p1[1]=t p1[2]=b p2[-1]=sk p2[0]=to p2[1]=th p2[2]=ba p3[-1]=ski p3[0]= p3[1]=the p3[2]=bac p4[-1]=skip p4[0]= p4[1]= p4[2]=back s1[-1]=p s1[0]=o s1[1]=e s1[2]=k s2[-1]=ip s2[0]=to s2[1]=he s2[2]=ck s3[-1]=kip s3[0]= s3[1]=the s3[2]=ack s4[-1]=skip s4[0]= s4[1]= s4[2]=back 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=skip|to w[0]|w[1]=to|the w[1]|w[2]=the|back pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=skip w[1..4]=the w[1..4]=back +O w[-2]=skip w[-1]=to w[0]=the w[1]=back wl[-2]=skip wl[-1]=to wl[0]=the wl[1]=back pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=s p1[-1]=t p1[0]=t p1[1]=b p2[-2]=sk p2[-1]=to p2[0]=th p2[1]=ba p3[-2]=ski p3[-1]= p3[0]=the p3[1]=bac p4[-2]=skip p4[-1]= p4[0]= p4[1]=back s1[-2]=p s1[-1]=o s1[0]=e s1[1]=k s2[-2]=ip s2[-1]=to s2[0]=he s2[1]=ck s3[-2]=kip s3[-1]= s3[0]=the s3[1]=ack s4[-2]=skip s4[-1]= s4[0]= s4[1]=back 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=skip|to w[-1]|w[0]=to|the w[0]|w[1]=the|back pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to w[1..4]=back +O w[-2]=to w[-1]=the w[0]=back wl[-2]=to wl[-1]=the wl[0]=back pos[-2]=IN pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=t p1[0]=b p2[-2]=to p2[-1]=th p2[0]=ba p3[-2]= p3[-1]=the p3[0]=bac p4[-2]= p4[-1]= p4[0]=back s1[-2]=o s1[-1]=e s1[0]=k s2[-2]=to s2[-1]=he s2[0]=ck s3[-2]= s3[-1]=the s3[0]=ack s4[-2]= s4[-1]= s4[0]=back 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|back pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to w[-4..-1]=the __EOS__ + +O w[0]=back wl[0]=back pos[0]=RB chk[0]=O shape[0]=LLLL shaped[0]=L type[0]=AllLetter p1[0]=b p2[0]=ba p3[0]=bac p4[0]=back s1[0]=k s2[0]=ck s3[0]=ack s4[0]=back 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=go w[1]=back w[2]=to wl[0]=go wl[1]=back wl[2]=to pos[0]=VB pos[1]=RB pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=g p1[1]=b p1[2]=t p2[0]=go p2[1]=ba p2[2]=to p3[0]= p3[1]=bac p3[2]= p4[0]= p4[1]=back p4[2]= s1[0]=o s1[1]=k s1[2]=o s2[0]=go s2[1]=ck s2[2]=to s3[0]= s3[1]=ack s3[2]= s4[0]= s4[1]=back s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=go|back w[1]|w[2]=back|to pos[0]|pos[1]=VB|RB pos[1]|pos[2]=RB|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=back w[1..4]=to w[1..4]=previous __BOS__ +O w[-1]=go w[0]=back w[1]=to w[2]=previous wl[-1]=go wl[0]=back wl[1]=to wl[2]=previous pos[-1]=VB pos[0]=RB pos[1]=IN pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LL shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=g p1[0]=b p1[1]=t p1[2]=p p2[-1]=go p2[0]=ba p2[1]=to p2[2]=pr p3[-1]= p3[0]=bac p3[1]= p3[2]=pre p4[-1]= p4[0]=back p4[1]= p4[2]=prev s1[-1]=o s1[0]=k s1[1]=o s1[2]=s s2[-1]=go s2[0]=ck s2[1]=to s2[2]=us s3[-1]= s3[0]=ack s3[1]= s3[2]=ous s4[-1]= s4[0]=back s4[1]= s4[2]=ious 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=go|back w[0]|w[1]=back|to w[1]|w[2]=to|previous pos[-1]|pos[0]=VB|RB pos[0]|pos[1]=RB|IN pos[1]|pos[2]=IN|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[1..4]=to w[1..4]=previous +O w[-2]=go w[-1]=back w[0]=to w[1]=previous wl[-2]=go wl[-1]=back wl[0]=to wl[1]=previous pos[-2]=VB pos[-1]=RB pos[0]=IN pos[1]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=g p1[-1]=b p1[0]=t p1[1]=p p2[-2]=go p2[-1]=ba p2[0]=to p2[1]=pr p3[-2]= p3[-1]=bac p3[0]= p3[1]=pre p4[-2]= p4[-1]=back p4[0]= p4[1]=prev s1[-2]=o s1[-1]=k s1[0]=o s1[1]=s s2[-2]=go s2[-1]=ck s2[0]=to s2[1]=us s3[-2]= s3[-1]=ack s3[0]= s3[1]=ous s4[-2]= s4[-1]=back s4[0]= s4[1]=ious 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=go|back w[-1]|w[0]=back|to w[0]|w[1]=to|previous pos[-2]|pos[-1]=VB|RB pos[-1]|pos[0]=RB|IN pos[0]|pos[1]=IN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=back w[1..4]=previous +O w[-2]=back w[-1]=to w[0]=previous wl[-2]=back wl[-1]=to wl[0]=previous pos[-2]=RB pos[-1]=IN pos[0]=JJ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=b p1[-1]=t p1[0]=p p2[-2]=ba p2[-1]=to p2[0]=pr p3[-2]=bac p3[-1]= p3[0]=pre p4[-2]=back p4[-1]= p4[0]=prev s1[-2]=k s1[-1]=o s1[0]=s s2[-2]=ck s2[-1]=to s2[0]=us s3[-2]=ack s3[-1]= s3[0]=ous s4[-2]=back s4[-1]= s4[0]=ious 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=back|to w[-1]|w[0]=to|previous pos[-2]|pos[-1]=RB|IN pos[-1]|pos[0]=IN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=back w[-4..-1]=to __EOS__ + +O w[0]=previous wl[0]=previous pos[0]=JJ chk[0]=O shape[0]=LLLLLLLL shaped[0]=L type[0]=AllLetter p1[0]=p p2[0]=pr p3[0]=pre p4[0]=prev s1[0]=s s2[0]=us s3[0]=ous s4[0]=ious 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=previous w[1]=station wl[0]=previous wl[1]=station pos[0]=JJ pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLLLLLL shape[1]=LLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=s p2[0]=pr p2[1]=st p3[0]=pre p3[1]=sta p4[0]=prev p4[1]=stat s1[0]=s s1[1]=n s2[0]=us s2[1]=on s3[0]=ous s3[1]=ion s4[0]=ious s4[1]=tion 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=previous|station pos[0]|pos[1]=JJ|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=station __BOS__ +O w[-1]=previous w[0]=station wl[-1]=previous wl[0]=station pos[-1]=JJ pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLLLLLL shape[0]=LLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=s p2[-1]=pr p2[0]=st p3[-1]=pre p3[0]=sta p4[-1]=prev p4[0]=stat s1[-1]=s s1[0]=n s2[-1]=us s2[0]=on s3[-1]=ous s3[0]=ion s4[-1]=ious s4[0]=tion 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=previous|station pos[-1]|pos[0]=JJ|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=previous __EOS__ + +O w[0]=skip w[1]=back wl[0]=skip wl[1]=back pos[0]=VB pos[1]=RB chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=s p1[1]=b p2[0]=sk p2[1]=ba p3[0]=ski p3[1]=bac p4[0]=skip p4[1]=back s1[0]=p s1[1]=k s2[0]=ip s2[1]=ck s3[0]=kip s3[1]=ack s4[0]=skip s4[1]=back 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=skip|back pos[0]|pos[1]=VB|RB chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=back __BOS__ +O w[-1]=skip w[0]=back wl[-1]=skip wl[0]=back pos[-1]=VB pos[0]=RB chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=s p1[0]=b p2[-1]=sk p2[0]=ba p3[-1]=ski p3[0]=bac p4[-1]=skip p4[0]=back s1[-1]=p s1[0]=k s2[-1]=ip s2[0]=ck s3[-1]=kip s3[0]=ack s4[-1]=skip s4[0]=back 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=skip|back pos[-1]|pos[0]=VB|RB chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip __EOS__ + +O w[0]=skip w[1]=to w[2]=previous wl[0]=skip wl[1]=to wl[2]=previous pos[0]=VB pos[1]=IN pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=p p2[0]=sk p2[1]=to p2[2]=pr p3[0]=ski p3[1]= p3[2]=pre p4[0]=skip p4[1]= p4[2]=prev s1[0]=p s1[1]=o s1[2]=s s2[0]=ip s2[1]=to s2[2]=us s3[0]=kip s3[1]= s3[2]=ous s4[0]=skip s4[1]= s4[2]=ious 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=skip|to w[1]|w[2]=to|previous pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=previous __BOS__ +O w[-1]=skip w[0]=to w[1]=previous wl[-1]=skip wl[0]=to wl[1]=previous pos[-1]=VB pos[0]=IN pos[1]=JJ chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=s p1[0]=t p1[1]=p p2[-1]=sk p2[0]=to p2[1]=pr p3[-1]=ski p3[0]= p3[1]=pre p4[-1]=skip p4[0]= p4[1]=prev s1[-1]=p s1[0]=o s1[1]=s s2[-1]=ip s2[0]=to s2[1]=us s3[-1]=kip s3[0]= s3[1]=ous s4[-1]=skip s4[0]= s4[1]=ious 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=skip|to w[0]|w[1]=to|previous pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=skip w[1..4]=previous +O w[-2]=skip w[-1]=to w[0]=previous wl[-2]=skip wl[-1]=to wl[0]=previous pos[-2]=VB pos[-1]=IN pos[0]=JJ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=t p1[0]=p p2[-2]=sk p2[-1]=to p2[0]=pr p3[-2]=ski p3[-1]= p3[0]=pre p4[-2]=skip p4[-1]= p4[0]=prev s1[-2]=p s1[-1]=o s1[0]=s s2[-2]=ip s2[-1]=to s2[0]=us s3[-2]=kip s3[-1]= s3[0]=ous s4[-2]=skip s4[-1]= s4[0]=ious 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=skip|to w[-1]|w[0]=to|previous pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to __EOS__ + +O w[0]=remember w[1]=this w[2]=song wl[0]=remember wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=t p1[2]=s p2[0]=re p2[1]=th p2[2]=so p3[0]=rem p3[1]=thi p3[2]=son p4[0]=reme p4[1]=this p4[2]=song s1[0]=r s1[1]=s s1[2]=g s2[0]=er s2[1]=is s2[2]=ng s3[0]=ber s3[1]=his s3[2]=ong s4[0]=mber s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=remember|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song __BOS__ +O w[-1]=remember w[0]=this w[1]=song wl[-1]=remember wl[0]=this wl[1]=song pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLLLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=r p1[0]=t p1[1]=s p2[-1]=re p2[0]=th p2[1]=so p3[-1]=rem p3[0]=thi p3[1]=son p4[-1]=reme p4[0]=this p4[1]=song s1[-1]=r s1[0]=s s1[1]=g s2[-1]=er s2[0]=is s2[1]=ng s3[-1]=ber s3[0]=his s3[1]=ong s4[-1]=mber s4[0]=this s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=remember|this w[0]|w[1]=this|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=remember w[1..4]=song +O w[-2]=remember w[-1]=this w[0]=song wl[-2]=remember wl[-1]=this wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=r p1[-1]=t p1[0]=s p2[-2]=re p2[-1]=th p2[0]=so p3[-2]=rem p3[-1]=thi p3[0]=son p4[-2]=reme p4[-1]=this p4[0]=song s1[-2]=r s1[-1]=s s1[0]=g s2[-2]=er s2[-1]=is s2[0]=ng s3[-2]=ber s3[-1]=his s3[0]=ong s4[-2]=mber s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=remember|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=remember w[-4..-1]=this __EOS__ + +O w[0]=fave w[1]=this w[2]=song wl[0]=fave wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=f p1[1]=t p1[2]=s p2[0]=fa p2[1]=th p2[2]=so p3[0]=fav p3[1]=thi p3[2]=son p4[0]=fave p4[1]=this p4[2]=song s1[0]=e s1[1]=s s1[2]=g s2[0]=ve s2[1]=is s2[2]=ng s3[0]=ave s3[1]=his s3[2]=ong s4[0]=fave s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=fave|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song __BOS__ +O w[-1]=fave w[0]=this w[1]=song wl[-1]=fave wl[0]=this wl[1]=song pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=f p1[0]=t p1[1]=s p2[-1]=fa p2[0]=th p2[1]=so p3[-1]=fav p3[0]=thi p3[1]=son p4[-1]=fave p4[0]=this p4[1]=song s1[-1]=e s1[0]=s s1[1]=g s2[-1]=ve s2[0]=is s2[1]=ng s3[-1]=ave s3[0]=his s3[1]=ong s4[-1]=fave s4[0]=this s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=fave|this w[0]|w[1]=this|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=fave w[1..4]=song +O w[-2]=fave w[-1]=this w[0]=song wl[-2]=fave wl[-1]=this wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=f p1[-1]=t p1[0]=s p2[-2]=fa p2[-1]=th p2[0]=so p3[-2]=fav p3[-1]=thi p3[0]=son p4[-2]=fave p4[-1]=this p4[0]=song s1[-2]=e s1[-1]=s s1[0]=g s2[-2]=ve s2[-1]=is s2[0]=ng s3[-2]=ave s3[-1]=his s3[0]=ong s4[-2]=fave s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=fave|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=fave w[-4..-1]=this __EOS__ + +O w[0]=it's w[1]=my w[2]=favourite wl[0]=it's wl[1]=my wl[2]=favourite pos[0]=PRP pos[1]=VBZ pos[2]=PRP$ chk[0]=O chk[1]=O chk[2]=O shape[0]=LL'L shape[1]=LL shape[2]=LLLLLLLLL shaped[0]=L'L shaped[1]=L shaped[2]=L type[0]=NO type[1]=AllLetter type[2]=AllLetter p1[0]=i p1[1]=m p1[2]=f p2[0]=it p2[1]=my p2[2]=fa p3[0]=it' p3[1]= p3[2]=fav p4[0]=it's p4[1]= p4[2]=favo s1[0]=s s1[1]=y s1[2]=e s2[0]='s s2[1]=my s2[2]=te s3[0]=t's s3[1]= s3[2]=ite s4[0]=it's s4[1]= s4[2]=rite 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=it's|my w[1]|w[2]=my|favourite pos[0]|pos[1]=PRP|VBZ pos[1]|pos[2]=VBZ|PRP$ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=NO|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=my w[1..4]=favourite __BOS__ +O w[-1]=it's w[0]=my w[1]=favourite wl[-1]=it's wl[0]=my wl[1]=favourite pos[-1]=PRP pos[0]=VBZ pos[1]=PRP$ chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LL'L shape[0]=LL shape[1]=LLLLLLLLL shaped[-1]=L'L shaped[0]=L shaped[1]=L type[-1]=NO type[0]=AllLetter type[1]=AllLetter p1[-1]=i p1[0]=m p1[1]=f p2[-1]=it p2[0]=my p2[1]=fa p3[-1]=it' p3[0]= p3[1]=fav p4[-1]=it's p4[0]= p4[1]=favo s1[-1]=s s1[0]=y s1[1]=e s2[-1]='s s2[0]=my s2[1]=te s3[-1]=t's s3[0]= s3[1]=ite s4[-1]=it's s4[0]= s4[1]=rite 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=yes cs[0]=no cs[1]=no w[-1]|w[0]=it's|my w[0]|w[1]=my|favourite pos[-1]|pos[0]=PRP|VBZ pos[0]|pos[1]=VBZ|PRP$ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L'L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=NO|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=it's w[1..4]=favourite +O w[-2]=it's w[-1]=my w[0]=favourite wl[-2]=it's wl[-1]=my wl[0]=favourite pos[-2]=PRP pos[-1]=VBZ pos[0]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL'L shape[-1]=LL shape[0]=LLLLLLLLL shaped[-2]=L'L shaped[-1]=L shaped[0]=L type[-2]=NO type[-1]=AllLetter type[0]=AllLetter p1[-2]=i p1[-1]=m p1[0]=f p2[-2]=it p2[-1]=my p2[0]=fa p3[-2]=it' p3[-1]= p3[0]=fav p4[-2]=it's p4[-1]= p4[0]=favo s1[-2]=s s1[-1]=y s1[0]=e s2[-2]='s s2[-1]=my s2[0]=te s3[-2]=t's s3[-1]= s3[0]=ite s4[-2]=it's s4[-1]= s4[0]=rite 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=yes cs[-1]=no cs[0]=no w[-2]|w[-1]=it's|my w[-1]|w[0]=my|favourite pos[-2]|pos[-1]=PRP|VBZ pos[-1]|pos[0]=VBZ|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L'L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=NO|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=it's w[-4..-1]=my __EOS__ + +O w[0]=add w[1]=this w[2]=song wl[0]=add wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=a p1[1]=t p1[2]=s p2[0]=ad p2[1]=th p2[2]=so p3[0]=add p3[1]=thi p3[2]=son p4[0]= p4[1]=this p4[2]=song s1[0]=d s1[1]=s s1[2]=g s2[0]=dd s2[1]=is s2[2]=ng s3[0]=add s3[1]=his s3[2]=ong s4[0]= s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=add|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song w[1..4]=to w[1..4]=favorites __BOS__ +O w[-1]=add w[0]=this w[1]=song w[2]=to wl[-1]=add wl[0]=this wl[1]=song wl[2]=to pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=a p1[0]=t p1[1]=s p1[2]=t p2[-1]=ad p2[0]=th p2[1]=so p2[2]=to p3[-1]=add p3[0]=thi p3[1]=son p3[2]= p4[-1]= p4[0]=this p4[1]=song p4[2]= s1[-1]=d s1[0]=s s1[1]=g s1[2]=o s2[-1]=dd s2[0]=is s2[1]=ng s2[2]=to s3[-1]=add s3[0]=his s3[1]=ong s3[2]= s4[-1]= s4[0]=this s4[1]=song s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=add|this w[0]|w[1]=this|song w[1]|w[2]=song|to pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[1..4]=song w[1..4]=to w[1..4]=favorites +O w[-2]=add w[-1]=this w[0]=song w[1]=to w[2]=favorites wl[-2]=add wl[-1]=this wl[0]=song wl[1]=to wl[2]=favorites pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=t p1[0]=s p1[1]=t p1[2]=f p2[-2]=ad p2[-1]=th p2[0]=so p2[1]=to p2[2]=fa p3[-2]=add p3[-1]=thi p3[0]=son p3[1]= p3[2]=fav p4[-2]= p4[-1]=this p4[0]=song p4[1]= p4[2]=favo s1[-2]=d s1[-1]=s s1[0]=g s1[1]=o s1[2]=s s2[-2]=dd s2[-1]=is s2[0]=ng s2[1]=to s2[2]=es s3[-2]=add s3[-1]=his s3[0]=ong s3[1]= s3[2]=tes s4[-2]= s4[-1]=this s4[0]=song s4[1]= s4[2]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=add|this w[-1]|w[0]=this|song w[0]|w[1]=song|to w[1]|w[2]=to|favorites pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[1..4]=to w[1..4]=favorites +O w[-2]=this w[-1]=song w[0]=to w[1]=favorites wl[-2]=this wl[-1]=song wl[0]=to wl[1]=favorites pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=s p1[0]=t p1[1]=f p2[-2]=th p2[-1]=so p2[0]=to p2[1]=fa p3[-2]=thi p3[-1]=son p3[0]= p3[1]=fav p4[-2]=this p4[-1]=song p4[0]= p4[1]=favo s1[-2]=s s1[-1]=g s1[0]=o s1[1]=s s2[-2]=is s2[-1]=ng s2[0]=to s2[1]=es s3[-2]=his s3[-1]=ong s3[0]= s3[1]=tes s4[-2]=this s4[-1]=song s4[0]= s4[1]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=this|song w[-1]|w[0]=song|to w[0]|w[1]=to|favorites pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[-4..-1]=song w[1..4]=favorites +O w[-2]=song w[-1]=to w[0]=favorites wl[-2]=song wl[-1]=to wl[0]=favorites pos[-2]=NN pos[-1]=IN pos[0]=NNS chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=t p1[0]=f p2[-2]=so p2[-1]=to p2[0]=fa p3[-2]=son p3[-1]= p3[0]=fav p4[-2]=song p4[-1]= p4[0]=favo s1[-2]=g s1[-1]=o s1[0]=s s2[-2]=ng s2[-1]=to s2[0]=es s3[-2]=ong s3[-1]= s3[0]=tes s4[-2]=song s4[-1]= s4[0]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|to w[-1]|w[0]=to|favorites pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[-4..-1]=song w[-4..-1]=to __EOS__ + +O w[0]=I w[1]=love w[2]=this wl[0]=i wl[1]=love wl[2]=this pos[0]=PRP pos[1]=VBP pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LLLL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=l p1[2]=t p2[0]= p2[1]=lo p2[2]=th p3[0]= p3[1]=lov p3[2]=thi p4[0]= p4[1]=love p4[2]=this s1[0]=I s1[1]=e s1[2]=s s2[0]= s2[1]=ve s2[2]=is s3[0]= s3[1]=ove s3[2]=his s4[0]= s4[1]=love s4[2]=this 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|love w[1]|w[2]=love|this pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=love w[1..4]=this w[1..4]=song __BOS__ +O w[-1]=I w[0]=love w[1]=this w[2]=song wl[-1]=i wl[0]=love wl[1]=this wl[2]=song pos[-1]=PRP pos[0]=VBP pos[1]=DT pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=l p1[1]=t p1[2]=s p2[-1]= p2[0]=lo p2[1]=th p2[2]=so p3[-1]= p3[0]=lov p3[1]=thi p3[2]=son p4[-1]= p4[0]=love p4[1]=this p4[2]=song s1[-1]=I s1[0]=e s1[1]=s s1[2]=g s2[-1]= s2[0]=ve s2[1]=is s2[2]=ng s3[-1]= s3[0]=ove s3[1]=his s3[2]=ong s4[-1]= s4[0]=love s4[1]=this s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|love w[0]|w[1]=love|this w[1]|w[2]=this|song pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|DT pos[1]|pos[2]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=this w[1..4]=song +O w[-2]=I w[-1]=love w[0]=this w[1]=song wl[-2]=i wl[-1]=love wl[0]=this wl[1]=song pos[-2]=PRP pos[-1]=VBP pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=U shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=I p1[-1]=l p1[0]=t p1[1]=s p2[-2]= p2[-1]=lo p2[0]=th p2[1]=so p3[-2]= p3[-1]=lov p3[0]=thi p3[1]=son p4[-2]= p4[-1]=love p4[0]=this p4[1]=song s1[-2]=I s1[-1]=e s1[0]=s s1[1]=g s2[-2]= s2[-1]=ve s2[0]=is s2[1]=ng s3[-2]= s3[-1]=ove s3[0]=his s3[1]=ong s4[-2]= s4[-1]=love s4[0]=this s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=I|love w[-1]|w[0]=love|this w[0]|w[1]=this|song pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=love w[1..4]=song +O w[-2]=love w[-1]=this w[0]=song wl[-2]=love wl[-1]=this wl[0]=song pos[-2]=VBP pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=l p1[-1]=t p1[0]=s p2[-2]=lo p2[-1]=th p2[0]=so p3[-2]=lov p3[-1]=thi p3[0]=son p4[-2]=love p4[-1]=this p4[0]=song s1[-2]=e s1[-1]=s s1[0]=g s2[-2]=ve s2[-1]=is s2[0]=ng s3[-2]=ove s3[-1]=his s3[0]=ong s4[-2]=love s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=love|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=VBP|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=love w[-4..-1]=this __EOS__ + +O w[0]=put w[1]=this w[2]=track wl[0]=put wl[1]=this wl[2]=track pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=t p2[0]=pu p2[1]=th p2[2]=tr p3[0]=put p3[1]=thi p3[2]=tra p4[0]= p4[1]=this p4[2]=trac s1[0]=t s1[1]=s s1[2]=k s2[0]=ut s2[1]=is s2[2]=ck s3[0]=put s3[1]=his s3[2]=ack s4[0]= s4[1]=this s4[2]=rack 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|this w[1]|w[2]=this|track pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=track w[1..4]=into w[1..4]=my __BOS__ +O w[-1]=put w[0]=this w[1]=track w[2]=into wl[-1]=put wl[0]=this wl[1]=track wl[2]=into pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=t p1[2]=i p2[-1]=pu p2[0]=th p2[1]=tr p2[2]=in p3[-1]=put p3[0]=thi p3[1]=tra p3[2]=int p4[-1]= p4[0]=this p4[1]=trac p4[2]=into s1[-1]=t s1[0]=s s1[1]=k s1[2]=o s2[-1]=ut s2[0]=is s2[1]=ck s2[2]=to s3[-1]=put s3[0]=his s3[1]=ack s3[2]=nto s4[-1]= s4[0]=this s4[1]=rack s4[2]=into 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|this w[0]|w[1]=this|track w[1]|w[2]=track|into pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=track w[1..4]=into w[1..4]=my w[1..4]=favourites +O w[-2]=put w[-1]=this w[0]=track w[1]=into w[2]=my wl[-2]=put wl[-1]=this wl[0]=track wl[1]=into wl[2]=my pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=t p1[1]=i p1[2]=m p2[-2]=pu p2[-1]=th p2[0]=tr p2[1]=in p2[2]=my p3[-2]=put p3[-1]=thi p3[0]=tra p3[1]=int p3[2]= p4[-2]= p4[-1]=this p4[0]=trac p4[1]=into p4[2]= s1[-2]=t s1[-1]=s s1[0]=k s1[1]=o s1[2]=y s2[-2]=ut s2[-1]=is s2[0]=ck s2[1]=to s2[2]=my s3[-2]=put s3[-1]=his s3[0]=ack s3[1]=nto s3[2]= s4[-2]= s4[-1]=this s4[0]=rack s4[1]=into s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=put|this w[-1]|w[0]=this|track w[0]|w[1]=track|into w[1]|w[2]=into|my pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=this w[1..4]=into w[1..4]=my w[1..4]=favourites +O w[-2]=this w[-1]=track w[0]=into w[1]=my w[2]=favourites wl[-2]=this wl[-1]=track wl[0]=into wl[1]=my wl[2]=favourites pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=PRP$ pos[2]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLLL shape[1]=LL shape[2]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=t p1[0]=i p1[1]=m p1[2]=f p2[-2]=th p2[-1]=tr p2[0]=in p2[1]=my p2[2]=fa p3[-2]=thi p3[-1]=tra p3[0]=int p3[1]= p3[2]=fav p4[-2]=this p4[-1]=trac p4[0]=into p4[1]= p4[2]=favo s1[-2]=s s1[-1]=k s1[0]=o s1[1]=y s1[2]=s s2[-2]=is s2[-1]=ck s2[0]=to s2[1]=my s2[2]=es s3[-2]=his s3[-1]=ack s3[0]=nto s3[1]= s3[2]=tes s4[-2]=this s4[-1]=rack s4[0]=into s4[1]= s4[2]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=this|track w[-1]|w[0]=track|into w[0]|w[1]=into|my w[1]|w[2]=my|favourites pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=this w[-4..-1]=track w[1..4]=my w[1..4]=favourites +O w[-2]=track w[-1]=into w[0]=my w[1]=favourites wl[-2]=track wl[-1]=into wl[0]=my wl[1]=favourites pos[-2]=NN pos[-1]=IN pos[0]=PRP$ pos[1]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLL shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=i p1[0]=m p1[1]=f p2[-2]=tr p2[-1]=in p2[0]=my p2[1]=fa p3[-2]=tra p3[-1]=int p3[0]= p3[1]=fav p4[-2]=trac p4[-1]=into p4[0]= p4[1]=favo s1[-2]=k s1[-1]=o s1[0]=y s1[1]=s s2[-2]=ck s2[-1]=to s2[0]=my s2[1]=es s3[-2]=ack s3[-1]=nto s3[0]= s3[1]=tes s4[-2]=rack s4[-1]=into s4[0]= s4[1]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=track|into w[-1]|w[0]=into|my w[0]|w[1]=my|favourites pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=this w[-4..-1]=track w[-4..-1]=into w[1..4]=favourites +O w[-2]=into w[-1]=my w[0]=favourites wl[-2]=into wl[-1]=my wl[0]=favourites pos[-2]=IN pos[-1]=PRP$ pos[0]=NNS chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=i p1[-1]=m p1[0]=f p2[-2]=in p2[-1]=my p2[0]=fa p3[-2]=int p3[-1]= p3[0]=fav p4[-2]=into p4[-1]= p4[0]=favo s1[-2]=o s1[-1]=y s1[0]=s s2[-2]=to s2[-1]=my s2[0]=es s3[-2]=nto s3[-1]= s3[0]=tes s4[-2]=into s4[-1]= s4[0]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=into|my w[-1]|w[0]=my|favourites pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=this w[-4..-1]=track w[-4..-1]=into w[-4..-1]=my __EOS__ + +O w[0]=add w[1]=to w[2]=faves wl[0]=add wl[1]=to wl[2]=faves pos[0]=VB pos[1]=IN pos[2]=NNS chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=a p1[1]=t p1[2]=f p2[0]=ad p2[1]=to p2[2]=fa p3[0]=add p3[1]= p3[2]=fav p4[0]= p4[1]= p4[2]=fave s1[0]=d s1[1]=o s1[2]=s s2[0]=dd s2[1]=to s2[2]=es s3[0]=add s3[1]= s3[2]=ves s4[0]= s4[1]= s4[2]=aves 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=add|to w[1]|w[2]=to|faves pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|NNS chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=faves __BOS__ +O w[-1]=add w[0]=to w[1]=faves wl[-1]=add wl[0]=to wl[1]=faves pos[-1]=VB pos[0]=IN pos[1]=NNS chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLL shape[0]=LL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=a p1[0]=t p1[1]=f p2[-1]=ad p2[0]=to p2[1]=fa p3[-1]=add p3[0]= p3[1]=fav p4[-1]= p4[0]= p4[1]=fave s1[-1]=d s1[0]=o s1[1]=s s2[-1]=dd s2[0]=to s2[1]=es s3[-1]=add s3[0]= s3[1]=ves s4[-1]= s4[0]= s4[1]=aves 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=add|to w[0]|w[1]=to|faves pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|NNS chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=add w[1..4]=faves +O w[-2]=add w[-1]=to w[0]=faves wl[-2]=add wl[-1]=to wl[0]=faves pos[-2]=VB pos[-1]=IN pos[0]=NNS chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=a p1[-1]=t p1[0]=f p2[-2]=ad p2[-1]=to p2[0]=fa p3[-2]=add p3[-1]= p3[0]=fav p4[-2]= p4[-1]= p4[0]=fave s1[-2]=d s1[-1]=o s1[0]=s s2[-2]=dd s2[-1]=to s2[0]=es s3[-2]=add s3[-1]= s3[0]=ves s4[-2]= s4[-1]= s4[0]=aves 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=add|to w[-1]|w[0]=to|faves pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=to __EOS__ + +O w[0]=add w[1]=it w[2]=to wl[0]=add wl[1]=it wl[2]=to pos[0]=VB pos[1]=PRP pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=a p1[1]=i p1[2]=t p2[0]=ad p2[1]=it p2[2]=to p3[0]=add p3[1]= p3[2]= p4[0]= p4[1]= p4[2]= s1[0]=d s1[1]=t s1[2]=o s2[0]=dd s2[1]=it s2[2]=to s3[0]=add s3[1]= s3[2]= s4[0]= s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=add|it w[1]|w[2]=it|to pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=to w[1..4]=my w[1..4]=favourites __BOS__ +O w[-1]=add w[0]=it w[1]=to w[2]=my wl[-1]=add wl[0]=it wl[1]=to wl[2]=my pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=PRP$ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=a p1[0]=i p1[1]=t p1[2]=m p2[-1]=ad p2[0]=it p2[1]=to p2[2]=my p3[-1]=add p3[0]= p3[1]= p3[2]= p4[-1]= p4[0]= p4[1]= p4[2]= s1[-1]=d s1[0]=t s1[1]=o s1[2]=y s2[-1]=dd s2[0]=it s2[1]=to s2[2]=my s3[-1]=add s3[0]= s3[1]= s3[2]= s4[-1]= s4[0]= s4[1]= s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=add|it w[0]|w[1]=it|to w[1]|w[2]=to|my pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|PRP$ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[1..4]=to w[1..4]=my w[1..4]=favourites +O w[-2]=add w[-1]=it w[0]=to w[1]=my w[2]=favourites wl[-2]=add wl[-1]=it wl[0]=to wl[1]=my wl[2]=favourites pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=PRP$ pos[2]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LL shape[0]=LL shape[1]=LL shape[2]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=i p1[0]=t p1[1]=m p1[2]=f p2[-2]=ad p2[-1]=it p2[0]=to p2[1]=my p2[2]=fa p3[-2]=add p3[-1]= p3[0]= p3[1]= p3[2]=fav p4[-2]= p4[-1]= p4[0]= p4[1]= p4[2]=favo s1[-2]=d s1[-1]=t s1[0]=o s1[1]=y s1[2]=s s2[-2]=dd s2[-1]=it s2[0]=to s2[1]=my s2[2]=es s3[-2]=add s3[-1]= s3[0]= s3[1]= s3[2]=tes s4[-2]= s4[-1]= s4[0]= s4[1]= s4[2]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=add|it w[-1]|w[0]=it|to w[0]|w[1]=to|my w[1]|w[2]=my|favourites pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=it w[1..4]=my w[1..4]=favourites +O w[-2]=it w[-1]=to w[0]=my w[1]=favourites wl[-2]=it wl[-1]=to wl[0]=my wl[1]=favourites pos[-2]=PRP pos[-1]=IN pos[0]=PRP$ pos[1]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LL shape[0]=LL shape[1]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=i p1[-1]=t p1[0]=m p1[1]=f p2[-2]=it p2[-1]=to p2[0]=my p2[1]=fa p3[-2]= p3[-1]= p3[0]= p3[1]=fav p4[-2]= p4[-1]= p4[0]= p4[1]=favo s1[-2]=t s1[-1]=o s1[0]=y s1[1]=s s2[-2]=it s2[-1]=to s2[0]=my s2[1]=es s3[-2]= s3[-1]= s3[0]= s3[1]=tes s4[-2]= s4[-1]= s4[0]= s4[1]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=it|to w[-1]|w[0]=to|my w[0]|w[1]=my|favourites pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=it w[-4..-1]=to w[1..4]=favourites +O w[-2]=to w[-1]=my w[0]=favourites wl[-2]=to wl[-1]=my wl[0]=favourites pos[-2]=IN pos[-1]=PRP$ pos[0]=NNS chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=m p1[0]=f p2[-2]=to p2[-1]=my p2[0]=fa p3[-2]= p3[-1]= p3[0]=fav p4[-2]= p4[-1]= p4[0]=favo s1[-2]=o s1[-1]=y s1[0]=s s2[-2]=to s2[-1]=my s2[0]=es s3[-2]= s3[-1]= s3[0]=tes s4[-2]= s4[-1]= s4[0]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|my w[-1]|w[0]=my|favourites pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=it w[-4..-1]=to w[-4..-1]=my __EOS__ + +O w[0]=favourite w[1]=this w[2]=song wl[0]=favourite wl[1]=this wl[2]=song pos[0]=JJ pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLLLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=f p1[1]=t p1[2]=s p2[0]=fa p2[1]=th p2[2]=so p3[0]=fav p3[1]=thi p3[2]=son p4[0]=favo p4[1]=this p4[2]=song s1[0]=e s1[1]=s s1[2]=g s2[0]=te s2[1]=is s2[2]=ng s3[0]=ite s3[1]=his s3[2]=ong s4[0]=rite s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=favourite|this w[1]|w[2]=this|song pos[0]|pos[1]=JJ|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song __BOS__ +O w[-1]=favourite w[0]=this w[1]=song wl[-1]=favourite wl[0]=this wl[1]=song pos[-1]=JJ pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLLLLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=f p1[0]=t p1[1]=s p2[-1]=fa p2[0]=th p2[1]=so p3[-1]=fav p3[0]=thi p3[1]=son p4[-1]=favo p4[0]=this p4[1]=song s1[-1]=e s1[0]=s s1[1]=g s2[-1]=te s2[0]=is s2[1]=ng s3[-1]=ite s3[0]=his s3[1]=ong s4[-1]=rite s4[0]=this s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=favourite|this w[0]|w[1]=this|song pos[-1]|pos[0]=JJ|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=favourite w[1..4]=song +O w[-2]=favourite w[-1]=this w[0]=song wl[-2]=favourite wl[-1]=this wl[0]=song pos[-2]=JJ pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLLLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=f p1[-1]=t p1[0]=s p2[-2]=fa p2[-1]=th p2[0]=so p3[-2]=fav p3[-1]=thi p3[0]=son p4[-2]=favo p4[-1]=this p4[0]=song s1[-2]=e s1[-1]=s s1[0]=g s2[-2]=te s2[-1]=is s2[0]=ng s3[-2]=ite s3[-1]=his s3[0]=ong s4[-2]=rite s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=favourite|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=JJ|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=favourite w[-4..-1]=this __EOS__ + +O w[0]=could w[1]=you w[2]=mark wl[0]=could wl[1]=you wl[2]=mark pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=m p2[0]=co p2[1]=yo p2[2]=ma p3[0]=cou p3[1]=you p3[2]=mar p4[0]=coul p4[1]= p4[2]=mark s1[0]=d s1[1]=u s1[2]=k s2[0]=ld s2[1]=ou s2[2]=rk s3[0]=uld s3[1]=you s3[2]=ark s4[0]=ould s4[1]= s4[2]=mark 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=could|you w[1]|w[2]=you|mark pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=mark w[1..4]=it w[1..4]=as __BOS__ +O w[-1]=could w[0]=you w[1]=mark w[2]=it wl[-1]=could wl[0]=you wl[1]=mark wl[2]=it pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLL shape[0]=LLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=m p1[2]=i p2[-1]=co p2[0]=yo p2[1]=ma p2[2]=it p3[-1]=cou p3[0]=you p3[1]=mar p3[2]= p4[-1]=coul p4[0]= p4[1]=mark p4[2]= s1[-1]=d s1[0]=u s1[1]=k s1[2]=t s2[-1]=ld s2[0]=ou s2[1]=rk s2[2]=it s3[-1]=uld s3[0]=you s3[1]=ark s3[2]= s4[-1]=ould s4[0]= s4[1]=mark s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=could|you w[0]|w[1]=you|mark w[1]|w[2]=mark|it pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[1..4]=mark w[1..4]=it w[1..4]=as w[1..4]=favourite +O w[-2]=could w[-1]=you w[0]=mark w[1]=it w[2]=as wl[-2]=could wl[-1]=you wl[0]=mark wl[1]=it wl[2]=as pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=PRP pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=m p1[1]=i p1[2]=a p2[-2]=co p2[-1]=yo p2[0]=ma p2[1]=it p2[2]=as p3[-2]=cou p3[-1]=you p3[0]=mar p3[1]= p3[2]= p4[-2]=coul p4[-1]= p4[0]=mark p4[1]= p4[2]= s1[-2]=d s1[-1]=u s1[0]=k s1[1]=t s1[2]=s s2[-2]=ld s2[-1]=ou s2[0]=rk s2[1]=it s2[2]=as s3[-2]=uld s3[-1]=you s3[0]=ark s3[1]= s3[2]= s4[-2]=ould s4[-1]= s4[0]=mark s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=could|you w[-1]|w[0]=you|mark w[0]|w[1]=mark|it w[1]|w[2]=it|as pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[1..4]=it w[1..4]=as w[1..4]=favourite +O w[-2]=you w[-1]=mark w[0]=it w[1]=as w[2]=favourite wl[-2]=you wl[-1]=mark wl[0]=it wl[1]=as wl[2]=favourite pos[-2]=PRP pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LL shape[1]=LL shape[2]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=y p1[-1]=m p1[0]=i p1[1]=a p1[2]=f p2[-2]=yo p2[-1]=ma p2[0]=it p2[1]=as p2[2]=fa p3[-2]=you p3[-1]=mar p3[0]= p3[1]= p3[2]=fav p4[-2]= p4[-1]=mark p4[0]= p4[1]= p4[2]=favo s1[-2]=u s1[-1]=k s1[0]=t s1[1]=s s1[2]=e s2[-2]=ou s2[-1]=rk s2[0]=it s2[1]=as s2[2]=te s3[-2]=you s3[-1]=ark s3[0]= s3[1]= s3[2]=ite s4[-2]= s4[-1]=mark s4[0]= s4[1]= s4[2]=rite 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=you|mark w[-1]|w[0]=mark|it w[0]|w[1]=it|as w[1]|w[2]=as|favourite pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[-4..-1]=mark w[1..4]=as w[1..4]=favourite +O w[-2]=mark w[-1]=it w[0]=as w[1]=favourite wl[-2]=mark wl[-1]=it wl[0]=as wl[1]=favourite pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LL shape[1]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=m p1[-1]=i p1[0]=a p1[1]=f p2[-2]=ma p2[-1]=it p2[0]=as p2[1]=fa p3[-2]=mar p3[-1]= p3[0]= p3[1]=fav p4[-2]=mark p4[-1]= p4[0]= p4[1]=favo s1[-2]=k s1[-1]=t s1[0]=s s1[1]=e s2[-2]=rk s2[-1]=it s2[0]=as s2[1]=te s3[-2]=ark s3[-1]= s3[0]= s3[1]=ite s4[-2]=mark s4[-1]= s4[0]= s4[1]=rite 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=mark|it w[-1]|w[0]=it|as w[0]|w[1]=as|favourite pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[-4..-1]=mark w[-4..-1]=it w[1..4]=favourite +O w[-2]=it w[-1]=as w[0]=favourite wl[-2]=it wl[-1]=as wl[0]=favourite pos[-2]=PRP pos[-1]=IN pos[0]=JJ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=i p1[-1]=a p1[0]=f p2[-2]=it p2[-1]=as p2[0]=fa p3[-2]= p3[-1]= p3[0]=fav p4[-2]= p4[-1]= p4[0]=favo s1[-2]=t s1[-1]=s s1[0]=e s2[-2]=it s2[-1]=as s2[0]=te s3[-2]= s3[-1]= s3[0]=ite s4[-2]= s4[-1]= s4[0]=rite 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=it|as w[-1]|w[0]=as|favourite pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=you w[-4..-1]=mark w[-4..-1]=it w[-4..-1]=as __EOS__ + +O w[0]=add w[1]=this w[2]=song wl[0]=add wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=a p1[1]=t p1[2]=s p2[0]=ad p2[1]=th p2[2]=so p3[0]=add p3[1]=thi p3[2]=son p4[0]= p4[1]=this p4[2]=song s1[0]=d s1[1]=s s1[2]=g s2[0]=dd s2[1]=is s2[2]=ng s3[0]=add s3[1]=his s3[2]=ong s4[0]= s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=add|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song w[1..4]=to w[1..4]=my __BOS__ +O w[-1]=add w[0]=this w[1]=song w[2]=to wl[-1]=add wl[0]=this wl[1]=song wl[2]=to pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=a p1[0]=t p1[1]=s p1[2]=t p2[-1]=ad p2[0]=th p2[1]=so p2[2]=to p3[-1]=add p3[0]=thi p3[1]=son p3[2]= p4[-1]= p4[0]=this p4[1]=song p4[2]= s1[-1]=d s1[0]=s s1[1]=g s1[2]=o s2[-1]=dd s2[0]=is s2[1]=ng s2[2]=to s3[-1]=add s3[0]=his s3[1]=ong s3[2]= s4[-1]= s4[0]=this s4[1]=song s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=add|this w[0]|w[1]=this|song w[1]|w[2]=song|to pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[1..4]=song w[1..4]=to w[1..4]=my w[1..4]=favourites +O w[-2]=add w[-1]=this w[0]=song w[1]=to w[2]=my wl[-2]=add wl[-1]=this wl[0]=song wl[1]=to wl[2]=my pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=PRP$ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=t p1[0]=s p1[1]=t p1[2]=m p2[-2]=ad p2[-1]=th p2[0]=so p2[1]=to p2[2]=my p3[-2]=add p3[-1]=thi p3[0]=son p3[1]= p3[2]= p4[-2]= p4[-1]=this p4[0]=song p4[1]= p4[2]= s1[-2]=d s1[-1]=s s1[0]=g s1[1]=o s1[2]=y s2[-2]=dd s2[-1]=is s2[0]=ng s2[1]=to s2[2]=my s3[-2]=add s3[-1]=his s3[0]=ong s3[1]= s3[2]= s4[-2]= s4[-1]=this s4[0]=song s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=add|this w[-1]|w[0]=this|song w[0]|w[1]=song|to w[1]|w[2]=to|my pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP$ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[1..4]=to w[1..4]=my w[1..4]=favourites +O w[-2]=this w[-1]=song w[0]=to w[1]=my w[2]=favourites wl[-2]=this wl[-1]=song wl[0]=to wl[1]=my wl[2]=favourites pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=PRP$ pos[2]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LL shape[1]=LL shape[2]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=s p1[0]=t p1[1]=m p1[2]=f p2[-2]=th p2[-1]=so p2[0]=to p2[1]=my p2[2]=fa p3[-2]=thi p3[-1]=son p3[0]= p3[1]= p3[2]=fav p4[-2]=this p4[-1]=song p4[0]= p4[1]= p4[2]=favo s1[-2]=s s1[-1]=g s1[0]=o s1[1]=y s1[2]=s s2[-2]=is s2[-1]=ng s2[0]=to s2[1]=my s2[2]=es s3[-2]=his s3[-1]=ong s3[0]= s3[1]= s3[2]=tes s4[-2]=this s4[-1]=song s4[0]= s4[1]= s4[2]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=this|song w[-1]|w[0]=song|to w[0]|w[1]=to|my w[1]|w[2]=my|favourites pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP$ pos[1]|pos[2]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[-4..-1]=song w[1..4]=my w[1..4]=favourites +O w[-2]=song w[-1]=to w[0]=my w[1]=favourites wl[-2]=song wl[-1]=to wl[0]=my wl[1]=favourites pos[-2]=NN pos[-1]=IN pos[0]=PRP$ pos[1]=NNS chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LL shape[1]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=s p1[-1]=t p1[0]=m p1[1]=f p2[-2]=so p2[-1]=to p2[0]=my p2[1]=fa p3[-2]=son p3[-1]= p3[0]= p3[1]=fav p4[-2]=song p4[-1]= p4[0]= p4[1]=favo s1[-2]=g s1[-1]=o s1[0]=y s1[1]=s s2[-2]=ng s2[-1]=to s2[0]=my s2[1]=es s3[-2]=ong s3[-1]= s3[0]= s3[1]=tes s4[-2]=song s4[-1]= s4[0]= s4[1]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|to w[-1]|w[0]=to|my w[0]|w[1]=my|favourites pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP$ pos[0]|pos[1]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=add w[-4..-1]=this w[-4..-1]=song w[-4..-1]=to w[1..4]=favourites +O w[-2]=to w[-1]=my w[0]=favourites wl[-2]=to wl[-1]=my wl[0]=favourites pos[-2]=IN pos[-1]=PRP$ pos[0]=NNS chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=m p1[0]=f p2[-2]=to p2[-1]=my p2[0]=fa p3[-2]= p3[-1]= p3[0]=fav p4[-2]= p4[-1]= p4[0]=favo s1[-2]=o s1[-1]=y s1[0]=s s2[-2]=to s2[-1]=my s2[0]=es s3[-2]= s3[-1]= s3[0]=tes s4[-2]= s4[-1]= s4[0]=ites 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|my w[-1]|w[0]=my|favourites pos[-2]|pos[-1]=IN|PRP$ pos[-1]|pos[0]=PRP$|NNS chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=this w[-4..-1]=song w[-4..-1]=to w[-4..-1]=my __EOS__ + +O w[0]=stop w[1]=it wl[0]=stop wl[1]=it pos[0]=VB pos[1]=PRP chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=s p1[1]=i p2[0]=st p2[1]=it p3[0]=sto p3[1]= p4[0]=stop p4[1]= s1[0]=p s1[1]=t s2[0]=op s2[1]=it s3[0]=top s3[1]= s4[0]=stop s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=stop|it pos[0]|pos[1]=VB|PRP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=it __BOS__ +O w[-1]=stop w[0]=it wl[-1]=stop wl[0]=it pos[-1]=VB pos[0]=PRP chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=s p1[0]=i p2[-1]=st p2[0]=it p3[-1]=sto p3[0]= p4[-1]=stop p4[0]= s1[-1]=p s1[0]=t s2[-1]=op s2[0]=it s3[-1]=top s3[0]= s4[-1]=stop s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=stop|it pos[-1]|pos[0]=VB|PRP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=stop __EOS__ + +O w[0]=could w[1]=you w[2]=stop wl[0]=could wl[1]=you wl[2]=stop pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=s p2[0]=co p2[1]=yo p2[2]=st p3[0]=cou p3[1]=you p3[2]=sto p4[0]=coul p4[1]= p4[2]=stop s1[0]=d s1[1]=u s1[2]=p s2[0]=ld s2[1]=ou s2[2]=op s3[0]=uld s3[1]=you s3[2]=top s4[0]=ould s4[1]= s4[2]=stop 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=could|you w[1]|w[2]=you|stop pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=stop __BOS__ +O w[-1]=could w[0]=you w[1]=stop wl[-1]=could wl[0]=you wl[1]=stop pos[-1]=MD pos[0]=PRP pos[1]=VB chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLL shape[0]=LLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=c p1[0]=y p1[1]=s p2[-1]=co p2[0]=yo p2[1]=st p3[-1]=cou p3[0]=you p3[1]=sto p4[-1]=coul p4[0]= p4[1]=stop s1[-1]=d s1[0]=u s1[1]=p s2[-1]=ld s2[0]=ou s2[1]=op s3[-1]=uld s3[0]=you s3[1]=top s4[-1]=ould s4[0]= s4[1]=stop 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=could|you w[0]|w[1]=you|stop pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=could w[1..4]=stop +O w[-2]=could w[-1]=you w[0]=stop wl[-2]=could wl[-1]=you wl[0]=stop pos[-2]=MD pos[-1]=PRP pos[0]=VB chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=c p1[-1]=y p1[0]=s p2[-2]=co p2[-1]=yo p2[0]=st p3[-2]=cou p3[-1]=you p3[0]=sto p4[-2]=coul p4[-1]= p4[0]=stop s1[-2]=d s1[-1]=u s1[0]=p s2[-2]=ld s2[-1]=ou s2[0]=op s3[-2]=uld s3[-1]=you s3[0]=top s4[-2]=ould s4[-1]= s4[0]=stop 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=could|you w[-1]|w[0]=you|stop pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you __EOS__ + +O w[0]=music w[1]=off wl[0]=music wl[1]=off pos[0]=NN pos[1]=RP chk[0]=O chk[1]=O shape[0]=LLLLL shape[1]=LLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=m p1[1]=o p2[0]=mu p2[1]=of p3[0]=mus p3[1]=off p4[0]=musi p4[1]= s1[0]=c s1[1]=f s2[0]=ic s2[1]=ff s3[0]=sic s3[1]=off s4[0]=usic s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=music|off pos[0]|pos[1]=NN|RP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=off __BOS__ +O w[-1]=music w[0]=off wl[-1]=music wl[0]=off pos[-1]=NN pos[0]=RP chk[-1]=O chk[0]=O shape[-1]=LLLLL shape[0]=LLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=m p1[0]=o p2[-1]=mu p2[0]=of p3[-1]=mus p3[0]=off p4[-1]=musi p4[0]= s1[-1]=c s1[0]=f s2[-1]=ic s2[0]=ff s3[-1]=sic s3[0]=off s4[-1]=usic s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=music|off pos[-1]|pos[0]=NN|RP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=music __EOS__ + +O w[0]=can w[1]=you w[2]=stop wl[0]=can wl[1]=you wl[2]=stop pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=s p2[0]=ca p2[1]=yo p2[2]=st p3[0]=can p3[1]=you p3[2]=sto p4[0]= p4[1]= p4[2]=stop s1[0]=n s1[1]=u s1[2]=p s2[0]=an s2[1]=ou s2[2]=op s3[0]=can s3[1]=you s3[2]=top s4[0]= s4[1]= s4[2]=stop 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|stop pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=stop w[1..4]=the w[1..4]=music __BOS__ +O w[-1]=can w[0]=you w[1]=stop w[2]=the wl[-1]=can wl[0]=you wl[1]=stop wl[2]=the pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=s p1[2]=t p2[-1]=ca p2[0]=yo p2[1]=st p2[2]=th p3[-1]=can p3[0]=you p3[1]=sto p3[2]=the p4[-1]= p4[0]= p4[1]=stop p4[2]= s1[-1]=n s1[0]=u s1[1]=p s1[2]=e s2[-1]=an s2[0]=ou s2[1]=op s2[2]=he s3[-1]=can s3[0]=you s3[1]=top s3[2]=the s4[-1]= s4[0]= s4[1]=stop s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|stop w[1]|w[2]=stop|the pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=stop w[1..4]=the w[1..4]=music +O w[-2]=can w[-1]=you w[0]=stop w[1]=the w[2]=music wl[-2]=can wl[-1]=you wl[0]=stop wl[1]=the wl[2]=music pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=s p1[1]=t p1[2]=m p2[-2]=ca p2[-1]=yo p2[0]=st p2[1]=th p2[2]=mu p3[-2]=can p3[-1]=you p3[0]=sto p3[1]=the p3[2]=mus p4[-2]= p4[-1]= p4[0]=stop p4[1]= p4[2]=musi s1[-2]=n s1[-1]=u s1[0]=p s1[1]=e s1[2]=c s2[-2]=an s2[-1]=ou s2[0]=op s2[1]=he s2[2]=ic s3[-2]=can s3[-1]=you s3[0]=top s3[1]=the s3[2]=sic s4[-2]= s4[-1]= s4[0]=stop s4[1]= s4[2]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|stop w[0]|w[1]=stop|the w[1]|w[2]=the|music pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=the w[1..4]=music +O w[-2]=you w[-1]=stop w[0]=the w[1]=music wl[-2]=you wl[-1]=stop wl[0]=the wl[1]=music pos[-2]=PRP pos[-1]=VB pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=y p1[-1]=s p1[0]=t p1[1]=m p2[-2]=yo p2[-1]=st p2[0]=th p2[1]=mu p3[-2]=you p3[-1]=sto p3[0]=the p3[1]=mus p4[-2]= p4[-1]=stop p4[0]= p4[1]=musi s1[-2]=u s1[-1]=p s1[0]=e s1[1]=c s2[-2]=ou s2[-1]=op s2[0]=he s2[1]=ic s3[-2]=you s3[-1]=top s3[0]=the s3[1]=sic s4[-2]= s4[-1]=stop s4[0]= s4[1]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=you|stop w[-1]|w[0]=stop|the w[0]|w[1]=the|music pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=stop w[1..4]=music +O w[-2]=stop w[-1]=the w[0]=music wl[-2]=stop wl[-1]=the wl[0]=music pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=t p1[0]=m p2[-2]=st p2[-1]=th p2[0]=mu p3[-2]=sto p3[-1]=the p3[0]=mus p4[-2]=stop p4[-1]= p4[0]=musi s1[-2]=p s1[-1]=e s1[0]=c s2[-2]=op s2[-1]=he s2[0]=ic s3[-2]=top s3[-1]=the s3[0]=sic s4[-2]=stop s4[-1]= s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=stop|the w[-1]|w[0]=the|music pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=stop w[-4..-1]=the __EOS__ + +O w[0]=stop wl[0]=stop pos[0]=VB chk[0]=O shape[0]=LLLL shaped[0]=L type[0]=AllLetter p1[0]=s p2[0]=st p3[0]=sto p4[0]=stop s1[0]=p s2[0]=op s3[0]=top s4[0]=stop 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=stop w[1]=playing wl[0]=stop wl[1]=playing pos[0]=VB pos[1]=VBG chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=s p1[1]=p p2[0]=st p2[1]=pl p3[0]=sto p3[1]=pla p4[0]=stop p4[1]=play s1[0]=p s1[1]=g s2[0]=op s2[1]=ng s3[0]=top s3[1]=ing s4[0]=stop s4[1]=ying 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=stop|playing pos[0]|pos[1]=VB|VBG chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=playing __BOS__ +O w[-1]=stop w[0]=playing wl[-1]=stop wl[0]=playing pos[-1]=VB pos[0]=VBG chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=s p1[0]=p p2[-1]=st p2[0]=pl p3[-1]=sto p3[0]=pla p4[-1]=stop p4[0]=play s1[-1]=p s1[0]=g s2[-1]=op s2[0]=ng s3[-1]=top s3[0]=ing s4[-1]=stop s4[0]=ying 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=stop|playing pos[-1]|pos[0]=VB|VBG chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=stop __EOS__ + +O w[0]=stop w[1]=the w[2]=music wl[0]=stop wl[1]=the wl[2]=music pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=m p2[0]=st p2[1]=th p2[2]=mu p3[0]=sto p3[1]=the p3[2]=mus p4[0]=stop p4[1]= p4[2]=musi s1[0]=p s1[1]=e s1[2]=c s2[0]=op s2[1]=he s2[2]=ic s3[0]=top s3[1]=the s3[2]=sic s4[0]=stop s4[1]= s4[2]=usic 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=stop|the w[1]|w[2]=the|music pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=music __BOS__ +O w[-1]=stop w[0]=the w[1]=music wl[-1]=stop wl[0]=the wl[1]=music pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=s p1[0]=t p1[1]=m p2[-1]=st p2[0]=th p2[1]=mu p3[-1]=sto p3[0]=the p3[1]=mus p4[-1]=stop p4[0]= p4[1]=musi s1[-1]=p s1[0]=e s1[1]=c s2[-1]=op s2[0]=he s2[1]=ic s3[-1]=top s3[0]=the s3[1]=sic s4[-1]=stop s4[0]= s4[1]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=stop|the w[0]|w[1]=the|music pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=stop w[1..4]=music +O w[-2]=stop w[-1]=the w[0]=music wl[-2]=stop wl[-1]=the wl[0]=music pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=t p1[0]=m p2[-2]=st p2[-1]=th p2[0]=mu p3[-2]=sto p3[-1]=the p3[0]=mus p4[-2]=stop p4[-1]= p4[0]=musi s1[-2]=p s1[-1]=e s1[0]=c s2[-2]=op s2[-1]=he s2[0]=ic s3[-2]=top s3[-1]=the s3[0]=sic s4[-2]=stop s4[-1]= s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=stop|the w[-1]|w[0]=the|music pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=stop w[-4..-1]=the __EOS__ + +O w[0]=turn w[1]=off w[2]=music wl[0]=turn wl[1]=off wl[2]=music pos[0]=VB pos[1]=RP pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=o p1[2]=m p2[0]=tu p2[1]=of p2[2]=mu p3[0]=tur p3[1]=off p3[2]=mus p4[0]=turn p4[1]= p4[2]=musi s1[0]=n s1[1]=f s1[2]=c s2[0]=rn s2[1]=ff s2[2]=ic s3[0]=urn s3[1]=off s3[2]=sic s4[0]=turn s4[1]= s4[2]=usic 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=turn|off w[1]|w[2]=off|music pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=off w[1..4]=music __BOS__ +O w[-1]=turn w[0]=off w[1]=music wl[-1]=turn wl[0]=off wl[1]=music pos[-1]=VB pos[0]=RP pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=t p1[0]=o p1[1]=m p2[-1]=tu p2[0]=of p2[1]=mu p3[-1]=tur p3[0]=off p3[1]=mus p4[-1]=turn p4[0]= p4[1]=musi s1[-1]=n s1[0]=f s1[1]=c s2[-1]=rn s2[0]=ff s2[1]=ic s3[-1]=urn s3[0]=off s3[1]=sic s4[-1]=turn s4[0]= s4[1]=usic 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=turn|off w[0]|w[1]=off|music pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=turn w[1..4]=music +O w[-2]=turn w[-1]=off w[0]=music wl[-2]=turn wl[-1]=off wl[0]=music pos[-2]=VB pos[-1]=RP pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=o p1[0]=m p2[-2]=tu p2[-1]=of p2[0]=mu p3[-2]=tur p3[-1]=off p3[0]=mus p4[-2]=turn p4[-1]= p4[0]=musi s1[-2]=n s1[-1]=f s1[0]=c s2[-2]=rn s2[-1]=ff s2[0]=ic s3[-2]=urn s3[-1]=off s3[0]=sic s4[-2]=turn s4[-1]= s4[0]=usic 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=turn|off w[-1]|w[0]=off|music pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=off __EOS__ + +O w[0]=enough wl[0]=enough pos[0]=RB chk[0]=O shape[0]=LLLLLL shaped[0]=L type[0]=AllLetter p1[0]=e p2[0]=en p3[0]=eno p4[0]=enou s1[0]=h s2[0]=gh s3[0]=ugh s4[0]=ough 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=enough w[1]=music wl[0]=enough wl[1]=music pos[0]=JJ pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLLLL shape[1]=LLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=e p1[1]=m p2[0]=en p2[1]=mu p3[0]=eno p3[1]=mus p4[0]=enou p4[1]=musi s1[0]=h s1[1]=c s2[0]=gh s2[1]=ic s3[0]=ugh s3[1]=sic s4[0]=ough s4[1]=usic 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=enough|music pos[0]|pos[1]=JJ|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=music __BOS__ +O w[-1]=enough w[0]=music wl[-1]=enough wl[0]=music pos[-1]=JJ pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLLLL shape[0]=LLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=e p1[0]=m p2[-1]=en p2[0]=mu p3[-1]=eno p3[0]=mus p4[-1]=enou p4[0]=musi s1[-1]=h s1[0]=c s2[-1]=gh s2[0]=ic s3[-1]=ugh s3[0]=sic s4[-1]=ough s4[0]=usic 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=enough|music pos[-1]|pos[0]=JJ|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=enough __EOS__ + +O w[0]=repeat wl[0]=repeat pos[0]=VB chk[0]=O shape[0]=LLLLLL shaped[0]=L type[0]=AllLetter p1[0]=r p2[0]=re p3[0]=rep p4[0]=repe s1[0]=t s2[0]=at s3[0]=eat s4[0]=peat 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=repeat w[1]=one w[2]=more wl[0]=repeat wl[1]=one wl[2]=more pos[0]=VB pos[1]=CD pos[2]=JJR chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=o p1[2]=m p2[0]=re p2[1]=on p2[2]=mo p3[0]=rep p3[1]=one p3[2]=mor p4[0]=repe p4[1]= p4[2]=more s1[0]=t s1[1]=e s1[2]=e s2[0]=at s2[1]=ne s2[2]=re s3[0]=eat s3[1]=one s3[2]=ore s4[0]=peat s4[1]= s4[2]=more 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=repeat|one w[1]|w[2]=one|more pos[0]|pos[1]=VB|CD pos[1]|pos[2]=CD|JJR chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=one w[1..4]=more w[1..4]=time __BOS__ +O w[-1]=repeat w[0]=one w[1]=more w[2]=time wl[-1]=repeat wl[0]=one wl[1]=more wl[2]=time pos[-1]=VB pos[0]=CD pos[1]=JJR pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=r p1[0]=o p1[1]=m p1[2]=t p2[-1]=re p2[0]=on p2[1]=mo p2[2]=ti p3[-1]=rep p3[0]=one p3[1]=mor p3[2]=tim p4[-1]=repe p4[0]= p4[1]=more p4[2]=time s1[-1]=t s1[0]=e s1[1]=e s1[2]=e s2[-1]=at s2[0]=ne s2[1]=re s2[2]=me s3[-1]=eat s3[0]=one s3[1]=ore s3[2]=ime s4[-1]=peat s4[0]= s4[1]=more s4[2]=time 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=repeat|one w[0]|w[1]=one|more w[1]|w[2]=more|time pos[-1]|pos[0]=VB|CD pos[0]|pos[1]=CD|JJR pos[1]|pos[2]=JJR|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[1..4]=more w[1..4]=time +O w[-2]=repeat w[-1]=one w[0]=more w[1]=time wl[-2]=repeat wl[-1]=one wl[0]=more wl[1]=time pos[-2]=VB pos[-1]=CD pos[0]=JJR pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=r p1[-1]=o p1[0]=m p1[1]=t p2[-2]=re p2[-1]=on p2[0]=mo p2[1]=ti p3[-2]=rep p3[-1]=one p3[0]=mor p3[1]=tim p4[-2]=repe p4[-1]= p4[0]=more p4[1]=time s1[-2]=t s1[-1]=e s1[0]=e s1[1]=e s2[-2]=at s2[-1]=ne s2[0]=re s2[1]=me s3[-2]=eat s3[-1]=one s3[0]=ore s3[1]=ime s4[-2]=peat s4[-1]= s4[0]=more s4[1]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=repeat|one w[-1]|w[0]=one|more w[0]|w[1]=more|time pos[-2]|pos[-1]=VB|CD pos[-1]|pos[0]=CD|JJR pos[0]|pos[1]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=one w[1..4]=time +O w[-2]=one w[-1]=more w[0]=time wl[-2]=one wl[-1]=more wl[0]=time pos[-2]=CD pos[-1]=JJR pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=m p1[0]=t p2[-2]=on p2[-1]=mo p2[0]=ti p3[-2]=one p3[-1]=mor p3[0]=tim p4[-2]= p4[-1]=more p4[0]=time s1[-2]=e s1[-1]=e s1[0]=e s2[-2]=ne s2[-1]=re s2[0]=me s3[-2]=one s3[-1]=ore s3[0]=ime s4[-2]= s4[-1]=more s4[0]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=one|more w[-1]|w[0]=more|time pos[-2]|pos[-1]=CD|JJR pos[-1]|pos[0]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=one w[-4..-1]=more __EOS__ + +O w[0]=put w[1]=it w[2]=on wl[0]=put wl[1]=it wl[2]=on pos[0]=VB pos[1]=PRP pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=i p1[2]=o p2[0]=pu p2[1]=it p2[2]=on p3[0]=put p3[1]= p3[2]= p4[0]= p4[1]= p4[2]= s1[0]=t s1[1]=t s1[2]=n s2[0]=ut s2[1]=it s2[2]=on s3[0]=put s3[1]= s3[2]= s4[0]= s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|it w[1]|w[2]=it|on pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=on w[1..4]=repeat w[1..4]=mode __BOS__ +O w[-1]=put w[0]=it w[1]=on w[2]=repeat wl[-1]=put wl[0]=it wl[1]=on wl[2]=repeat pos[-1]=VB pos[0]=PRP pos[1]=IN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LL shape[1]=LL shape[2]=LLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=i p1[1]=o p1[2]=r p2[-1]=pu p2[0]=it p2[1]=on p2[2]=re p3[-1]=put p3[0]= p3[1]= p3[2]=rep p4[-1]= p4[0]= p4[1]= p4[2]=repe s1[-1]=t s1[0]=t s1[1]=n s1[2]=t s2[-1]=ut s2[0]=it s2[1]=on s2[2]=at s3[-1]=put s3[0]= s3[1]= s3[2]=eat s4[-1]= s4[0]= s4[1]= s4[2]=peat 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|it w[0]|w[1]=it|on w[1]|w[2]=on|repeat pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|IN pos[1]|pos[2]=IN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=on w[1..4]=repeat w[1..4]=mode +O w[-2]=put w[-1]=it w[0]=on w[1]=repeat w[2]=mode wl[-2]=put wl[-1]=it wl[0]=on wl[1]=repeat wl[2]=mode pos[-2]=VB pos[-1]=PRP pos[0]=IN pos[1]=NN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LL shape[0]=LL shape[1]=LLLLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=i p1[0]=o p1[1]=r p1[2]=m p2[-2]=pu p2[-1]=it p2[0]=on p2[1]=re p2[2]=mo p3[-2]=put p3[-1]= p3[0]= p3[1]=rep p3[2]=mod p4[-2]= p4[-1]= p4[0]= p4[1]=repe p4[2]=mode s1[-2]=t s1[-1]=t s1[0]=n s1[1]=t s1[2]=e s2[-2]=ut s2[-1]=it s2[0]=on s2[1]=at s2[2]=de s3[-2]=put s3[-1]= s3[0]= s3[1]=eat s3[2]=ode s4[-2]= s4[-1]= s4[0]= s4[1]=peat s4[2]=mode 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=put|it w[-1]|w[0]=it|on w[0]|w[1]=on|repeat w[1]|w[2]=repeat|mode pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|IN pos[0]|pos[1]=IN|NN pos[1]|pos[2]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=it w[1..4]=repeat w[1..4]=mode +O w[-2]=it w[-1]=on w[0]=repeat w[1]=mode wl[-2]=it wl[-1]=on wl[0]=repeat wl[1]=mode pos[-2]=PRP pos[-1]=IN pos[0]=NN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LL shape[0]=LLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=i p1[-1]=o p1[0]=r p1[1]=m p2[-2]=it p2[-1]=on p2[0]=re p2[1]=mo p3[-2]= p3[-1]= p3[0]=rep p3[1]=mod p4[-2]= p4[-1]= p4[0]=repe p4[1]=mode s1[-2]=t s1[-1]=n s1[0]=t s1[1]=e s2[-2]=it s2[-1]=on s2[0]=at s2[1]=de s3[-2]= s3[-1]= s3[0]=eat s3[1]=ode s4[-2]= s4[-1]= s4[0]=peat s4[1]=mode 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=it|on w[-1]|w[0]=on|repeat w[0]|w[1]=repeat|mode pos[-2]|pos[-1]=PRP|IN pos[-1]|pos[0]=IN|NN pos[0]|pos[1]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=it w[-4..-1]=on w[1..4]=mode +O w[-2]=on w[-1]=repeat w[0]=mode wl[-2]=on wl[-1]=repeat wl[0]=mode pos[-2]=IN pos[-1]=NN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=r p1[0]=m p2[-2]=on p2[-1]=re p2[0]=mo p3[-2]= p3[-1]=rep p3[0]=mod p4[-2]= p4[-1]=repe p4[0]=mode s1[-2]=n s1[-1]=t s1[0]=e s2[-2]=on s2[-1]=at s2[0]=de s3[-2]= s3[-1]=eat s3[0]=ode s4[-2]= s4[-1]=peat s4[0]=mode 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=on|repeat w[-1]|w[0]=repeat|mode pos[-2]|pos[-1]=IN|NN pos[-1]|pos[0]=NN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=it w[-4..-1]=on w[-4..-1]=repeat __EOS__ + +O w[0]=play w[1]=this w[2]=track wl[0]=play wl[1]=this wl[2]=track pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=t p2[0]=pl p2[1]=th p2[2]=tr p3[0]=pla p3[1]=thi p3[2]=tra p4[0]=play p4[1]=this p4[2]=trac s1[0]=y s1[1]=s s1[2]=k s2[0]=ay s2[1]=is s2[2]=ck s3[0]=lay s3[1]=his s3[2]=ack s4[0]=play s4[1]=this s4[2]=rack 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|this w[1]|w[2]=this|track pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=track w[1..4]=once w[1..4]=again __BOS__ +O w[-1]=play w[0]=this w[1]=track w[2]=once wl[-1]=play wl[0]=this wl[1]=track wl[2]=once pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=RB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=t p1[2]=o p2[-1]=pl p2[0]=th p2[1]=tr p2[2]=on p3[-1]=pla p3[0]=thi p3[1]=tra p3[2]=onc p4[-1]=play p4[0]=this p4[1]=trac p4[2]=once s1[-1]=y s1[0]=s s1[1]=k s1[2]=e s2[-1]=ay s2[0]=is s2[1]=ck s2[2]=ce s3[-1]=lay s3[0]=his s3[1]=ack s3[2]=nce s4[-1]=play s4[0]=this s4[1]=rack s4[2]=once 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|this w[0]|w[1]=this|track w[1]|w[2]=track|once pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|RB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=track w[1..4]=once w[1..4]=again +O w[-2]=play w[-1]=this w[0]=track w[1]=once w[2]=again wl[-2]=play wl[-1]=this wl[0]=track wl[1]=once wl[2]=again pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=RB pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=t p1[1]=o p1[2]=a p2[-2]=pl p2[-1]=th p2[0]=tr p2[1]=on p2[2]=ag p3[-2]=pla p3[-1]=thi p3[0]=tra p3[1]=onc p3[2]=aga p4[-2]=play p4[-1]=this p4[0]=trac p4[1]=once p4[2]=agai s1[-2]=y s1[-1]=s s1[0]=k s1[1]=e s1[2]=n s2[-2]=ay s2[-1]=is s2[0]=ck s2[1]=ce s2[2]=in s3[-2]=lay s3[-1]=his s3[0]=ack s3[1]=nce s3[2]=ain s4[-2]=play s4[-1]=this s4[0]=rack s4[1]=once s4[2]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|this w[-1]|w[0]=this|track w[0]|w[1]=track|once w[1]|w[2]=once|again pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|RB pos[1]|pos[2]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=this w[1..4]=once w[1..4]=again +O w[-2]=this w[-1]=track w[0]=once w[1]=again wl[-2]=this wl[-1]=track wl[0]=once wl[1]=again pos[-2]=DT pos[-1]=NN pos[0]=RB pos[1]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=t p1[0]=o p1[1]=a p2[-2]=th p2[-1]=tr p2[0]=on p2[1]=ag p3[-2]=thi p3[-1]=tra p3[0]=onc p3[1]=aga p4[-2]=this p4[-1]=trac p4[0]=once p4[1]=agai s1[-2]=s s1[-1]=k s1[0]=e s1[1]=n s2[-2]=is s2[-1]=ck s2[0]=ce s2[1]=in s3[-2]=his s3[-1]=ack s3[0]=nce s3[1]=ain s4[-2]=this s4[-1]=rack s4[0]=once s4[1]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=this|track w[-1]|w[0]=track|once w[0]|w[1]=once|again pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|RB pos[0]|pos[1]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=this w[-4..-1]=track w[1..4]=again +O w[-2]=track w[-1]=once w[0]=again wl[-2]=track wl[-1]=once wl[0]=again pos[-2]=NN pos[-1]=RB pos[0]=RB chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=o p1[0]=a p2[-2]=tr p2[-1]=on p2[0]=ag p3[-2]=tra p3[-1]=onc p3[0]=aga p4[-2]=trac p4[-1]=once p4[0]=agai s1[-2]=k s1[-1]=e s1[0]=n s2[-2]=ck s2[-1]=ce s2[0]=in s3[-2]=ack s3[-1]=nce s3[0]=ain s4[-2]=rack s4[-1]=once s4[0]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=track|once w[-1]|w[0]=once|again pos[-2]|pos[-1]=NN|RB pos[-1]|pos[0]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=this w[-4..-1]=track w[-4..-1]=once __EOS__ + +O w[0]=repeat w[1]=it wl[0]=repeat wl[1]=it pos[0]=VB pos[1]=PRP chk[0]=O chk[1]=O shape[0]=LLLLLL shape[1]=LL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=r p1[1]=i p2[0]=re p2[1]=it p3[0]=rep p3[1]= p4[0]=repe p4[1]= s1[0]=t s1[1]=t s2[0]=at s2[1]=it s3[0]=eat s3[1]= s4[0]=peat s4[1]= 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=repeat|it pos[0]|pos[1]=VB|PRP chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=it __BOS__ +O w[-1]=repeat w[0]=it wl[-1]=repeat wl[0]=it pos[-1]=VB pos[0]=PRP chk[-1]=O chk[0]=O shape[-1]=LLLLLL shape[0]=LL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=r p1[0]=i p2[-1]=re p2[0]=it p3[-1]=rep p3[0]= p4[-1]=repe p4[0]= s1[-1]=t s1[0]=t s2[-1]=at s2[0]=it s3[-1]=eat s3[0]= s4[-1]=peat s4[0]= 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=repeat|it pos[-1]|pos[0]=VB|PRP chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat __EOS__ + +O w[0]=play w[1]=this w[2]=song wl[0]=play wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=thi p3[2]=son p4[0]=play p4[1]=this p4[2]=song s1[0]=y s1[1]=s s1[2]=g s2[0]=ay s2[1]=is s2[2]=ng s3[0]=lay s3[1]=his s3[2]=ong s4[0]=play s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song w[1..4]=from w[1..4]=the __BOS__ +O w[-1]=play w[0]=this w[1]=song w[2]=from wl[-1]=play wl[0]=this wl[1]=song wl[2]=from pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=s p1[2]=f p2[-1]=pl p2[0]=th p2[1]=so p2[2]=fr p3[-1]=pla p3[0]=thi p3[1]=son p3[2]=fro p4[-1]=play p4[0]=this p4[1]=song p4[2]=from s1[-1]=y s1[0]=s s1[1]=g s1[2]=m s2[-1]=ay s2[0]=is s2[1]=ng s2[2]=om s3[-1]=lay s3[0]=his s3[1]=ong s3[2]=rom s4[-1]=play s4[0]=this s4[1]=song s4[2]=from 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|this w[0]|w[1]=this|song w[1]|w[2]=song|from pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=song w[1..4]=from w[1..4]=the w[1..4]=beginning +O w[-2]=play w[-1]=this w[0]=song w[1]=from w[2]=the wl[-2]=play wl[-1]=this wl[0]=song wl[1]=from wl[2]=the pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p1[1]=f p1[2]=t p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=fr p2[2]=th p3[-2]=pla p3[-1]=thi p3[0]=son p3[1]=fro p3[2]=the p4[-2]=play p4[-1]=this p4[0]=song p4[1]=from p4[2]= s1[-2]=y s1[-1]=s s1[0]=g s1[1]=m s1[2]=e s2[-2]=ay s2[-1]=is s2[0]=ng s2[1]=om s2[2]=he s3[-2]=lay s3[-1]=his s3[0]=ong s3[1]=rom s3[2]=the s4[-2]=play s4[-1]=this s4[0]=song s4[1]=from s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|this w[-1]|w[0]=this|song w[0]|w[1]=song|from w[1]|w[2]=from|the pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=this w[1..4]=from w[1..4]=the w[1..4]=beginning +O w[-2]=this w[-1]=song w[0]=from w[1]=the w[2]=beginning wl[-2]=this wl[-1]=song wl[0]=from wl[1]=the wl[2]=beginning pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=s p1[0]=f p1[1]=t p1[2]=b p2[-2]=th p2[-1]=so p2[0]=fr p2[1]=th p2[2]=be p3[-2]=thi p3[-1]=son p3[0]=fro p3[1]=the p3[2]=beg p4[-2]=this p4[-1]=song p4[0]=from p4[1]= p4[2]=begi s1[-2]=s s1[-1]=g s1[0]=m s1[1]=e s1[2]=g s2[-2]=is s2[-1]=ng s2[0]=om s2[1]=he s2[2]=ng s3[-2]=his s3[-1]=ong s3[0]=rom s3[1]=the s3[2]=ing s4[-2]=this s4[-1]=song s4[0]=from s4[1]= s4[2]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=this|song w[-1]|w[0]=song|from w[0]|w[1]=from|the w[1]|w[2]=the|beginning pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=this w[-4..-1]=song w[1..4]=the w[1..4]=beginning +O w[-2]=song w[-1]=from w[0]=the w[1]=beginning wl[-2]=song wl[-1]=from wl[0]=the wl[1]=beginning pos[-2]=NN pos[-1]=IN pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=s p1[-1]=f p1[0]=t p1[1]=b p2[-2]=so p2[-1]=fr p2[0]=th p2[1]=be p3[-2]=son p3[-1]=fro p3[0]=the p3[1]=beg p4[-2]=song p4[-1]=from p4[0]= p4[1]=begi s1[-2]=g s1[-1]=m s1[0]=e s1[1]=g s2[-2]=ng s2[-1]=om s2[0]=he s2[1]=ng s3[-2]=ong s3[-1]=rom s3[0]=the s3[1]=ing s4[-2]=song s4[-1]=from s4[0]= s4[1]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=song|from w[-1]|w[0]=from|the w[0]|w[1]=the|beginning pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=this w[-4..-1]=song w[-4..-1]=from w[1..4]=beginning +O w[-2]=from w[-1]=the w[0]=beginning wl[-2]=from wl[-1]=the wl[0]=beginning pos[-2]=IN pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=f p1[-1]=t p1[0]=b p2[-2]=fr p2[-1]=th p2[0]=be p3[-2]=fro p3[-1]=the p3[0]=beg p4[-2]=from p4[-1]= p4[0]=begi s1[-2]=m s1[-1]=e s1[0]=g s2[-2]=om s2[-1]=he s2[0]=ng s3[-2]=rom s3[-1]=the s3[0]=ing s4[-2]=from s4[-1]= s4[0]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=from|the w[-1]|w[0]=the|beginning pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=this w[-4..-1]=song w[-4..-1]=from w[-4..-1]=the __EOS__ + +O w[0]=repeat w[1]=it w[2]=once wl[0]=repeat wl[1]=it wl[2]=once pos[0]=VB pos[1]=PRP pos[2]=RB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=i p1[2]=o p2[0]=re p2[1]=it p2[2]=on p3[0]=rep p3[1]= p3[2]=onc p4[0]=repe p4[1]= p4[2]=once s1[0]=t s1[1]=t s1[2]=e s2[0]=at s2[1]=it s2[2]=ce s3[0]=eat s3[1]= s3[2]=nce s4[0]=peat s4[1]= s4[2]=once 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=repeat|it w[1]|w[2]=it|once pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|RB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=once w[1..4]=again __BOS__ +O w[-1]=repeat w[0]=it w[1]=once w[2]=again wl[-1]=repeat wl[0]=it wl[1]=once wl[2]=again pos[-1]=VB pos[0]=PRP pos[1]=RB pos[2]=RB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=r p1[0]=i p1[1]=o p1[2]=a p2[-1]=re p2[0]=it p2[1]=on p2[2]=ag p3[-1]=rep p3[0]= p3[1]=onc p3[2]=aga p4[-1]=repe p4[0]= p4[1]=once p4[2]=agai s1[-1]=t s1[0]=t s1[1]=e s1[2]=n s2[-1]=at s2[0]=it s2[1]=ce s2[2]=in s3[-1]=eat s3[0]= s3[1]=nce s3[2]=ain s4[-1]=peat s4[0]= s4[1]=once s4[2]=gain 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=repeat|it w[0]|w[1]=it|once w[1]|w[2]=once|again pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|RB pos[1]|pos[2]=RB|RB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[1..4]=once w[1..4]=again +O w[-2]=repeat w[-1]=it w[0]=once w[1]=again wl[-2]=repeat wl[-1]=it wl[0]=once wl[1]=again pos[-2]=VB pos[-1]=PRP pos[0]=RB pos[1]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=r p1[-1]=i p1[0]=o p1[1]=a p2[-2]=re p2[-1]=it p2[0]=on p2[1]=ag p3[-2]=rep p3[-1]= p3[0]=onc p3[1]=aga p4[-2]=repe p4[-1]= p4[0]=once p4[1]=agai s1[-2]=t s1[-1]=t s1[0]=e s1[1]=n s2[-2]=at s2[-1]=it s2[0]=ce s2[1]=in s3[-2]=eat s3[-1]= s3[0]=nce s3[1]=ain s4[-2]=peat s4[-1]= s4[0]=once s4[1]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=repeat|it w[-1]|w[0]=it|once w[0]|w[1]=once|again pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|RB pos[0]|pos[1]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=it w[1..4]=again +O w[-2]=it w[-1]=once w[0]=again wl[-2]=it wl[-1]=once wl[0]=again pos[-2]=PRP pos[-1]=RB pos[0]=RB chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=i p1[-1]=o p1[0]=a p2[-2]=it p2[-1]=on p2[0]=ag p3[-2]= p3[-1]=onc p3[0]=aga p4[-2]= p4[-1]=once p4[0]=agai s1[-2]=t s1[-1]=e s1[0]=n s2[-2]=it s2[-1]=ce s2[0]=in s3[-2]= s3[-1]=nce s3[0]=ain s4[-2]= s4[-1]=once s4[0]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=it|once w[-1]|w[0]=once|again pos[-2]|pos[-1]=PRP|RB pos[-1]|pos[0]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=it w[-4..-1]=once __EOS__ + +O w[0]=play w[1]=again w[2]=from wl[0]=play wl[1]=again wl[2]=from pos[0]=VB pos[1]=RB pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=f p2[0]=pl p2[1]=ag p2[2]=fr p3[0]=pla p3[1]=aga p3[2]=fro p4[0]=play p4[1]=agai p4[2]=from s1[0]=y s1[1]=n s1[2]=m s2[0]=ay s2[1]=in s2[2]=om s3[0]=lay s3[1]=ain s3[2]=rom s4[0]=play s4[1]=gain s4[2]=from 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|again w[1]|w[2]=again|from pos[0]|pos[1]=VB|RB pos[1]|pos[2]=RB|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=again w[1..4]=from w[1..4]=the w[1..4]=very __BOS__ +O w[-1]=play w[0]=again w[1]=from w[2]=the wl[-1]=play wl[0]=again wl[1]=from wl[2]=the pos[-1]=VB pos[0]=RB pos[1]=IN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=a p1[1]=f p1[2]=t p2[-1]=pl p2[0]=ag p2[1]=fr p2[2]=th p3[-1]=pla p3[0]=aga p3[1]=fro p3[2]=the p4[-1]=play p4[0]=agai p4[1]=from p4[2]= s1[-1]=y s1[0]=n s1[1]=m s1[2]=e s2[-1]=ay s2[0]=in s2[1]=om s2[2]=he s3[-1]=lay s3[0]=ain s3[1]=rom s3[2]=the s4[-1]=play s4[0]=gain s4[1]=from s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|again w[0]|w[1]=again|from w[1]|w[2]=from|the pos[-1]|pos[0]=VB|RB pos[0]|pos[1]=RB|IN pos[1]|pos[2]=IN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=from w[1..4]=the w[1..4]=very w[1..4]=beginning +O w[-2]=play w[-1]=again w[0]=from w[1]=the w[2]=very wl[-2]=play wl[-1]=again wl[0]=from wl[1]=the wl[2]=very pos[-2]=VB pos[-1]=RB pos[0]=IN pos[1]=DT pos[2]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=a p1[0]=f p1[1]=t p1[2]=v p2[-2]=pl p2[-1]=ag p2[0]=fr p2[1]=th p2[2]=ve p3[-2]=pla p3[-1]=aga p3[0]=fro p3[1]=the p3[2]=ver p4[-2]=play p4[-1]=agai p4[0]=from p4[1]= p4[2]=very s1[-2]=y s1[-1]=n s1[0]=m s1[1]=e s1[2]=y s2[-2]=ay s2[-1]=in s2[0]=om s2[1]=he s2[2]=ry s3[-2]=lay s3[-1]=ain s3[0]=rom s3[1]=the s3[2]=ery s4[-2]=play s4[-1]=gain s4[0]=from s4[1]= s4[2]=very 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|again w[-1]|w[0]=again|from w[0]|w[1]=from|the w[1]|w[2]=the|very pos[-2]|pos[-1]=VB|RB pos[-1]|pos[0]=RB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=again w[1..4]=the w[1..4]=very w[1..4]=beginning +O w[-2]=again w[-1]=from w[0]=the w[1]=very w[2]=beginning wl[-2]=again wl[-1]=from wl[0]=the wl[1]=very wl[2]=beginning pos[-2]=RB pos[-1]=IN pos[0]=DT pos[1]=JJ pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=a p1[-1]=f p1[0]=t p1[1]=v p1[2]=b p2[-2]=ag p2[-1]=fr p2[0]=th p2[1]=ve p2[2]=be p3[-2]=aga p3[-1]=fro p3[0]=the p3[1]=ver p3[2]=beg p4[-2]=agai p4[-1]=from p4[0]= p4[1]=very p4[2]=begi s1[-2]=n s1[-1]=m s1[0]=e s1[1]=y s1[2]=g s2[-2]=in s2[-1]=om s2[0]=he s2[1]=ry s2[2]=ng s3[-2]=ain s3[-1]=rom s3[0]=the s3[1]=ery s3[2]=ing s4[-2]=gain s4[-1]=from s4[0]= s4[1]=very s4[2]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=again|from w[-1]|w[0]=from|the w[0]|w[1]=the|very w[1]|w[2]=very|beginning pos[-2]|pos[-1]=RB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=again w[-4..-1]=from w[1..4]=very w[1..4]=beginning +O w[-2]=from w[-1]=the w[0]=very w[1]=beginning wl[-2]=from wl[-1]=the wl[0]=very wl[1]=beginning pos[-2]=IN pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=f p1[-1]=t p1[0]=v p1[1]=b p2[-2]=fr p2[-1]=th p2[0]=ve p2[1]=be p3[-2]=fro p3[-1]=the p3[0]=ver p3[1]=beg p4[-2]=from p4[-1]= p4[0]=very p4[1]=begi s1[-2]=m s1[-1]=e s1[0]=y s1[1]=g s2[-2]=om s2[-1]=he s2[0]=ry s2[1]=ng s3[-2]=rom s3[-1]=the s3[0]=ery s3[1]=ing s4[-2]=from s4[-1]= s4[0]=very s4[1]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=from|the w[-1]|w[0]=the|very w[0]|w[1]=very|beginning pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=again w[-4..-1]=from w[-4..-1]=the w[1..4]=beginning +O w[-2]=the w[-1]=very w[0]=beginning wl[-2]=the wl[-1]=very wl[0]=beginning pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLLLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=v p1[0]=b p2[-2]=th p2[-1]=ve p2[0]=be p3[-2]=the p3[-1]=ver p3[0]=beg p4[-2]= p4[-1]=very p4[0]=begi s1[-2]=e s1[-1]=y s1[0]=g s2[-2]=he s2[-1]=ry s2[0]=ng s3[-2]=the s3[-1]=ery s3[0]=ing s4[-2]= s4[-1]=very s4[0]=ning 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|very w[-1]|w[0]=very|beginning pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=again w[-4..-1]=from w[-4..-1]=the w[-4..-1]=very __EOS__ + +O w[0]=repeat w[1]=this w[2]=track wl[0]=repeat wl[1]=this wl[2]=track pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=t p1[2]=t p2[0]=re p2[1]=th p2[2]=tr p3[0]=rep p3[1]=thi p3[2]=tra p4[0]=repe p4[1]=this p4[2]=trac s1[0]=t s1[1]=s s1[2]=k s2[0]=at s2[1]=is s2[2]=ck s3[0]=eat s3[1]=his s3[2]=ack s4[0]=peat s4[1]=this s4[2]=rack 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=repeat|this w[1]|w[2]=this|track pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=track __BOS__ +O w[-1]=repeat w[0]=this w[1]=track wl[-1]=repeat wl[0]=this wl[1]=track pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=r p1[0]=t p1[1]=t p2[-1]=re p2[0]=th p2[1]=tr p3[-1]=rep p3[0]=thi p3[1]=tra p4[-1]=repe p4[0]=this p4[1]=trac s1[-1]=t s1[0]=s s1[1]=k s2[-1]=at s2[0]=is s2[1]=ck s3[-1]=eat s3[0]=his s3[1]=ack s4[-1]=peat s4[0]=this s4[1]=rack 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=repeat|this w[0]|w[1]=this|track pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=repeat w[1..4]=track +O w[-2]=repeat w[-1]=this w[0]=track wl[-2]=repeat wl[-1]=this wl[0]=track pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=r p1[-1]=t p1[0]=t p2[-2]=re p2[-1]=th p2[0]=tr p3[-2]=rep p3[-1]=thi p3[0]=tra p4[-2]=repe p4[-1]=this p4[0]=trac s1[-2]=t s1[-1]=s s1[0]=k s2[-2]=at s2[-1]=is s2[0]=ck s3[-2]=eat s3[-1]=his s3[0]=ack s4[-2]=peat s4[-1]=this s4[0]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=repeat|this w[-1]|w[0]=this|track pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=this __EOS__ + +O w[0]=one w[1]=more w[2]=time wl[0]=one wl[1]=more wl[2]=time pos[0]=CD pos[1]=JJR pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=o p1[1]=m p1[2]=t p2[0]=on p2[1]=mo p2[2]=ti p3[0]=one p3[1]=mor p3[2]=tim p4[0]= p4[1]=more p4[2]=time s1[0]=e s1[1]=e s1[2]=e s2[0]=ne s2[1]=re s2[2]=me s3[0]=one s3[1]=ore s3[2]=ime s4[0]= s4[1]=more s4[2]=time 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=one|more w[1]|w[2]=more|time pos[0]|pos[1]=CD|JJR pos[1]|pos[2]=JJR|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=more w[1..4]=time __BOS__ +O w[-1]=one w[0]=more w[1]=time wl[-1]=one wl[0]=more wl[1]=time pos[-1]=CD pos[0]=JJR pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=o p1[0]=m p1[1]=t p2[-1]=on p2[0]=mo p2[1]=ti p3[-1]=one p3[0]=mor p3[1]=tim p4[-1]= p4[0]=more p4[1]=time s1[-1]=e s1[0]=e s1[1]=e s2[-1]=ne s2[0]=re s2[1]=me s3[-1]=one s3[0]=ore s3[1]=ime s4[-1]= s4[0]=more s4[1]=time 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=one|more w[0]|w[1]=more|time pos[-1]|pos[0]=CD|JJR pos[0]|pos[1]=JJR|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=one w[1..4]=time +O w[-2]=one w[-1]=more w[0]=time wl[-2]=one wl[-1]=more wl[0]=time pos[-2]=CD pos[-1]=JJR pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=m p1[0]=t p2[-2]=on p2[-1]=mo p2[0]=ti p3[-2]=one p3[-1]=mor p3[0]=tim p4[-2]= p4[-1]=more p4[0]=time s1[-2]=e s1[-1]=e s1[0]=e s2[-2]=ne s2[-1]=re s2[0]=me s3[-2]=one s3[-1]=ore s3[0]=ime s4[-2]= s4[-1]=more s4[0]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=one|more w[-1]|w[0]=more|time pos[-2]|pos[-1]=CD|JJR pos[-1]|pos[0]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=one w[-4..-1]=more __EOS__ + +O w[0]=play w[1]=it w[2]=again wl[0]=play wl[1]=it wl[2]=again pos[0]=VB pos[1]=PRP pos[2]=RB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=i p1[2]=a p2[0]=pl p2[1]=it p2[2]=ag p3[0]=pla p3[1]= p3[2]=aga p4[0]=play p4[1]= p4[2]=agai s1[0]=y s1[1]=t s1[2]=n s2[0]=ay s2[1]=it s2[2]=in s3[0]=lay s3[1]= s3[2]=ain s4[0]=play s4[1]= s4[2]=gain 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|it w[1]|w[2]=it|again pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|RB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=again __BOS__ +O w[-1]=play w[0]=it w[1]=again wl[-1]=play wl[0]=it wl[1]=again pos[-1]=VB pos[0]=PRP pos[1]=RB chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=i p1[1]=a p2[-1]=pl p2[0]=it p2[1]=ag p3[-1]=pla p3[0]= p3[1]=aga p4[-1]=play p4[0]= p4[1]=agai s1[-1]=y s1[0]=t s1[1]=n s2[-1]=ay s2[0]=it s2[1]=in s3[-1]=lay s3[0]= s3[1]=ain s4[-1]=play s4[0]= s4[1]=gain 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|it w[0]|w[1]=it|again pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|RB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=again +O w[-2]=play w[-1]=it w[0]=again wl[-2]=play wl[-1]=it wl[0]=again pos[-2]=VB pos[-1]=PRP pos[0]=RB chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=i p1[0]=a p2[-2]=pl p2[-1]=it p2[0]=ag p3[-2]=pla p3[-1]= p3[0]=aga p4[-2]=play p4[-1]= p4[0]=agai s1[-2]=y s1[-1]=t s1[0]=n s2[-2]=ay s2[-1]=it s2[0]=in s3[-2]=lay s3[-1]= s3[0]=ain s4[-2]=play s4[-1]= s4[0]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|it w[-1]|w[0]=it|again pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=it __EOS__ + +O w[0]=repeat w[1]=please wl[0]=repeat wl[1]=please pos[0]=VB pos[1]=UH chk[0]=O chk[1]=O shape[0]=LLLLLL shape[1]=LLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=r p1[1]=p p2[0]=re p2[1]=pl p3[0]=rep p3[1]=ple p4[0]=repe p4[1]=plea s1[0]=t s1[1]=e s2[0]=at s2[1]=se s3[0]=eat s3[1]=ase s4[0]=peat s4[1]=ease 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=repeat|please pos[0]|pos[1]=VB|UH chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=please __BOS__ +O w[-1]=repeat w[0]=please wl[-1]=repeat wl[0]=please pos[-1]=VB pos[0]=UH chk[-1]=O chk[0]=O shape[-1]=LLLLLL shape[0]=LLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=r p1[0]=p p2[-1]=re p2[0]=pl p3[-1]=rep p3[0]=ple p4[-1]=repe p4[0]=plea s1[-1]=t s1[0]=e s2[-1]=at s2[0]=se s3[-1]=eat s3[0]=ase s4[-1]=peat s4[0]=ease 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=repeat|please pos[-1]|pos[0]=VB|UH chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat __EOS__ + +O w[0]=repeat w[1]=this w[2]=track wl[0]=repeat wl[1]=this wl[2]=track pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=t p1[2]=t p2[0]=re p2[1]=th p2[2]=tr p3[0]=rep p3[1]=thi p3[2]=tra p4[0]=repe p4[1]=this p4[2]=trac s1[0]=t s1[1]=s s1[2]=k s2[0]=at s2[1]=is s2[2]=ck s3[0]=eat s3[1]=his s3[2]=ack s4[0]=peat s4[1]=this s4[2]=rack 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=repeat|this w[1]|w[2]=this|track pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=track w[1..4]=one w[1..4]=more __BOS__ +O w[-1]=repeat w[0]=this w[1]=track w[2]=one wl[-1]=repeat wl[0]=this wl[1]=track wl[2]=one pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=CD chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=r p1[0]=t p1[1]=t p1[2]=o p2[-1]=re p2[0]=th p2[1]=tr p2[2]=on p3[-1]=rep p3[0]=thi p3[1]=tra p3[2]=one p4[-1]=repe p4[0]=this p4[1]=trac p4[2]= s1[-1]=t s1[0]=s s1[1]=k s1[2]=e s2[-1]=at s2[0]=is s2[1]=ck s2[2]=ne s3[-1]=eat s3[0]=his s3[1]=ack s3[2]=one s4[-1]=peat s4[0]=this s4[1]=rack s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=repeat|this w[0]|w[1]=this|track w[1]|w[2]=track|one pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|CD chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[1..4]=track w[1..4]=one w[1..4]=more w[1..4]=time +O w[-2]=repeat w[-1]=this w[0]=track w[1]=one w[2]=more wl[-2]=repeat wl[-1]=this wl[0]=track wl[1]=one wl[2]=more pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=CD pos[2]=JJR chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=r p1[-1]=t p1[0]=t p1[1]=o p1[2]=m p2[-2]=re p2[-1]=th p2[0]=tr p2[1]=on p2[2]=mo p3[-2]=rep p3[-1]=thi p3[0]=tra p3[1]=one p3[2]=mor p4[-2]=repe p4[-1]=this p4[0]=trac p4[1]= p4[2]=more s1[-2]=t s1[-1]=s s1[0]=k s1[1]=e s1[2]=e s2[-2]=at s2[-1]=is s2[0]=ck s2[1]=ne s2[2]=re s3[-2]=eat s3[-1]=his s3[0]=ack s3[1]=one s3[2]=ore s4[-2]=peat s4[-1]=this s4[0]=rack s4[1]= s4[2]=more 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=repeat|this w[-1]|w[0]=this|track w[0]|w[1]=track|one w[1]|w[2]=one|more pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|CD pos[1]|pos[2]=CD|JJR chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=this w[1..4]=one w[1..4]=more w[1..4]=time +O w[-2]=this w[-1]=track w[0]=one w[1]=more w[2]=time wl[-2]=this wl[-1]=track wl[0]=one wl[1]=more wl[2]=time pos[-2]=DT pos[-1]=NN pos[0]=CD pos[1]=JJR pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=t p1[0]=o p1[1]=m p1[2]=t p2[-2]=th p2[-1]=tr p2[0]=on p2[1]=mo p2[2]=ti p3[-2]=thi p3[-1]=tra p3[0]=one p3[1]=mor p3[2]=tim p4[-2]=this p4[-1]=trac p4[0]= p4[1]=more p4[2]=time s1[-2]=s s1[-1]=k s1[0]=e s1[1]=e s1[2]=e s2[-2]=is s2[-1]=ck s2[0]=ne s2[1]=re s2[2]=me s3[-2]=his s3[-1]=ack s3[0]=one s3[1]=ore s3[2]=ime s4[-2]=this s4[-1]=rack s4[0]= s4[1]=more s4[2]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=this|track w[-1]|w[0]=track|one w[0]|w[1]=one|more w[1]|w[2]=more|time pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|CD pos[0]|pos[1]=CD|JJR pos[1]|pos[2]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=this w[-4..-1]=track w[1..4]=more w[1..4]=time +O w[-2]=track w[-1]=one w[0]=more w[1]=time wl[-2]=track wl[-1]=one wl[0]=more wl[1]=time pos[-2]=NN pos[-1]=CD pos[0]=JJR pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=o p1[0]=m p1[1]=t p2[-2]=tr p2[-1]=on p2[0]=mo p2[1]=ti p3[-2]=tra p3[-1]=one p3[0]=mor p3[1]=tim p4[-2]=trac p4[-1]= p4[0]=more p4[1]=time s1[-2]=k s1[-1]=e s1[0]=e s1[1]=e s2[-2]=ck s2[-1]=ne s2[0]=re s2[1]=me s3[-2]=ack s3[-1]=one s3[0]=ore s3[1]=ime s4[-2]=rack s4[-1]= s4[0]=more s4[1]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=track|one w[-1]|w[0]=one|more w[0]|w[1]=more|time pos[-2]|pos[-1]=NN|CD pos[-1]|pos[0]=CD|JJR pos[0]|pos[1]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=this w[-4..-1]=track w[-4..-1]=one w[1..4]=time +O w[-2]=one w[-1]=more w[0]=time wl[-2]=one wl[-1]=more wl[0]=time pos[-2]=CD pos[-1]=JJR pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=m p1[0]=t p2[-2]=on p2[-1]=mo p2[0]=ti p3[-2]=one p3[-1]=mor p3[0]=tim p4[-2]= p4[-1]=more p4[0]=time s1[-2]=e s1[-1]=e s1[0]=e s2[-2]=ne s2[-1]=re s2[0]=me s3[-2]=one s3[-1]=ore s3[0]=ime s4[-2]= s4[-1]=more s4[0]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=one|more w[-1]|w[0]=more|time pos[-2]|pos[-1]=CD|JJR pos[-1]|pos[0]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=this w[-4..-1]=track w[-4..-1]=one w[-4..-1]=more __EOS__ + +O w[0]=I w[1]=want w[2]=to wl[0]=i wl[1]=want wl[2]=to pos[0]=PRP pos[1]=VBP pos[2]=TO chk[0]=O chk[1]=O chk[2]=O shape[0]=U shape[1]=LLLL shape[2]=LL shaped[0]=U shaped[1]=L shaped[2]=L type[0]=AllUpper type[1]=AllLetter type[2]=AllLetter p1[0]=I p1[1]=w p1[2]=t p2[0]= p2[1]=wa p2[2]=to p3[0]= p3[1]=wan p3[2]= p4[0]= p4[1]=want p4[2]= s1[0]=I s1[1]=t s1[2]=o s2[0]= s2[1]=nt s2[2]=to s3[0]= s3[1]=ant s3[2]= s4[0]= s4[1]=want s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=yes iu[1]=no iu[2]=no au[0]=yes au[1]=no au[2]=no al[0]=no al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=yes cu[1]=no cu[2]=no cl[0]=no cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=I|want w[1]|w[2]=want|to pos[0]|pos[1]=PRP|VBP pos[1]|pos[2]=VBP|TO chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=U|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllUpper|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=want w[1..4]=to w[1..4]=listen w[1..4]=to __BOS__ +O w[-1]=I w[0]=want w[1]=to w[2]=listen wl[-1]=i wl[0]=want wl[1]=to wl[2]=listen pos[-1]=PRP pos[0]=VBP pos[1]=TO pos[2]=VB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=U shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=U shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllUpper type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=I p1[0]=w p1[1]=t p1[2]=l p2[-1]= p2[0]=wa p2[1]=to p2[2]=li p3[-1]= p3[0]=wan p3[1]= p3[2]=lis p4[-1]= p4[0]=want p4[1]= p4[2]=list s1[-1]=I s1[0]=t s1[1]=o s1[2]=n s2[-1]= s2[0]=nt s2[1]=to s2[2]=en s3[-1]= s3[0]=ant s3[1]= s3[2]=ten s4[-1]= s4[0]=want s4[1]= s4[2]=sten 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=yes iu[0]=no iu[1]=no iu[2]=no au[-1]=yes au[0]=no au[1]=no au[2]=no al[-1]=no al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=yes cu[0]=no cu[1]=no cu[2]=no cl[-1]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=I|want w[0]|w[1]=want|to w[1]|w[2]=to|listen pos[-1]|pos[0]=PRP|VBP pos[0]|pos[1]=VBP|TO pos[1]|pos[2]=TO|VB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=U|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllUpper|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[1..4]=to w[1..4]=listen w[1..4]=to w[1..4]=this +O w[-2]=I w[-1]=want w[0]=to w[1]=listen w[2]=to wl[-2]=i wl[-1]=want wl[0]=to wl[1]=listen wl[2]=to pos[-2]=PRP pos[-1]=VBP pos[0]=TO pos[1]=VB pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=U shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LL shaped[-2]=U shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllUpper type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=I p1[-1]=w p1[0]=t p1[1]=l p1[2]=t p2[-2]= p2[-1]=wa p2[0]=to p2[1]=li p2[2]=to p3[-2]= p3[-1]=wan p3[0]= p3[1]=lis p3[2]= p4[-2]= p4[-1]=want p4[0]= p4[1]=list p4[2]= s1[-2]=I s1[-1]=t s1[0]=o s1[1]=n s1[2]=o s2[-2]= s2[-1]=nt s2[0]=to s2[1]=en s2[2]=to s3[-2]= s3[-1]=ant s3[0]= s3[1]=ten s3[2]= s4[-2]= s4[-1]=want s4[0]= s4[1]=sten s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=yes iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=yes au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=yes cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=I|want w[-1]|w[0]=want|to w[0]|w[1]=to|listen w[1]|w[2]=listen|to pos[-2]|pos[-1]=PRP|VBP pos[-1]|pos[0]=VBP|TO pos[0]|pos[1]=TO|VB pos[1]|pos[2]=VB|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=U|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllUpper|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[1..4]=listen w[1..4]=to w[1..4]=this w[1..4]=song +O w[-2]=want w[-1]=to w[0]=listen w[1]=to w[2]=this wl[-2]=want wl[-1]=to wl[0]=listen wl[1]=to wl[2]=this pos[-2]=VBP pos[-1]=TO pos[0]=VB pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=w p1[-1]=t p1[0]=l p1[1]=t p1[2]=t p2[-2]=wa p2[-1]=to p2[0]=li p2[1]=to p2[2]=th p3[-2]=wan p3[-1]= p3[0]=lis p3[1]= p3[2]=thi p4[-2]=want p4[-1]= p4[0]=list p4[1]= p4[2]=this s1[-2]=t s1[-1]=o s1[0]=n s1[1]=o s1[2]=s s2[-2]=nt s2[-1]=to s2[0]=en s2[1]=to s2[2]=is s3[-2]=ant s3[-1]= s3[0]=ten s3[1]= s3[2]=his s4[-2]=want s4[-1]= s4[0]=sten s4[1]= s4[2]=this 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=want|to w[-1]|w[0]=to|listen w[0]|w[1]=listen|to w[1]|w[2]=to|this pos[-2]|pos[-1]=VBP|TO pos[-1]|pos[0]=TO|VB pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[1..4]=to w[1..4]=this w[1..4]=song w[1..4]=once +O w[-2]=to w[-1]=listen w[0]=to w[1]=this w[2]=song wl[-2]=to wl[-1]=listen wl[0]=to wl[1]=this wl[2]=song pos[-2]=TO pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LL shape[1]=LLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=l p1[0]=t p1[1]=t p1[2]=s p2[-2]=to p2[-1]=li p2[0]=to p2[1]=th p2[2]=so p3[-2]= p3[-1]=lis p3[0]= p3[1]=thi p3[2]=son p4[-2]= p4[-1]=list p4[0]= p4[1]=this p4[2]=song s1[-2]=o s1[-1]=n s1[0]=o s1[1]=s s1[2]=g s2[-2]=to s2[-1]=en s2[0]=to s2[1]=is s2[2]=ng s3[-2]= s3[-1]=ten s3[0]= s3[1]=his s3[2]=ong s4[-2]= s4[-1]=sten s4[0]= s4[1]=this s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|listen w[-1]|w[0]=listen|to w[0]|w[1]=to|this w[1]|w[2]=this|song pos[-2]|pos[-1]=TO|VB pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=I w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[1..4]=this w[1..4]=song w[1..4]=once w[1..4]=again +O w[-2]=listen w[-1]=to w[0]=this w[1]=song w[2]=once wl[-2]=listen wl[-1]=to wl[0]=this wl[1]=song wl[2]=once pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=NN pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLLL shape[-1]=LL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=l p1[-1]=t p1[0]=t p1[1]=s p1[2]=o p2[-2]=li p2[-1]=to p2[0]=th p2[1]=so p2[2]=on p3[-2]=lis p3[-1]= p3[0]=thi p3[1]=son p3[2]=onc p4[-2]=list p4[-1]= p4[0]=this p4[1]=song p4[2]=once s1[-2]=n s1[-1]=o s1[0]=s s1[1]=g s1[2]=e s2[-2]=en s2[-1]=to s2[0]=is s2[1]=ng s2[2]=ce s3[-2]=ten s3[-1]= s3[0]=his s3[1]=ong s3[2]=nce s4[-2]=sten s4[-1]= s4[0]=this s4[1]=song s4[2]=once 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=listen|to w[-1]|w[0]=to|this w[0]|w[1]=this|song w[1]|w[2]=song|once pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=want w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[1..4]=song w[1..4]=once w[1..4]=again +O w[-2]=to w[-1]=this w[0]=song w[1]=once w[2]=again wl[-2]=to wl[-1]=this wl[0]=song wl[1]=once wl[2]=again pos[-2]=IN pos[-1]=DT pos[0]=NN pos[1]=RB pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=t p1[0]=s p1[1]=o p1[2]=a p2[-2]=to p2[-1]=th p2[0]=so p2[1]=on p2[2]=ag p3[-2]= p3[-1]=thi p3[0]=son p3[1]=onc p3[2]=aga p4[-2]= p4[-1]=this p4[0]=song p4[1]=once p4[2]=agai s1[-2]=o s1[-1]=s s1[0]=g s1[1]=e s1[2]=n s2[-2]=to s2[-1]=is s2[0]=ng s2[1]=ce s2[2]=in s3[-2]= s3[-1]=his s3[0]=ong s3[1]=nce s3[2]=ain s4[-2]= s4[-1]=this s4[0]=song s4[1]=once s4[2]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=to|this w[-1]|w[0]=this|song w[0]|w[1]=song|once w[1]|w[2]=once|again pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|RB pos[1]|pos[2]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=to w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=this w[1..4]=once w[1..4]=again +O w[-2]=this w[-1]=song w[0]=once w[1]=again wl[-2]=this wl[-1]=song wl[0]=once wl[1]=again pos[-2]=DT pos[-1]=NN pos[0]=RB pos[1]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=s p1[0]=o p1[1]=a p2[-2]=th p2[-1]=so p2[0]=on p2[1]=ag p3[-2]=thi p3[-1]=son p3[0]=onc p3[1]=aga p4[-2]=this p4[-1]=song p4[0]=once p4[1]=agai s1[-2]=s s1[-1]=g s1[0]=e s1[1]=n s2[-2]=is s2[-1]=ng s2[0]=ce s2[1]=in s3[-2]=his s3[-1]=ong s3[0]=nce s3[1]=ain s4[-2]=this s4[-1]=song s4[0]=once s4[1]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=this|song w[-1]|w[0]=song|once w[0]|w[1]=once|again pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|RB pos[0]|pos[1]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=listen w[-4..-1]=to w[-4..-1]=this w[-4..-1]=song w[1..4]=again +O w[-2]=song w[-1]=once w[0]=again wl[-2]=song wl[-1]=once wl[0]=again pos[-2]=NN pos[-1]=RB pos[0]=RB chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=o p1[0]=a p2[-2]=so p2[-1]=on p2[0]=ag p3[-2]=son p3[-1]=onc p3[0]=aga p4[-2]=song p4[-1]=once p4[0]=agai s1[-2]=g s1[-1]=e s1[0]=n s2[-2]=ng s2[-1]=ce s2[0]=in s3[-2]=ong s3[-1]=nce s3[0]=ain s4[-2]=song s4[-1]=once s4[0]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|once w[-1]|w[0]=once|again pos[-2]|pos[-1]=NN|RB pos[-1]|pos[0]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=to w[-4..-1]=this w[-4..-1]=song w[-4..-1]=once __EOS__ + +O w[0]=repeat w[1]=the w[2]=song wl[0]=repeat wl[1]=the wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=t p1[2]=s p2[0]=re p2[1]=th p2[2]=so p3[0]=rep p3[1]=the p3[2]=son p4[0]=repe p4[1]= p4[2]=song s1[0]=t s1[1]=e s1[2]=g s2[0]=at s2[1]=he s2[2]=ng s3[0]=eat s3[1]=the s3[2]=ong s4[0]=peat s4[1]= s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=repeat|the w[1]|w[2]=the|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=song __BOS__ +O w[-1]=repeat w[0]=the w[1]=song wl[-1]=repeat wl[0]=the wl[1]=song pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLL shape[0]=LLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=r p1[0]=t p1[1]=s p2[-1]=re p2[0]=th p2[1]=so p3[-1]=rep p3[0]=the p3[1]=son p4[-1]=repe p4[0]= p4[1]=song s1[-1]=t s1[0]=e s1[1]=g s2[-1]=at s2[0]=he s2[1]=ng s3[-1]=eat s3[0]=the s3[1]=ong s4[-1]=peat s4[0]= s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=repeat|the w[0]|w[1]=the|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=repeat w[1..4]=song +O w[-2]=repeat w[-1]=the w[0]=song wl[-2]=repeat wl[-1]=the wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLL shape[-1]=LLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=r p1[-1]=t p1[0]=s p2[-2]=re p2[-1]=th p2[0]=so p3[-2]=rep p3[-1]=the p3[0]=son p4[-2]=repe p4[-1]= p4[0]=song s1[-2]=t s1[-1]=e s1[0]=g s2[-2]=at s2[-1]=he s2[0]=ng s3[-2]=eat s3[-1]=the s3[0]=ong s4[-2]=peat s4[-1]= s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=repeat|the w[-1]|w[0]=the|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=the __EOS__ + +O w[0]=turn w[1]=on w[2]=repeat wl[0]=turn wl[1]=on wl[2]=repeat pos[0]=VB pos[1]=RP pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=o p1[2]=r p2[0]=tu p2[1]=on p2[2]=re p3[0]=tur p3[1]= p3[2]=rep p4[0]=turn p4[1]= p4[2]=repe s1[0]=n s1[1]=n s1[2]=t s2[0]=rn s2[1]=on s2[2]=at s3[0]=urn s3[1]= s3[2]=eat s4[0]=turn s4[1]= s4[2]=peat 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=turn|on w[1]|w[2]=on|repeat pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=repeat w[1..4]=for w[1..4]=this __BOS__ +O w[-1]=turn w[0]=on w[1]=repeat w[2]=for wl[-1]=turn wl[0]=on wl[1]=repeat wl[2]=for pos[-1]=VB pos[0]=RP pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=t p1[0]=o p1[1]=r p1[2]=f p2[-1]=tu p2[0]=on p2[1]=re p2[2]=fo p3[-1]=tur p3[0]= p3[1]=rep p3[2]=for p4[-1]=turn p4[0]= p4[1]=repe p4[2]= s1[-1]=n s1[0]=n s1[1]=t s1[2]=r s2[-1]=rn s2[0]=on s2[1]=at s2[2]=or s3[-1]=urn s3[0]= s3[1]=eat s3[2]=for s4[-1]=turn s4[0]= s4[1]=peat s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=turn|on w[0]|w[1]=on|repeat w[1]|w[2]=repeat|for pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[1..4]=repeat w[1..4]=for w[1..4]=this w[1..4]=song +O w[-2]=turn w[-1]=on w[0]=repeat w[1]=for w[2]=this wl[-2]=turn wl[-1]=on wl[0]=repeat wl[1]=for wl[2]=this pos[-2]=VB pos[-1]=RP pos[0]=NN pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=o p1[0]=r p1[1]=f p1[2]=t p2[-2]=tu p2[-1]=on p2[0]=re p2[1]=fo p2[2]=th p3[-2]=tur p3[-1]= p3[0]=rep p3[1]=for p3[2]=thi p4[-2]=turn p4[-1]= p4[0]=repe p4[1]= p4[2]=this s1[-2]=n s1[-1]=n s1[0]=t s1[1]=r s1[2]=s s2[-2]=rn s2[-1]=on s2[0]=at s2[1]=or s2[2]=is s3[-2]=urn s3[-1]= s3[0]=eat s3[1]=for s3[2]=his s4[-2]=turn s4[-1]= s4[0]=peat s4[1]= s4[2]=this 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=turn|on w[-1]|w[0]=on|repeat w[0]|w[1]=repeat|for w[1]|w[2]=for|this pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[1..4]=for w[1..4]=this w[1..4]=song +O w[-2]=on w[-1]=repeat w[0]=for w[1]=this w[2]=song wl[-2]=on wl[-1]=repeat wl[0]=for wl[1]=this wl[2]=song pos[-2]=RP pos[-1]=NN pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=o p1[-1]=r p1[0]=f p1[1]=t p1[2]=s p2[-2]=on p2[-1]=re p2[0]=fo p2[1]=th p2[2]=so p3[-2]= p3[-1]=rep p3[0]=for p3[1]=thi p3[2]=son p4[-2]= p4[-1]=repe p4[0]= p4[1]=this p4[2]=song s1[-2]=n s1[-1]=t s1[0]=r s1[1]=s s1[2]=g s2[-2]=on s2[-1]=at s2[0]=or s2[1]=is s2[2]=ng s3[-2]= s3[-1]=eat s3[0]=for s3[1]=his s3[2]=ong s4[-2]= s4[-1]=peat s4[0]= s4[1]=this s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=on|repeat w[-1]|w[0]=repeat|for w[0]|w[1]=for|this w[1]|w[2]=this|song pos[-2]|pos[-1]=RP|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=repeat w[1..4]=this w[1..4]=song +O w[-2]=repeat w[-1]=for w[0]=this w[1]=song wl[-2]=repeat wl[-1]=for wl[0]=this wl[1]=song pos[-2]=NN pos[-1]=IN pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=r p1[-1]=f p1[0]=t p1[1]=s p2[-2]=re p2[-1]=fo p2[0]=th p2[1]=so p3[-2]=rep p3[-1]=for p3[0]=thi p3[1]=son p4[-2]=repe p4[-1]= p4[0]=this p4[1]=song s1[-2]=t s1[-1]=r s1[0]=s s1[1]=g s2[-2]=at s2[-1]=or s2[0]=is s2[1]=ng s3[-2]=eat s3[-1]=for s3[0]=his s3[1]=ong s4[-2]=peat s4[-1]= s4[0]=this s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=repeat|for w[-1]|w[0]=for|this w[0]|w[1]=this|song pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=repeat w[-4..-1]=for w[1..4]=song +O w[-2]=for w[-1]=this w[0]=song wl[-2]=for wl[-1]=this wl[0]=song pos[-2]=IN pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=f p1[-1]=t p1[0]=s p2[-2]=fo p2[-1]=th p2[0]=so p3[-2]=for p3[-1]=thi p3[0]=son p4[-2]= p4[-1]=this p4[0]=song s1[-2]=r s1[-1]=s s1[0]=g s2[-2]=or s2[-1]=is s2[0]=ng s3[-2]=for s3[-1]=his s3[0]=ong s4[-2]= s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=for|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=on w[-4..-1]=repeat w[-4..-1]=for w[-4..-1]=this __EOS__ + +O w[0]=can w[1]=you w[2]=repeat wl[0]=can wl[1]=you wl[2]=repeat pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=r p2[0]=ca p2[1]=yo p2[2]=re p3[0]=can p3[1]=you p3[2]=rep p4[0]= p4[1]= p4[2]=repe s1[0]=n s1[1]=u s1[2]=t s2[0]=an s2[1]=ou s2[2]=at s3[0]=can s3[1]=you s3[2]=eat s4[0]= s4[1]= s4[2]=peat 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|repeat pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=repeat w[1..4]=it __BOS__ +O w[-1]=can w[0]=you w[1]=repeat w[2]=it wl[-1]=can wl[0]=you wl[1]=repeat wl[2]=it pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=r p1[2]=i p2[-1]=ca p2[0]=yo p2[1]=re p2[2]=it p3[-1]=can p3[0]=you p3[1]=rep p3[2]= p4[-1]= p4[0]= p4[1]=repe p4[2]= s1[-1]=n s1[0]=u s1[1]=t s1[2]=t s2[-1]=an s2[0]=ou s2[1]=at s2[2]=it s3[-1]=can s3[0]=you s3[1]=eat s3[2]= s4[-1]= s4[0]= s4[1]=peat s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|repeat w[1]|w[2]=repeat|it pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=repeat w[1..4]=it +O w[-2]=can w[-1]=you w[0]=repeat w[1]=it wl[-2]=can wl[-1]=you wl[0]=repeat wl[1]=it pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLLLL shape[1]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=c p1[-1]=y p1[0]=r p1[1]=i p2[-2]=ca p2[-1]=yo p2[0]=re p2[1]=it p3[-2]=can p3[-1]=you p3[0]=rep p3[1]= p4[-2]= p4[-1]= p4[0]=repe p4[1]= s1[-2]=n s1[-1]=u s1[0]=t s1[1]=t s2[-2]=an s2[-1]=ou s2[0]=at s2[1]=it s3[-2]=can s3[-1]=you s3[0]=eat s3[1]= s4[-2]= s4[-1]= s4[0]=peat s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|repeat w[0]|w[1]=repeat|it pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=it +O w[-2]=you w[-1]=repeat w[0]=it wl[-2]=you wl[-1]=repeat wl[0]=it pos[-2]=PRP pos[-1]=VB pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLLLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=y p1[-1]=r p1[0]=i p2[-2]=yo p2[-1]=re p2[0]=it p3[-2]=you p3[-1]=rep p3[0]= p4[-2]= p4[-1]=repe p4[0]= s1[-2]=u s1[-1]=t s1[0]=t s2[-2]=ou s2[-1]=at s2[0]=it s3[-2]=you s3[-1]=eat s3[0]= s4[-2]= s4[-1]=peat s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=you|repeat w[-1]|w[0]=repeat|it pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=repeat __EOS__ + +O w[0]=can w[1]=you w[2]=repeat wl[0]=can wl[1]=you wl[2]=repeat pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=r p2[0]=ca p2[1]=yo p2[2]=re p3[0]=can p3[1]=you p3[2]=rep p4[0]= p4[1]= p4[2]=repe s1[0]=n s1[1]=u s1[2]=t s2[0]=an s2[1]=ou s2[2]=at s3[0]=can s3[1]=you s3[2]=eat s4[0]= s4[1]= s4[2]=peat 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=can|you w[1]|w[2]=you|repeat pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=repeat w[1..4]=this w[1..4]=track __BOS__ +O w[-1]=can w[0]=you w[1]=repeat w[2]=this wl[-1]=can wl[0]=you wl[1]=repeat wl[2]=this pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=r p1[2]=t p2[-1]=ca p2[0]=yo p2[1]=re p2[2]=th p3[-1]=can p3[0]=you p3[1]=rep p3[2]=thi p4[-1]= p4[0]= p4[1]=repe p4[2]=this s1[-1]=n s1[0]=u s1[1]=t s1[2]=s s2[-1]=an s2[0]=ou s2[1]=at s2[2]=is s3[-1]=can s3[0]=you s3[1]=eat s3[2]=his s4[-1]= s4[0]= s4[1]=peat s4[2]=this 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=can|you w[0]|w[1]=you|repeat w[1]|w[2]=repeat|this pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[1..4]=repeat w[1..4]=this w[1..4]=track +O w[-2]=can w[-1]=you w[0]=repeat w[1]=this w[2]=track wl[-2]=can wl[-1]=you wl[0]=repeat wl[1]=this wl[2]=track pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=c p1[-1]=y p1[0]=r p1[1]=t p1[2]=t p2[-2]=ca p2[-1]=yo p2[0]=re p2[1]=th p2[2]=tr p3[-2]=can p3[-1]=you p3[0]=rep p3[1]=thi p3[2]=tra p4[-2]= p4[-1]= p4[0]=repe p4[1]=this p4[2]=trac s1[-2]=n s1[-1]=u s1[0]=t s1[1]=s s1[2]=k s2[-2]=an s2[-1]=ou s2[0]=at s2[1]=is s2[2]=ck s3[-2]=can s3[-1]=you s3[0]=eat s3[1]=his s3[2]=ack s4[-2]= s4[-1]= s4[0]=peat s4[1]=this s4[2]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=can|you w[-1]|w[0]=you|repeat w[0]|w[1]=repeat|this w[1]|w[2]=this|track pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[1..4]=this w[1..4]=track +O w[-2]=you w[-1]=repeat w[0]=this w[1]=track wl[-2]=you wl[-1]=repeat wl[0]=this wl[1]=track pos[-2]=PRP pos[-1]=VB pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=y p1[-1]=r p1[0]=t p1[1]=t p2[-2]=yo p2[-1]=re p2[0]=th p2[1]=tr p3[-2]=you p3[-1]=rep p3[0]=thi p3[1]=tra p4[-2]= p4[-1]=repe p4[0]=this p4[1]=trac s1[-2]=u s1[-1]=t s1[0]=s s1[1]=k s2[-2]=ou s2[-1]=at s2[0]=is s2[1]=ck s3[-2]=you s3[-1]=eat s3[0]=his s3[1]=ack s4[-2]= s4[-1]=peat s4[0]=this s4[1]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=you|repeat w[-1]|w[0]=repeat|this w[0]|w[1]=this|track pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=repeat w[1..4]=track +O w[-2]=repeat w[-1]=this w[0]=track wl[-2]=repeat wl[-1]=this wl[0]=track pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=r p1[-1]=t p1[0]=t p2[-2]=re p2[-1]=th p2[0]=tr p3[-2]=rep p3[-1]=thi p3[0]=tra p4[-2]=repe p4[-1]=this p4[0]=trac s1[-2]=t s1[-1]=s s1[0]=k s2[-2]=at s2[-1]=is s2[0]=ck s3[-2]=eat s3[-1]=his s3[0]=ack s4[-2]=peat s4[-1]=this s4[0]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=repeat|this w[-1]|w[0]=this|track pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=can w[-4..-1]=you w[-4..-1]=repeat w[-4..-1]=this __EOS__ + +O w[0]=turn w[1]=on w[2]=repeat wl[0]=turn wl[1]=on wl[2]=repeat pos[0]=VB pos[1]=RP pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=o p1[2]=r p2[0]=tu p2[1]=on p2[2]=re p3[0]=tur p3[1]= p3[2]=rep p4[0]=turn p4[1]= p4[2]=repe s1[0]=n s1[1]=n s1[2]=t s2[0]=rn s2[1]=on s2[2]=at s3[0]=urn s3[1]= s3[2]=eat s4[0]=turn s4[1]= s4[2]=peat 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=turn|on w[1]|w[2]=on|repeat pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=repeat w[1..4]=mode w[1..4]=for __BOS__ +O w[-1]=turn w[0]=on w[1]=repeat w[2]=mode wl[-1]=turn wl[0]=on wl[1]=repeat wl[2]=mode pos[-1]=VB pos[0]=RP pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=t p1[0]=o p1[1]=r p1[2]=m p2[-1]=tu p2[0]=on p2[1]=re p2[2]=mo p3[-1]=tur p3[0]= p3[1]=rep p3[2]=mod p4[-1]=turn p4[0]= p4[1]=repe p4[2]=mode s1[-1]=n s1[0]=n s1[1]=t s1[2]=e s2[-1]=rn s2[0]=on s2[1]=at s2[2]=de s3[-1]=urn s3[0]= s3[1]=eat s3[2]=ode s4[-1]=turn s4[0]= s4[1]=peat s4[2]=mode 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=turn|on w[0]|w[1]=on|repeat w[1]|w[2]=repeat|mode pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[1..4]=repeat w[1..4]=mode w[1..4]=for w[1..4]=this +O w[-2]=turn w[-1]=on w[0]=repeat w[1]=mode w[2]=for wl[-2]=turn wl[-1]=on wl[0]=repeat wl[1]=mode wl[2]=for pos[-2]=VB pos[-1]=RP pos[0]=NN pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=o p1[0]=r p1[1]=m p1[2]=f p2[-2]=tu p2[-1]=on p2[0]=re p2[1]=mo p2[2]=fo p3[-2]=tur p3[-1]= p3[0]=rep p3[1]=mod p3[2]=for p4[-2]=turn p4[-1]= p4[0]=repe p4[1]=mode p4[2]= s1[-2]=n s1[-1]=n s1[0]=t s1[1]=e s1[2]=r s2[-2]=rn s2[-1]=on s2[0]=at s2[1]=de s2[2]=or s3[-2]=urn s3[-1]= s3[0]=eat s3[1]=ode s3[2]=for s4[-2]=turn s4[-1]= s4[0]=peat s4[1]=mode s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=turn|on w[-1]|w[0]=on|repeat w[0]|w[1]=repeat|mode w[1]|w[2]=mode|for pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[1..4]=mode w[1..4]=for w[1..4]=this w[1..4]=song +O w[-2]=on w[-1]=repeat w[0]=mode w[1]=for w[2]=this wl[-2]=on wl[-1]=repeat wl[0]=mode wl[1]=for wl[2]=this pos[-2]=RP pos[-1]=NN pos[0]=NN pos[1]=IN pos[2]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=o p1[-1]=r p1[0]=m p1[1]=f p1[2]=t p2[-2]=on p2[-1]=re p2[0]=mo p2[1]=fo p2[2]=th p3[-2]= p3[-1]=rep p3[0]=mod p3[1]=for p3[2]=thi p4[-2]= p4[-1]=repe p4[0]=mode p4[1]= p4[2]=this s1[-2]=n s1[-1]=t s1[0]=e s1[1]=r s1[2]=s s2[-2]=on s2[-1]=at s2[0]=de s2[1]=or s2[2]=is s3[-2]= s3[-1]=eat s3[0]=ode s3[1]=for s3[2]=his s4[-2]= s4[-1]=peat s4[0]=mode s4[1]= s4[2]=this 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=on|repeat w[-1]|w[0]=repeat|mode w[0]|w[1]=mode|for w[1]|w[2]=for|this pos[-2]|pos[-1]=RP|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=repeat w[1..4]=for w[1..4]=this w[1..4]=song +O w[-2]=repeat w[-1]=mode w[0]=for w[1]=this w[2]=song wl[-2]=repeat wl[-1]=mode wl[0]=for wl[1]=this wl[2]=song pos[-2]=NN pos[-1]=NN pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=r p1[-1]=m p1[0]=f p1[1]=t p1[2]=s p2[-2]=re p2[-1]=mo p2[0]=fo p2[1]=th p2[2]=so p3[-2]=rep p3[-1]=mod p3[0]=for p3[1]=thi p3[2]=son p4[-2]=repe p4[-1]=mode p4[0]= p4[1]=this p4[2]=song s1[-2]=t s1[-1]=e s1[0]=r s1[1]=s s1[2]=g s2[-2]=at s2[-1]=de s2[0]=or s2[1]=is s2[2]=ng s3[-2]=eat s3[-1]=ode s3[0]=for s3[1]=his s3[2]=ong s4[-2]=peat s4[-1]=mode s4[0]= s4[1]=this s4[2]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=repeat|mode w[-1]|w[0]=mode|for w[0]|w[1]=for|this w[1]|w[2]=this|song pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=repeat w[-4..-1]=mode w[1..4]=this w[1..4]=song +O w[-2]=mode w[-1]=for w[0]=this w[1]=song wl[-2]=mode wl[-1]=for wl[0]=this wl[1]=song pos[-2]=NN pos[-1]=IN pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=m p1[-1]=f p1[0]=t p1[1]=s p2[-2]=mo p2[-1]=fo p2[0]=th p2[1]=so p3[-2]=mod p3[-1]=for p3[0]=thi p3[1]=son p4[-2]=mode p4[-1]= p4[0]=this p4[1]=song s1[-2]=e s1[-1]=r s1[0]=s s1[1]=g s2[-2]=de s2[-1]=or s2[0]=is s2[1]=ng s3[-2]=ode s3[-1]=for s3[0]=his s3[1]=ong s4[-2]=mode s4[-1]= s4[0]=this s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=mode|for w[-1]|w[0]=for|this w[0]|w[1]=this|song pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=on w[-4..-1]=repeat w[-4..-1]=mode w[-4..-1]=for w[1..4]=song +O w[-2]=for w[-1]=this w[0]=song wl[-2]=for wl[-1]=this wl[0]=song pos[-2]=IN pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=f p1[-1]=t p1[0]=s p2[-2]=fo p2[-1]=th p2[0]=so p3[-2]=for p3[-1]=thi p3[0]=son p4[-2]= p4[-1]=this p4[0]=song s1[-2]=r s1[-1]=s s1[0]=g s2[-2]=or s2[-1]=is s2[0]=ng s3[-2]=for s3[-1]=his s3[0]=ong s4[-2]= s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=for|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=mode w[-4..-1]=for w[-4..-1]=this __EOS__ + +O w[0]=put w[1]=this w[2]=track wl[0]=put wl[1]=this wl[2]=track pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=t p2[0]=pu p2[1]=th p2[2]=tr p3[0]=put p3[1]=thi p3[2]=tra p4[0]= p4[1]=this p4[2]=trac s1[0]=t s1[1]=s s1[2]=k s2[0]=ut s2[1]=is s2[2]=ck s3[0]=put s3[1]=his s3[2]=ack s4[0]= s4[1]=this s4[2]=rack 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|this w[1]|w[2]=this|track pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=track w[1..4]=on w[1..4]=repeat __BOS__ +O w[-1]=put w[0]=this w[1]=track w[2]=on wl[-1]=put wl[0]=this wl[1]=track wl[2]=on pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=IN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LLLLL shape[2]=LL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=t p1[2]=o p2[-1]=pu p2[0]=th p2[1]=tr p2[2]=on p3[-1]=put p3[0]=thi p3[1]=tra p3[2]= p4[-1]= p4[0]=this p4[1]=trac p4[2]= s1[-1]=t s1[0]=s s1[1]=k s1[2]=n s2[-1]=ut s2[0]=is s2[1]=ck s2[2]=on s3[-1]=put s3[0]=his s3[1]=ack s3[2]= s4[-1]= s4[0]=this s4[1]=rack s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|this w[0]|w[1]=this|track w[1]|w[2]=track|on pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|IN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=track w[1..4]=on w[1..4]=repeat +O w[-2]=put w[-1]=this w[0]=track w[1]=on w[2]=repeat wl[-2]=put wl[-1]=this wl[0]=track wl[1]=on wl[2]=repeat pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=IN pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLLL shape[1]=LL shape[2]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=t p1[0]=t p1[1]=o p1[2]=r p2[-2]=pu p2[-1]=th p2[0]=tr p2[1]=on p2[2]=re p3[-2]=put p3[-1]=thi p3[0]=tra p3[1]= p3[2]=rep p4[-2]= p4[-1]=this p4[0]=trac p4[1]= p4[2]=repe s1[-2]=t s1[-1]=s s1[0]=k s1[1]=n s1[2]=t s2[-2]=ut s2[-1]=is s2[0]=ck s2[1]=on s2[2]=at s3[-2]=put s3[-1]=his s3[0]=ack s3[1]= s3[2]=eat s4[-2]= s4[-1]=this s4[0]=rack s4[1]= s4[2]=peat 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=put|this w[-1]|w[0]=this|track w[0]|w[1]=track|on w[1]|w[2]=on|repeat pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=this w[1..4]=on w[1..4]=repeat +O w[-2]=this w[-1]=track w[0]=on w[1]=repeat wl[-2]=this wl[-1]=track wl[0]=on wl[1]=repeat pos[-2]=DT pos[-1]=NN pos[0]=IN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLLL shape[0]=LL shape[1]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=t p1[0]=o p1[1]=r p2[-2]=th p2[-1]=tr p2[0]=on p2[1]=re p3[-2]=thi p3[-1]=tra p3[0]= p3[1]=rep p4[-2]=this p4[-1]=trac p4[0]= p4[1]=repe s1[-2]=s s1[-1]=k s1[0]=n s1[1]=t s2[-2]=is s2[-1]=ck s2[0]=on s2[1]=at s3[-2]=his s3[-1]=ack s3[0]= s3[1]=eat s4[-2]=this s4[-1]=rack s4[0]= s4[1]=peat 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=this|track w[-1]|w[0]=track|on w[0]|w[1]=on|repeat pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=this w[-4..-1]=track w[1..4]=repeat +O w[-2]=track w[-1]=on w[0]=repeat wl[-2]=track wl[-1]=on wl[0]=repeat pos[-2]=NN pos[-1]=IN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLL shape[-1]=LL shape[0]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=o p1[0]=r p2[-2]=tr p2[-1]=on p2[0]=re p3[-2]=tra p3[-1]= p3[0]=rep p4[-2]=trac p4[-1]= p4[0]=repe s1[-2]=k s1[-1]=n s1[0]=t s2[-2]=ck s2[-1]=on s2[0]=at s3[-2]=ack s3[-1]= s3[0]=eat s4[-2]=rack s4[-1]= s4[0]=peat 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=track|on w[-1]|w[0]=on|repeat pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=this w[-4..-1]=track w[-4..-1]=on __EOS__ + +O w[0]=repeat w[1]=this w[2]=song wl[0]=repeat wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=t p1[2]=s p2[0]=re p2[1]=th p2[2]=so p3[0]=rep p3[1]=thi p3[2]=son p4[0]=repe p4[1]=this p4[2]=song s1[0]=t s1[1]=s s1[2]=g s2[0]=at s2[1]=is s2[2]=ng s3[0]=eat s3[1]=his s3[2]=ong s4[0]=peat s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=repeat|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song __BOS__ +O w[-1]=repeat w[0]=this w[1]=song wl[-1]=repeat wl[0]=this wl[1]=song pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=r p1[0]=t p1[1]=s p2[-1]=re p2[0]=th p2[1]=so p3[-1]=rep p3[0]=thi p3[1]=son p4[-1]=repe p4[0]=this p4[1]=song s1[-1]=t s1[0]=s s1[1]=g s2[-1]=at s2[0]=is s2[1]=ng s3[-1]=eat s3[0]=his s3[1]=ong s4[-1]=peat s4[0]=this s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=repeat|this w[0]|w[1]=this|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=repeat w[1..4]=song +O w[-2]=repeat w[-1]=this w[0]=song wl[-2]=repeat wl[-1]=this wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=r p1[-1]=t p1[0]=s p2[-2]=re p2[-1]=th p2[0]=so p3[-2]=rep p3[-1]=thi p3[0]=son p4[-2]=repe p4[-1]=this p4[0]=song s1[-2]=t s1[-1]=s s1[0]=g s2[-2]=at s2[-1]=is s2[0]=ng s3[-2]=eat s3[-1]=his s3[0]=ong s4[-2]=peat s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=repeat|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=this __EOS__ + +O w[0]=repeat w[1]=mode w[2]=for wl[0]=repeat wl[1]=mode wl[2]=for pos[0]=VB pos[1]=NN pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=m p1[2]=f p2[0]=re p2[1]=mo p2[2]=fo p3[0]=rep p3[1]=mod p3[2]=for p4[0]=repe p4[1]=mode p4[2]= s1[0]=t s1[1]=e s1[2]=r s2[0]=at s2[1]=de s2[2]=or s3[0]=eat s3[1]=ode s3[2]=for s4[0]=peat s4[1]=mode s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=repeat|mode w[1]|w[2]=mode|for pos[0]|pos[1]=VB|NN pos[1]|pos[2]=NN|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=mode w[1..4]=for w[1..4]=this w[1..4]=track __BOS__ +O w[-1]=repeat w[0]=mode w[1]=for w[2]=this wl[-1]=repeat wl[0]=mode wl[1]=for wl[2]=this pos[-1]=VB pos[0]=NN pos[1]=IN pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=r p1[0]=m p1[1]=f p1[2]=t p2[-1]=re p2[0]=mo p2[1]=fo p2[2]=th p3[-1]=rep p3[0]=mod p3[1]=for p3[2]=thi p4[-1]=repe p4[0]=mode p4[1]= p4[2]=this s1[-1]=t s1[0]=e s1[1]=r s1[2]=s s2[-1]=at s2[0]=de s2[1]=or s2[2]=is s3[-1]=eat s3[0]=ode s3[1]=for s3[2]=his s4[-1]=peat s4[0]=mode s4[1]= s4[2]=this 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=repeat|mode w[0]|w[1]=mode|for w[1]|w[2]=for|this pos[-1]|pos[0]=VB|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[1..4]=for w[1..4]=this w[1..4]=track +O w[-2]=repeat w[-1]=mode w[0]=for w[1]=this w[2]=track wl[-2]=repeat wl[-1]=mode wl[0]=for wl[1]=this wl[2]=track pos[-2]=VB pos[-1]=NN pos[0]=IN pos[1]=DT pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=r p1[-1]=m p1[0]=f p1[1]=t p1[2]=t p2[-2]=re p2[-1]=mo p2[0]=fo p2[1]=th p2[2]=tr p3[-2]=rep p3[-1]=mod p3[0]=for p3[1]=thi p3[2]=tra p4[-2]=repe p4[-1]=mode p4[0]= p4[1]=this p4[2]=trac s1[-2]=t s1[-1]=e s1[0]=r s1[1]=s s1[2]=k s2[-2]=at s2[-1]=de s2[0]=or s2[1]=is s2[2]=ck s3[-2]=eat s3[-1]=ode s3[0]=for s3[1]=his s3[2]=ack s4[-2]=peat s4[-1]=mode s4[0]= s4[1]=this s4[2]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=repeat|mode w[-1]|w[0]=mode|for w[0]|w[1]=for|this w[1]|w[2]=this|track pos[-2]|pos[-1]=VB|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=mode w[1..4]=this w[1..4]=track +O w[-2]=mode w[-1]=for w[0]=this w[1]=track wl[-2]=mode wl[-1]=for wl[0]=this wl[1]=track pos[-2]=NN pos[-1]=IN pos[0]=DT pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=m p1[-1]=f p1[0]=t p1[1]=t p2[-2]=mo p2[-1]=fo p2[0]=th p2[1]=tr p3[-2]=mod p3[-1]=for p3[0]=thi p3[1]=tra p4[-2]=mode p4[-1]= p4[0]=this p4[1]=trac s1[-2]=e s1[-1]=r s1[0]=s s1[1]=k s2[-2]=de s2[-1]=or s2[0]=is s2[1]=ck s3[-2]=ode s3[-1]=for s3[0]=his s3[1]=ack s4[-2]=mode s4[-1]= s4[0]=this s4[1]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=mode|for w[-1]|w[0]=for|this w[0]|w[1]=this|track pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=mode w[-4..-1]=for w[1..4]=track +O w[-2]=for w[-1]=this w[0]=track wl[-2]=for wl[-1]=this wl[0]=track pos[-2]=IN pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=f p1[-1]=t p1[0]=t p2[-2]=fo p2[-1]=th p2[0]=tr p3[-2]=for p3[-1]=thi p3[0]=tra p4[-2]= p4[-1]=this p4[0]=trac s1[-2]=r s1[-1]=s s1[0]=k s2[-2]=or s2[-1]=is s2[0]=ck s3[-2]=for s3[-1]=his s3[0]=ack s4[-2]= s4[-1]=this s4[0]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=for|this w[-1]|w[0]=this|track pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=mode w[-4..-1]=for w[-4..-1]=this __EOS__ + +O w[0]=put w[1]=this w[2]=on wl[0]=put wl[1]=this wl[2]=on pos[0]=VB pos[1]=DT pos[2]=IN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=o p2[0]=pu p2[1]=th p2[2]=on p3[0]=put p3[1]=thi p3[2]= p4[0]= p4[1]=this p4[2]= s1[0]=t s1[1]=s s1[2]=n s2[0]=ut s2[1]=is s2[2]=on s3[0]=put s3[1]=his s3[2]= s4[0]= s4[1]=this s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=put|this w[1]|w[2]=this|on pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|IN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=on w[1..4]=repeat __BOS__ +O w[-1]=put w[0]=this w[1]=on w[2]=repeat wl[-1]=put wl[0]=this wl[1]=on wl[2]=repeat pos[-1]=VB pos[0]=DT pos[1]=IN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=o p1[2]=r p2[-1]=pu p2[0]=th p2[1]=on p2[2]=re p3[-1]=put p3[0]=thi p3[1]= p3[2]=rep p4[-1]= p4[0]=this p4[1]= p4[2]=repe s1[-1]=t s1[0]=s s1[1]=n s1[2]=t s2[-1]=ut s2[0]=is s2[1]=on s2[2]=at s3[-1]=put s3[0]=his s3[1]= s3[2]=eat s4[-1]= s4[0]=this s4[1]= s4[2]=peat 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=put|this w[0]|w[1]=this|on w[1]|w[2]=on|repeat pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|IN pos[1]|pos[2]=IN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=put w[1..4]=on w[1..4]=repeat +O w[-2]=put w[-1]=this w[0]=on w[1]=repeat wl[-2]=put wl[-1]=this wl[0]=on wl[1]=repeat pos[-2]=VB pos[-1]=DT pos[0]=IN pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=t p1[0]=o p1[1]=r p2[-2]=pu p2[-1]=th p2[0]=on p2[1]=re p3[-2]=put p3[-1]=thi p3[0]= p3[1]=rep p4[-2]= p4[-1]=this p4[0]= p4[1]=repe s1[-2]=t s1[-1]=s s1[0]=n s1[1]=t s2[-2]=ut s2[-1]=is s2[0]=on s2[1]=at s3[-2]=put s3[-1]=his s3[0]= s3[1]=eat s4[-2]= s4[-1]=this s4[0]= s4[1]=peat 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=put|this w[-1]|w[0]=this|on w[0]|w[1]=on|repeat pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|IN pos[0]|pos[1]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=this w[1..4]=repeat +O w[-2]=this w[-1]=on w[0]=repeat wl[-2]=this wl[-1]=on wl[0]=repeat pos[-2]=DT pos[-1]=IN pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=o p1[0]=r p2[-2]=th p2[-1]=on p2[0]=re p3[-2]=thi p3[-1]= p3[0]=rep p4[-2]=this p4[-1]= p4[0]=repe s1[-2]=s s1[-1]=n s1[0]=t s2[-2]=is s2[-1]=on s2[0]=at s3[-2]=his s3[-1]= s3[0]=eat s4[-2]=this s4[-1]= s4[0]=peat 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=this|on w[-1]|w[0]=on|repeat pos[-2]|pos[-1]=DT|IN pos[-1]|pos[0]=IN|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=put w[-4..-1]=this w[-4..-1]=on __EOS__ + +O w[0]=could w[1]=you w[2]=repeat wl[0]=could wl[1]=you wl[2]=repeat pos[0]=MD pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLL shape[1]=LLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=c p1[1]=y p1[2]=r p2[0]=co p2[1]=yo p2[2]=re p3[0]=cou p3[1]=you p3[2]=rep p4[0]=coul p4[1]= p4[2]=repe s1[0]=d s1[1]=u s1[2]=t s2[0]=ld s2[1]=ou s2[2]=at s3[0]=uld s3[1]=you s3[2]=eat s4[0]=ould s4[1]= s4[2]=peat 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=could|you w[1]|w[2]=you|repeat pos[0]|pos[1]=MD|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=you w[1..4]=repeat w[1..4]=them __BOS__ +O w[-1]=could w[0]=you w[1]=repeat w[2]=them wl[-1]=could wl[0]=you wl[1]=repeat wl[2]=them pos[-1]=MD pos[0]=PRP pos[1]=VB pos[2]=PRP chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLL shape[0]=LLL shape[1]=LLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=c p1[0]=y p1[1]=r p1[2]=t p2[-1]=co p2[0]=yo p2[1]=re p2[2]=th p3[-1]=cou p3[0]=you p3[1]=rep p3[2]=the p4[-1]=coul p4[0]= p4[1]=repe p4[2]=them s1[-1]=d s1[0]=u s1[1]=t s1[2]=m s2[-1]=ld s2[0]=ou s2[1]=at s2[2]=em s3[-1]=uld s3[0]=you s3[1]=eat s3[2]=hem s4[-1]=ould s4[0]= s4[1]=peat s4[2]=them 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=could|you w[0]|w[1]=you|repeat w[1]|w[2]=repeat|them pos[-1]|pos[0]=MD|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|PRP chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=could w[1..4]=repeat w[1..4]=them +O w[-2]=could w[-1]=you w[0]=repeat w[1]=them wl[-2]=could wl[-1]=you wl[0]=repeat wl[1]=them pos[-2]=MD pos[-1]=PRP pos[0]=VB pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLL shape[-1]=LLL shape[0]=LLLLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=c p1[-1]=y p1[0]=r p1[1]=t p2[-2]=co p2[-1]=yo p2[0]=re p2[1]=th p3[-2]=cou p3[-1]=you p3[0]=rep p3[1]=the p4[-2]=coul p4[-1]= p4[0]=repe p4[1]=them s1[-2]=d s1[-1]=u s1[0]=t s1[1]=m s2[-2]=ld s2[-1]=ou s2[0]=at s2[1]=em s3[-2]=uld s3[-1]=you s3[0]=eat s3[1]=hem s4[-2]=ould s4[-1]= s4[0]=peat s4[1]=them 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=could|you w[-1]|w[0]=you|repeat w[0]|w[1]=repeat|them pos[-2]|pos[-1]=MD|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[1..4]=them +O w[-2]=you w[-1]=repeat w[0]=them wl[-2]=you wl[-1]=repeat wl[0]=them pos[-2]=PRP pos[-1]=VB pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=y p1[-1]=r p1[0]=t p2[-2]=yo p2[-1]=re p2[0]=th p3[-2]=you p3[-1]=rep p3[0]=the p4[-2]= p4[-1]=repe p4[0]=them s1[-2]=u s1[-1]=t s1[0]=m s2[-2]=ou s2[-1]=at s2[0]=em s3[-2]=you s3[-1]=eat s3[0]=hem s4[-2]= s4[-1]=peat s4[0]=them 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=you|repeat w[-1]|w[0]=repeat|them pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=could w[-4..-1]=you w[-4..-1]=repeat __EOS__ + +O w[0]=play w[1]=this w[2]=song wl[0]=play wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=s p2[0]=pl p2[1]=th p2[2]=so p3[0]=pla p3[1]=thi p3[2]=son p4[0]=play p4[1]=this p4[2]=song s1[0]=y s1[1]=s s1[2]=g s2[0]=ay s2[1]=is s2[2]=ng s3[0]=lay s3[1]=his s3[2]=ong s4[0]=play s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song w[1..4]=again __BOS__ +O w[-1]=play w[0]=this w[1]=song w[2]=again wl[-1]=play wl[0]=this wl[1]=song wl[2]=again pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=RB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=s p1[2]=a p2[-1]=pl p2[0]=th p2[1]=so p2[2]=ag p3[-1]=pla p3[0]=thi p3[1]=son p3[2]=aga p4[-1]=play p4[0]=this p4[1]=song p4[2]=agai s1[-1]=y s1[0]=s s1[1]=g s1[2]=n s2[-1]=ay s2[0]=is s2[1]=ng s2[2]=in s3[-1]=lay s3[0]=his s3[1]=ong s3[2]=ain s4[-1]=play s4[0]=this s4[1]=song s4[2]=gain 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|this w[0]|w[1]=this|song w[1]|w[2]=song|again pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|RB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=song w[1..4]=again +O w[-2]=play w[-1]=this w[0]=song w[1]=again wl[-2]=play wl[-1]=this wl[0]=song wl[1]=again pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=t p1[0]=s p1[1]=a p2[-2]=pl p2[-1]=th p2[0]=so p2[1]=ag p3[-2]=pla p3[-1]=thi p3[0]=son p3[1]=aga p4[-2]=play p4[-1]=this p4[0]=song p4[1]=agai s1[-2]=y s1[-1]=s s1[0]=g s1[1]=n s2[-2]=ay s2[-1]=is s2[0]=ng s2[1]=in s3[-2]=lay s3[-1]=his s3[0]=ong s3[1]=ain s4[-2]=play s4[-1]=this s4[0]=song s4[1]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|this w[-1]|w[0]=this|song w[0]|w[1]=song|again pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=this w[1..4]=again +O w[-2]=this w[-1]=song w[0]=again wl[-2]=this wl[-1]=song wl[0]=again pos[-2]=DT pos[-1]=NN pos[0]=RB chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=s p1[0]=a p2[-2]=th p2[-1]=so p2[0]=ag p3[-2]=thi p3[-1]=son p3[0]=aga p4[-2]=this p4[-1]=song p4[0]=agai s1[-2]=s s1[-1]=g s1[0]=n s2[-2]=is s2[-1]=ng s2[0]=in s3[-2]=his s3[-1]=ong s3[0]=ain s4[-2]=this s4[-1]=song s4[0]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=this|song w[-1]|w[0]=song|again pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=this w[-4..-1]=song __EOS__ + +O w[0]=repeat w[1]=this w[2]=song wl[0]=repeat wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=r p1[1]=t p1[2]=s p2[0]=re p2[1]=th p2[2]=so p3[0]=rep p3[1]=thi p3[2]=son p4[0]=repe p4[1]=this p4[2]=song s1[0]=t s1[1]=s s1[2]=g s2[0]=at s2[1]=is s2[2]=ng s3[0]=eat s3[1]=his s3[2]=ong s4[0]=peat s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=repeat|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song w[1..4]=once w[1..4]=again __BOS__ +O w[-1]=repeat w[0]=this w[1]=song w[2]=once wl[-1]=repeat wl[0]=this wl[1]=song wl[2]=once pos[-1]=VB pos[0]=DT pos[1]=NN pos[2]=RB chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=r p1[0]=t p1[1]=s p1[2]=o p2[-1]=re p2[0]=th p2[1]=so p2[2]=on p3[-1]=rep p3[0]=thi p3[1]=son p3[2]=onc p4[-1]=repe p4[0]=this p4[1]=song p4[2]=once s1[-1]=t s1[0]=s s1[1]=g s1[2]=e s2[-1]=at s2[0]=is s2[1]=ng s2[2]=ce s3[-1]=eat s3[0]=his s3[1]=ong s3[2]=nce s4[-1]=peat s4[0]=this s4[1]=song s4[2]=once 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=repeat|this w[0]|w[1]=this|song w[1]|w[2]=song|once pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN pos[1]|pos[2]=NN|RB chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[1..4]=song w[1..4]=once w[1..4]=again +O w[-2]=repeat w[-1]=this w[0]=song w[1]=once w[2]=again wl[-2]=repeat wl[-1]=this wl[0]=song wl[1]=once wl[2]=again pos[-2]=VB pos[-1]=DT pos[0]=NN pos[1]=RB pos[2]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=r p1[-1]=t p1[0]=s p1[1]=o p1[2]=a p2[-2]=re p2[-1]=th p2[0]=so p2[1]=on p2[2]=ag p3[-2]=rep p3[-1]=thi p3[0]=son p3[1]=onc p3[2]=aga p4[-2]=repe p4[-1]=this p4[0]=song p4[1]=once p4[2]=agai s1[-2]=t s1[-1]=s s1[0]=g s1[1]=e s1[2]=n s2[-2]=at s2[-1]=is s2[0]=ng s2[1]=ce s2[2]=in s3[-2]=eat s3[-1]=his s3[0]=ong s3[1]=nce s3[2]=ain s4[-2]=peat s4[-1]=this s4[0]=song s4[1]=once s4[2]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=repeat|this w[-1]|w[0]=this|song w[0]|w[1]=song|once w[1]|w[2]=once|again pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN pos[0]|pos[1]=NN|RB pos[1]|pos[2]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=this w[1..4]=once w[1..4]=again +O w[-2]=this w[-1]=song w[0]=once w[1]=again wl[-2]=this wl[-1]=song wl[0]=once wl[1]=again pos[-2]=DT pos[-1]=NN pos[0]=RB pos[1]=RB chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=s p1[0]=o p1[1]=a p2[-2]=th p2[-1]=so p2[0]=on p2[1]=ag p3[-2]=thi p3[-1]=son p3[0]=onc p3[1]=aga p4[-2]=this p4[-1]=song p4[0]=once p4[1]=agai s1[-2]=s s1[-1]=g s1[0]=e s1[1]=n s2[-2]=is s2[-1]=ng s2[0]=ce s2[1]=in s3[-2]=his s3[-1]=ong s3[0]=nce s3[1]=ain s4[-2]=this s4[-1]=song s4[0]=once s4[1]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=this|song w[-1]|w[0]=song|once w[0]|w[1]=once|again pos[-2]|pos[-1]=DT|NN pos[-1]|pos[0]=NN|RB pos[0]|pos[1]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=this w[-4..-1]=song w[1..4]=again +O w[-2]=song w[-1]=once w[0]=again wl[-2]=song wl[-1]=once wl[0]=again pos[-2]=NN pos[-1]=RB pos[0]=RB chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=o p1[0]=a p2[-2]=so p2[-1]=on p2[0]=ag p3[-2]=son p3[-1]=onc p3[0]=aga p4[-2]=song p4[-1]=once p4[0]=agai s1[-2]=g s1[-1]=e s1[0]=n s2[-2]=ng s2[-1]=ce s2[0]=in s3[-2]=ong s3[-1]=nce s3[0]=ain s4[-2]=song s4[-1]=once s4[0]=gain 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=song|once w[-1]|w[0]=once|again pos[-2]|pos[-1]=NN|RB pos[-1]|pos[0]=RB|RB chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=repeat w[-4..-1]=this w[-4..-1]=song w[-4..-1]=once __EOS__ + +O w[0]=play w[1]=it w[2]=one wl[0]=play wl[1]=it wl[2]=one pos[0]=VB pos[1]=PRP pos[2]=CD chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=i p1[2]=o p2[0]=pl p2[1]=it p2[2]=on p3[0]=pla p3[1]= p3[2]=one p4[0]=play p4[1]= p4[2]= s1[0]=y s1[1]=t s1[2]=e s2[0]=ay s2[1]=it s2[2]=ne s3[0]=lay s3[1]= s3[2]=one s4[0]=play s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|it w[1]|w[2]=it|one pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|CD chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=it w[1..4]=one w[1..4]=more w[1..4]=time __BOS__ +O w[-1]=play w[0]=it w[1]=one w[2]=more wl[-1]=play wl[0]=it wl[1]=one wl[2]=more pos[-1]=VB pos[0]=PRP pos[1]=CD pos[2]=JJR chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=i p1[1]=o p1[2]=m p2[-1]=pl p2[0]=it p2[1]=on p2[2]=mo p3[-1]=pla p3[0]= p3[1]=one p3[2]=mor p4[-1]=play p4[0]= p4[1]= p4[2]=more s1[-1]=y s1[0]=t s1[1]=e s1[2]=e s2[-1]=ay s2[0]=it s2[1]=ne s2[2]=re s3[-1]=lay s3[0]= s3[1]=one s3[2]=ore s4[-1]=play s4[0]= s4[1]= s4[2]=more 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|it w[0]|w[1]=it|one w[1]|w[2]=one|more pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|CD pos[1]|pos[2]=CD|JJR chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=one w[1..4]=more w[1..4]=time +O w[-2]=play w[-1]=it w[0]=one w[1]=more w[2]=time wl[-2]=play wl[-1]=it wl[0]=one wl[1]=more wl[2]=time pos[-2]=VB pos[-1]=PRP pos[0]=CD pos[1]=JJR pos[2]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=p p1[-1]=i p1[0]=o p1[1]=m p1[2]=t p2[-2]=pl p2[-1]=it p2[0]=on p2[1]=mo p2[2]=ti p3[-2]=pla p3[-1]= p3[0]=one p3[1]=mor p3[2]=tim p4[-2]=play p4[-1]= p4[0]= p4[1]=more p4[2]=time s1[-2]=y s1[-1]=t s1[0]=e s1[1]=e s1[2]=e s2[-2]=ay s2[-1]=it s2[0]=ne s2[1]=re s2[2]=me s3[-2]=lay s3[-1]= s3[0]=one s3[1]=ore s3[2]=ime s4[-2]=play s4[-1]= s4[0]= s4[1]=more s4[2]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=play|it w[-1]|w[0]=it|one w[0]|w[1]=one|more w[1]|w[2]=more|time pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|CD pos[0]|pos[1]=CD|JJR pos[1]|pos[2]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=it w[1..4]=more w[1..4]=time +O w[-2]=it w[-1]=one w[0]=more w[1]=time wl[-2]=it wl[-1]=one wl[0]=more wl[1]=time pos[-2]=PRP pos[-1]=CD pos[0]=JJR pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=i p1[-1]=o p1[0]=m p1[1]=t p2[-2]=it p2[-1]=on p2[0]=mo p2[1]=ti p3[-2]= p3[-1]=one p3[0]=mor p3[1]=tim p4[-2]= p4[-1]= p4[0]=more p4[1]=time s1[-2]=t s1[-1]=e s1[0]=e s1[1]=e s2[-2]=it s2[-1]=ne s2[0]=re s2[1]=me s3[-2]= s3[-1]=one s3[0]=ore s3[1]=ime s4[-2]= s4[-1]= s4[0]=more s4[1]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=it|one w[-1]|w[0]=one|more w[0]|w[1]=more|time pos[-2]|pos[-1]=PRP|CD pos[-1]|pos[0]=CD|JJR pos[0]|pos[1]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=it w[-4..-1]=one w[1..4]=time +O w[-2]=one w[-1]=more w[0]=time wl[-2]=one wl[-1]=more wl[0]=time pos[-2]=CD pos[-1]=JJR pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=o p1[-1]=m p1[0]=t p2[-2]=on p2[-1]=mo p2[0]=ti p3[-2]=one p3[-1]=mor p3[0]=tim p4[-2]= p4[-1]=more p4[0]=time s1[-2]=e s1[-1]=e s1[0]=e s2[-2]=ne s2[-1]=re s2[0]=me s3[-2]=one s3[-1]=ore s3[0]=ime s4[-2]= s4[-1]=more s4[0]=time 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=one|more w[-1]|w[0]=more|time pos[-2]|pos[-1]=CD|JJR pos[-1]|pos[0]=JJR|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=it w[-4..-1]=one w[-4..-1]=more __EOS__ + +O w[0]=let's w[1]=repeat w[2]=this wl[0]=let's wl[1]=repeat wl[2]=this pos[0]=VB pos[1]=PRP pos[2]=VB chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL'L shape[1]=LLLLLL shape[2]=LLLL shaped[0]=L'L shaped[1]=L shaped[2]=L type[0]=NO type[1]=AllLetter type[2]=AllLetter p1[0]=l p1[1]=r p1[2]=t p2[0]=le p2[1]=re p2[2]=th p3[0]=let p3[1]=rep p3[2]=thi p4[0]=let' p4[1]=repe p4[2]=this s1[0]=s s1[1]=t s1[2]=s s2[0]='s s2[1]=at s2[2]=is s3[0]=t's s3[1]=eat s3[2]=his s4[0]=et's s4[1]=peat s4[2]=this 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=let's|repeat w[1]|w[2]=repeat|this pos[0]|pos[1]=VB|PRP pos[1]|pos[2]=PRP|VB chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=NO|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=repeat w[1..4]=this w[1..4]=track __BOS__ +O w[-1]=let's w[0]=repeat w[1]=this w[2]=track wl[-1]=let's wl[0]=repeat wl[1]=this wl[2]=track pos[-1]=VB pos[0]=PRP pos[1]=VB pos[2]=DT chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL'L shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLLLL shaped[-1]=L'L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=NO type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=l p1[0]=r p1[1]=t p1[2]=t p2[-1]=le p2[0]=re p2[1]=th p2[2]=tr p3[-1]=let p3[0]=rep p3[1]=thi p3[2]=tra p4[-1]=let' p4[0]=repe p4[1]=this p4[2]=trac s1[-1]=s s1[0]=t s1[1]=s s1[2]=k s2[-1]='s s2[0]=at s2[1]=is s2[2]=ck s3[-1]=t's s3[0]=eat s3[1]=his s3[2]=ack s4[-1]=et's s4[0]=peat s4[1]=this s4[2]=rack 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=let's|repeat w[0]|w[1]=repeat|this w[1]|w[2]=this|track pos[-1]|pos[0]=VB|PRP pos[0]|pos[1]=PRP|VB pos[1]|pos[2]=VB|DT chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L'L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=NO|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=let's w[1..4]=this w[1..4]=track +O w[-2]=let's w[-1]=repeat w[0]=this w[1]=track wl[-2]=let's wl[-1]=repeat wl[0]=this wl[1]=track pos[-2]=VB pos[-1]=PRP pos[0]=VB pos[1]=DT chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL'L shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLLLL shaped[-2]=L'L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=NO type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=l p1[-1]=r p1[0]=t p1[1]=t p2[-2]=le p2[-1]=re p2[0]=th p2[1]=tr p3[-2]=let p3[-1]=rep p3[0]=thi p3[1]=tra p4[-2]=let' p4[-1]=repe p4[0]=this p4[1]=trac s1[-2]=s s1[-1]=t s1[0]=s s1[1]=k s2[-2]='s s2[-1]=at s2[0]=is s2[1]=ck s3[-2]=t's s3[-1]=eat s3[0]=his s3[1]=ack s4[-2]=et's s4[-1]=peat s4[0]=this s4[1]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=let's|repeat w[-1]|w[0]=repeat|this w[0]|w[1]=this|track pos[-2]|pos[-1]=VB|PRP pos[-1]|pos[0]=PRP|VB pos[0]|pos[1]=VB|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L'L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=NO|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=let's w[-4..-1]=repeat w[1..4]=track +O w[-2]=repeat w[-1]=this w[0]=track wl[-2]=repeat wl[-1]=this wl[0]=track pos[-2]=PRP pos[-1]=VB pos[0]=DT chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=r p1[-1]=t p1[0]=t p2[-2]=re p2[-1]=th p2[0]=tr p3[-2]=rep p3[-1]=thi p3[0]=tra p4[-2]=repe p4[-1]=this p4[0]=trac s1[-2]=t s1[-1]=s s1[0]=k s2[-2]=at s2[-1]=is s2[0]=ck s3[-2]=eat s3[-1]=his s3[0]=ack s4[-2]=peat s4[-1]=this s4[0]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=repeat|this w[-1]|w[0]=this|track pos[-2]|pos[-1]=PRP|VB pos[-1]|pos[0]=VB|DT chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=let's w[-4..-1]=repeat w[-4..-1]=this __EOS__ + +O w[0]=turn w[1]=on w[2]=repeat wl[0]=turn wl[1]=on wl[2]=repeat pos[0]=VB pos[1]=RP pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=o p1[2]=r p2[0]=tu p2[1]=on p2[2]=re p3[0]=tur p3[1]= p3[2]=rep p4[0]=turn p4[1]= p4[2]=repe s1[0]=n s1[1]=n s1[2]=t s2[0]=rn s2[1]=on s2[2]=at s3[0]=urn s3[1]= s3[2]=eat s4[0]=turn s4[1]= s4[2]=peat 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=turn|on w[1]|w[2]=on|repeat pos[0]|pos[1]=VB|RP pos[1]|pos[2]=RP|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=on w[1..4]=repeat w[1..4]=mode w[1..4]=for __BOS__ +O w[-1]=turn w[0]=on w[1]=repeat w[2]=mode wl[-1]=turn wl[0]=on wl[1]=repeat wl[2]=mode pos[-1]=VB pos[0]=RP pos[1]=NN pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=t p1[0]=o p1[1]=r p1[2]=m p2[-1]=tu p2[0]=on p2[1]=re p2[2]=mo p3[-1]=tur p3[0]= p3[1]=rep p3[2]=mod p4[-1]=turn p4[0]= p4[1]=repe p4[2]=mode s1[-1]=n s1[0]=n s1[1]=t s1[2]=e s2[-1]=rn s2[0]=on s2[1]=at s2[2]=de s3[-1]=urn s3[0]= s3[1]=eat s3[2]=ode s4[-1]=turn s4[0]= s4[1]=peat s4[2]=mode 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=turn|on w[0]|w[1]=on|repeat w[1]|w[2]=repeat|mode pos[-1]|pos[0]=VB|RP pos[0]|pos[1]=RP|NN pos[1]|pos[2]=NN|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[1..4]=repeat w[1..4]=mode w[1..4]=for w[1..4]=it +O w[-2]=turn w[-1]=on w[0]=repeat w[1]=mode w[2]=for wl[-2]=turn wl[-1]=on wl[0]=repeat wl[1]=mode wl[2]=for pos[-2]=VB pos[-1]=RP pos[0]=NN pos[1]=NN pos[2]=IN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLLLL shape[1]=LLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=t p1[-1]=o p1[0]=r p1[1]=m p1[2]=f p2[-2]=tu p2[-1]=on p2[0]=re p2[1]=mo p2[2]=fo p3[-2]=tur p3[-1]= p3[0]=rep p3[1]=mod p3[2]=for p4[-2]=turn p4[-1]= p4[0]=repe p4[1]=mode p4[2]= s1[-2]=n s1[-1]=n s1[0]=t s1[1]=e s1[2]=r s2[-2]=rn s2[-1]=on s2[0]=at s2[1]=de s2[2]=or s3[-2]=urn s3[-1]= s3[0]=eat s3[1]=ode s3[2]=for s4[-2]=turn s4[-1]= s4[0]=peat s4[1]=mode s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=turn|on w[-1]|w[0]=on|repeat w[0]|w[1]=repeat|mode w[1]|w[2]=mode|for pos[-2]|pos[-1]=VB|RP pos[-1]|pos[0]=RP|NN pos[0]|pos[1]=NN|NN pos[1]|pos[2]=NN|IN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[1..4]=mode w[1..4]=for w[1..4]=it +O w[-2]=on w[-1]=repeat w[0]=mode w[1]=for w[2]=it wl[-2]=on wl[-1]=repeat wl[0]=mode wl[1]=for wl[2]=it pos[-2]=RP pos[-1]=NN pos[0]=NN pos[1]=IN pos[2]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LLLLLL shape[0]=LLLL shape[1]=LLL shape[2]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=o p1[-1]=r p1[0]=m p1[1]=f p1[2]=i p2[-2]=on p2[-1]=re p2[0]=mo p2[1]=fo p2[2]=it p3[-2]= p3[-1]=rep p3[0]=mod p3[1]=for p3[2]= p4[-2]= p4[-1]=repe p4[0]=mode p4[1]= p4[2]= s1[-2]=n s1[-1]=t s1[0]=e s1[1]=r s1[2]=t s2[-2]=on s2[-1]=at s2[0]=de s2[1]=or s2[2]=it s3[-2]= s3[-1]=eat s3[0]=ode s3[1]=for s3[2]= s4[-2]= s4[-1]=peat s4[0]=mode s4[1]= s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=on|repeat w[-1]|w[0]=repeat|mode w[0]|w[1]=mode|for w[1]|w[2]=for|it pos[-2]|pos[-1]=RP|NN pos[-1]|pos[0]=NN|NN pos[0]|pos[1]=NN|IN pos[1]|pos[2]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=repeat w[1..4]=for w[1..4]=it +O w[-2]=repeat w[-1]=mode w[0]=for w[1]=it wl[-2]=repeat wl[-1]=mode wl[0]=for wl[1]=it pos[-2]=NN pos[-1]=NN pos[0]=IN pos[1]=PRP chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLLLL shape[-1]=LLLL shape[0]=LLL shape[1]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=r p1[-1]=m p1[0]=f p1[1]=i p2[-2]=re p2[-1]=mo p2[0]=fo p2[1]=it p3[-2]=rep p3[-1]=mod p3[0]=for p3[1]= p4[-2]=repe p4[-1]=mode p4[0]= p4[1]= s1[-2]=t s1[-1]=e s1[0]=r s1[1]=t s2[-2]=at s2[-1]=de s2[0]=or s2[1]=it s3[-2]=eat s3[-1]=ode s3[0]=for s3[1]= s4[-2]=peat s4[-1]=mode s4[0]= s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=repeat|mode w[-1]|w[0]=mode|for w[0]|w[1]=for|it pos[-2]|pos[-1]=NN|NN pos[-1]|pos[0]=NN|IN pos[0]|pos[1]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=turn w[-4..-1]=on w[-4..-1]=repeat w[-4..-1]=mode w[1..4]=it +O w[-2]=mode w[-1]=for w[0]=it wl[-2]=mode wl[-1]=for wl[0]=it pos[-2]=NN pos[-1]=IN pos[0]=PRP chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=m p1[-1]=f p1[0]=i p2[-2]=mo p2[-1]=fo p2[0]=it p3[-2]=mod p3[-1]=for p3[0]= p4[-2]=mode p4[-1]= p4[0]= s1[-2]=e s1[-1]=r s1[0]=t s2[-2]=de s2[-1]=or s2[0]=it s3[-2]=ode s3[-1]=for s3[0]= s4[-2]=mode s4[-1]= s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=mode|for w[-1]|w[0]=for|it pos[-2]|pos[-1]=NN|IN pos[-1]|pos[0]=IN|PRP chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=on w[-4..-1]=repeat w[-4..-1]=mode w[-4..-1]=for __EOS__ + +O w[0]=play w[1]=the w[2]=next wl[0]=play wl[1]=the wl[2]=next pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=n p2[0]=pl p2[1]=th p2[2]=ne p3[0]=pla p3[1]=the p3[2]=nex p4[0]=play p4[1]= p4[2]=next s1[0]=y s1[1]=e s1[2]=t s2[0]=ay s2[1]=he s2[2]=xt s3[0]=lay s3[1]=the s3[2]=ext s4[0]=play s4[1]= s4[2]=next 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|next pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=next w[1..4]=one __BOS__ +O w[-1]=play w[0]=the w[1]=next w[2]=one wl[-1]=play wl[0]=the wl[1]=next wl[2]=one pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=CD chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=n p1[2]=o p2[-1]=pl p2[0]=th p2[1]=ne p2[2]=on p3[-1]=pla p3[0]=the p3[1]=nex p3[2]=one p4[-1]=play p4[0]= p4[1]=next p4[2]= s1[-1]=y s1[0]=e s1[1]=t s1[2]=e s2[-1]=ay s2[0]=he s2[1]=xt s2[2]=ne s3[-1]=lay s3[0]=the s3[1]=ext s3[2]=one s4[-1]=play s4[0]= s4[1]=next s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|next w[1]|w[2]=next|one pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|CD chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=next w[1..4]=one +O w[-2]=play w[-1]=the w[0]=next w[1]=one wl[-2]=play wl[-1]=the wl[0]=next wl[1]=one pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=CD chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=t p1[0]=n p1[1]=o p2[-2]=pl p2[-1]=th p2[0]=ne p2[1]=on p3[-2]=pla p3[-1]=the p3[0]=nex p3[1]=one p4[-2]=play p4[-1]= p4[0]=next p4[1]= s1[-2]=y s1[-1]=e s1[0]=t s1[1]=e s2[-2]=ay s2[-1]=he s2[0]=xt s2[1]=ne s3[-2]=lay s3[-1]=the s3[0]=ext s3[1]=one s4[-2]=play s4[-1]= s4[0]=next s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|next w[0]|w[1]=next|one pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=one +O w[-2]=the w[-1]=next w[0]=one wl[-2]=the wl[-1]=next wl[0]=one pos[-2]=DT pos[-1]=JJ pos[0]=CD chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=o p2[-2]=th p2[-1]=ne p2[0]=on p3[-2]=the p3[-1]=nex p3[0]=one p4[-2]= p4[-1]=next p4[0]= s1[-2]=e s1[-1]=t s1[0]=e s2[-2]=he s2[-1]=xt s2[0]=ne s3[-2]=the s3[-1]=ext s3[0]=one s4[-2]= s4[-1]=next s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|one pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=next __EOS__ + +O w[0]=what's w[1]=the w[2]=next wl[0]=what's wl[1]=the wl[2]=next pos[0]=WP pos[1]=VBZ pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL'L shape[1]=LLL shape[2]=LLLL shaped[0]=L'L shaped[1]=L shaped[2]=L type[0]=NO type[1]=AllLetter type[2]=AllLetter p1[0]=w p1[1]=t p1[2]=n p2[0]=wh p2[1]=th p2[2]=ne p3[0]=wha p3[1]=the p3[2]=nex p4[0]=what p4[1]= p4[2]=next s1[0]=s s1[1]=e s1[2]=t s2[0]='s s2[1]=he s2[2]=xt s3[0]=t's s3[1]=the s3[2]=ext s4[0]=at's s4[1]= s4[2]=next 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=what's|the w[1]|w[2]=the|next pos[0]|pos[1]=WP|VBZ pos[1]|pos[2]=VBZ|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=NO|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=next w[1..4]=one __BOS__ +O w[-1]=what's w[0]=the w[1]=next w[2]=one wl[-1]=what's wl[0]=the wl[1]=next wl[2]=one pos[-1]=WP pos[0]=VBZ pos[1]=DT pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL'L shape[0]=LLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L'L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=NO type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=w p1[0]=t p1[1]=n p1[2]=o p2[-1]=wh p2[0]=th p2[1]=ne p2[2]=on p3[-1]=wha p3[0]=the p3[1]=nex p3[2]=one p4[-1]=what p4[0]= p4[1]=next p4[2]= s1[-1]=s s1[0]=e s1[1]=t s1[2]=e s2[-1]='s s2[0]=he s2[1]=xt s2[2]=ne s3[-1]=t's s3[0]=the s3[1]=ext s3[2]=one s4[-1]=at's s4[0]= s4[1]=next s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=what's|the w[0]|w[1]=the|next w[1]|w[2]=next|one pos[-1]|pos[0]=WP|VBZ pos[0]|pos[1]=VBZ|DT pos[1]|pos[2]=DT|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L'L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=NO|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=what's w[1..4]=next w[1..4]=one +O w[-2]=what's w[-1]=the w[0]=next w[1]=one wl[-2]=what's wl[-1]=the wl[0]=next wl[1]=one pos[-2]=WP pos[-1]=VBZ pos[0]=DT pos[1]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL'L shape[-1]=LLL shape[0]=LLLL shape[1]=LLL shaped[-2]=L'L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=NO type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=w p1[-1]=t p1[0]=n p1[1]=o p2[-2]=wh p2[-1]=th p2[0]=ne p2[1]=on p3[-2]=wha p3[-1]=the p3[0]=nex p3[1]=one p4[-2]=what p4[-1]= p4[0]=next p4[1]= s1[-2]=s s1[-1]=e s1[0]=t s1[1]=e s2[-2]='s s2[-1]=he s2[0]=xt s2[1]=ne s3[-2]=t's s3[-1]=the s3[0]=ext s3[1]=one s4[-2]=at's s4[-1]= s4[0]=next s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=what's|the w[-1]|w[0]=the|next w[0]|w[1]=next|one pos[-2]|pos[-1]=WP|VBZ pos[-1]|pos[0]=VBZ|DT pos[0]|pos[1]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L'L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=NO|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=what's w[-4..-1]=the w[1..4]=one +O w[-2]=the w[-1]=next w[0]=one wl[-2]=the wl[-1]=next wl[0]=one pos[-2]=VBZ pos[-1]=DT pos[0]=JJ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=o p2[-2]=th p2[-1]=ne p2[0]=on p3[-2]=the p3[-1]=nex p3[0]=one p4[-2]= p4[-1]=next p4[0]= s1[-2]=e s1[-1]=t s1[0]=e s2[-2]=he s2[-1]=xt s2[0]=ne s3[-2]=the s3[-1]=ext s3[0]=one s4[-2]= s4[-1]=next s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|one pos[-2]|pos[-1]=VBZ|DT pos[-1]|pos[0]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=what's w[-4..-1]=the w[-4..-1]=next __EOS__ + +O w[0]=skip w[1]=next wl[0]=skip wl[1]=next pos[0]=VB pos[1]=RB chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=s p1[1]=n p2[0]=sk p2[1]=ne p3[0]=ski p3[1]=nex p4[0]=skip p4[1]=next s1[0]=p s1[1]=t s2[0]=ip s2[1]=xt s3[0]=kip s3[1]=ext s4[0]=skip s4[1]=next 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=skip|next pos[0]|pos[1]=VB|RB chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=next __BOS__ +O w[-1]=skip w[0]=next wl[-1]=skip wl[0]=next pos[-1]=VB pos[0]=RB chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=s p1[0]=n p2[-1]=sk p2[0]=ne p3[-1]=ski p3[0]=nex p4[-1]=skip p4[0]=next s1[-1]=p s1[0]=t s2[-1]=ip s2[0]=xt s3[-1]=kip s3[0]=ext s4[-1]=skip s4[0]=next 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=skip|next pos[-1]|pos[0]=VB|RB chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip __EOS__ + +O w[0]=skip w[1]=to w[2]=next wl[0]=skip wl[1]=to wl[2]=next pos[0]=VB pos[1]=IN pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=n p2[0]=sk p2[1]=to p2[2]=ne p3[0]=ski p3[1]= p3[2]=nex p4[0]=skip p4[1]= p4[2]=next s1[0]=p s1[1]=o s1[2]=t s2[0]=ip s2[1]=to s2[2]=xt s3[0]=kip s3[1]= s3[2]=ext s4[0]=skip s4[1]= s4[2]=next 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=skip|to w[1]|w[2]=to|next pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=next __BOS__ +O w[-1]=skip w[0]=to w[1]=next wl[-1]=skip wl[0]=to wl[1]=next pos[-1]=VB pos[0]=IN pos[1]=JJ chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=s p1[0]=t p1[1]=n p2[-1]=sk p2[0]=to p2[1]=ne p3[-1]=ski p3[0]= p3[1]=nex p4[-1]=skip p4[0]= p4[1]=next s1[-1]=p s1[0]=o s1[1]=t s2[-1]=ip s2[0]=to s2[1]=xt s3[-1]=kip s3[0]= s3[1]=ext s4[-1]=skip s4[0]= s4[1]=next 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=skip|to w[0]|w[1]=to|next pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=skip w[1..4]=next +O w[-2]=skip w[-1]=to w[0]=next wl[-2]=skip wl[-1]=to wl[0]=next pos[-2]=VB pos[-1]=IN pos[0]=JJ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=t p1[0]=n p2[-2]=sk p2[-1]=to p2[0]=ne p3[-2]=ski p3[-1]= p3[0]=nex p4[-2]=skip p4[-1]= p4[0]=next s1[-2]=p s1[-1]=o s1[0]=t s2[-2]=ip s2[-1]=to s2[0]=xt s3[-2]=kip s3[-1]= s3[0]=ext s4[-2]=skip s4[-1]= s4[0]=next 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=skip|to w[-1]|w[0]=to|next pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to __EOS__ + +O w[0]=next w[1]=track wl[0]=next wl[1]=track pos[0]=JJ pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=n p1[1]=t p2[0]=ne p2[1]=tr p3[0]=nex p3[1]=tra p4[0]=next p4[1]=trac s1[0]=t s1[1]=k s2[0]=xt s2[1]=ck s3[0]=ext s3[1]=ack s4[0]=next s4[1]=rack 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=next|track pos[0]|pos[1]=JJ|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=track __BOS__ +O w[-1]=next w[0]=track wl[-1]=next wl[0]=track pos[-1]=JJ pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=n p1[0]=t p2[-1]=ne p2[0]=tr p3[-1]=nex p3[0]=tra p4[-1]=next p4[0]=trac s1[-1]=t s1[0]=k s2[-1]=xt s2[0]=ck s3[-1]=ext s3[0]=ack s4[-1]=next s4[0]=rack 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=next|track pos[-1]|pos[0]=JJ|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=next __EOS__ + +O w[0]=go w[1]=to w[2]=the wl[0]=go wl[1]=to wl[2]=the pos[0]=VB pos[1]=IN pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LL shape[1]=LL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=g p1[1]=t p1[2]=t p2[0]=go p2[1]=to p2[2]=th p3[0]= p3[1]= p3[2]=the p4[0]= p4[1]= p4[2]= s1[0]=o s1[1]=o s1[2]=e s2[0]=go s2[1]=to s2[2]=he s3[0]= s3[1]= s3[2]=the s4[0]= s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=go|to w[1]|w[2]=to|the pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=the w[1..4]=next __BOS__ +O w[-1]=go w[0]=to w[1]=the w[2]=next wl[-1]=go wl[0]=to wl[1]=the wl[2]=next pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LL shape[0]=LL shape[1]=LLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=g p1[0]=t p1[1]=t p1[2]=n p2[-1]=go p2[0]=to p2[1]=th p2[2]=ne p3[-1]= p3[0]= p3[1]=the p3[2]=nex p4[-1]= p4[0]= p4[1]= p4[2]=next s1[-1]=o s1[0]=o s1[1]=e s1[2]=t s2[-1]=go s2[0]=to s2[1]=he s2[2]=xt s3[-1]= s3[0]= s3[1]=the s3[2]=ext s4[-1]= s4[0]= s4[1]= s4[2]=next 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=go|to w[0]|w[1]=to|the w[1]|w[2]=the|next pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[1..4]=the w[1..4]=next +O w[-2]=go w[-1]=to w[0]=the w[1]=next wl[-2]=go wl[-1]=to wl[0]=the wl[1]=next pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LL shape[0]=LLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=g p1[-1]=t p1[0]=t p1[1]=n p2[-2]=go p2[-1]=to p2[0]=th p2[1]=ne p3[-2]= p3[-1]= p3[0]=the p3[1]=nex p4[-2]= p4[-1]= p4[0]= p4[1]=next s1[-2]=o s1[-1]=o s1[0]=e s1[1]=t s2[-2]=go s2[-1]=to s2[0]=he s2[1]=xt s3[-2]= s3[-1]= s3[0]=the s3[1]=ext s4[-2]= s4[-1]= s4[0]= s4[1]=next 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=go|to w[-1]|w[0]=to|the w[0]|w[1]=the|next pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=to w[1..4]=next +O w[-2]=to w[-1]=the w[0]=next wl[-2]=to wl[-1]=the wl[0]=next pos[-2]=IN pos[-1]=DT pos[0]=JJ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LL shape[-1]=LLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=t p1[0]=n p2[-2]=to p2[-1]=th p2[0]=ne p3[-2]= p3[-1]=the p3[0]=nex p4[-2]= p4[-1]= p4[0]=next s1[-2]=o s1[-1]=e s1[0]=t s2[-2]=to s2[-1]=he s2[0]=xt s3[-2]= s3[-1]=the s3[0]=ext s4[-2]= s4[-1]= s4[0]=next 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|next pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=to w[-4..-1]=the __EOS__ + +O w[0]=what's w[1]=next wl[0]=what's wl[1]=next pos[0]=WP pos[1]=VBZ chk[0]=O chk[1]=O shape[0]=LLLL'L shape[1]=LLLL shaped[0]=L'L shaped[1]=L type[0]=NO type[1]=AllLetter p1[0]=w p1[1]=n p2[0]=wh p2[1]=ne p3[0]=wha p3[1]=nex p4[0]=what p4[1]=next s1[0]=s s1[1]=t s2[0]='s s2[1]=xt s3[0]=t's s3[1]=ext s4[0]=at's s4[1]=next 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=yes cs[1]=no w[0]|w[1]=what's|next pos[0]|pos[1]=WP|VBZ chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L'L|L type[0]|type[1]=NO|AllLetter w[1..4]=next __BOS__ +O w[-1]=what's w[0]=next wl[-1]=what's wl[0]=next pos[-1]=WP pos[0]=VBZ chk[-1]=O chk[0]=O shape[-1]=LLLL'L shape[0]=LLLL shaped[-1]=L'L shaped[0]=L type[-1]=NO type[0]=AllLetter p1[-1]=w p1[0]=n p2[-1]=wh p2[0]=ne p3[-1]=wha p3[0]=nex p4[-1]=what p4[0]=next s1[-1]=s s1[0]=t s2[-1]='s s2[0]=xt s3[-1]=t's s3[0]=ext s4[-1]=at's s4[0]=next 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=yes cs[0]=no w[-1]|w[0]=what's|next pos[-1]|pos[0]=WP|VBZ chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L'L|L type[-1]|type[0]=NO|AllLetter w[-4..-1]=what's __EOS__ + +O w[0]=now w[1]=the w[2]=next wl[0]=now wl[1]=the wl[2]=next pos[0]=RB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=n p1[1]=t p1[2]=n p2[0]=no p2[1]=th p2[2]=ne p3[0]=now p3[1]=the p3[2]=nex p4[0]= p4[1]= p4[2]=next s1[0]=w s1[1]=e s1[2]=t s2[0]=ow s2[1]=he s2[2]=xt s3[0]=now s3[1]=the s3[2]=ext s4[0]= s4[1]= s4[2]=next 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=now|the w[1]|w[2]=the|next pos[0]|pos[1]=RB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=next w[1..4]=one __BOS__ +O w[-1]=now w[0]=the w[1]=next w[2]=one wl[-1]=now wl[0]=the wl[1]=next wl[2]=one pos[-1]=RB pos[0]=DT pos[1]=JJ pos[2]=CD chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLL shape[0]=LLL shape[1]=LLLL shape[2]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=n p1[0]=t p1[1]=n p1[2]=o p2[-1]=no p2[0]=th p2[1]=ne p2[2]=on p3[-1]=now p3[0]=the p3[1]=nex p3[2]=one p4[-1]= p4[0]= p4[1]=next p4[2]= s1[-1]=w s1[0]=e s1[1]=t s1[2]=e s2[-1]=ow s2[0]=he s2[1]=xt s2[2]=ne s3[-1]=now s3[0]=the s3[1]=ext s3[2]=one s4[-1]= s4[0]= s4[1]=next s4[2]= 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=now|the w[0]|w[1]=the|next w[1]|w[2]=next|one pos[-1]|pos[0]=RB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|CD chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=now w[1..4]=next w[1..4]=one +O w[-2]=now w[-1]=the w[0]=next w[1]=one wl[-2]=now wl[-1]=the wl[0]=next wl[1]=one pos[-2]=RB pos[-1]=DT pos[0]=JJ pos[1]=CD chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=n p1[-1]=t p1[0]=n p1[1]=o p2[-2]=no p2[-1]=th p2[0]=ne p2[1]=on p3[-2]=now p3[-1]=the p3[0]=nex p3[1]=one p4[-2]= p4[-1]= p4[0]=next p4[1]= s1[-2]=w s1[-1]=e s1[0]=t s1[1]=e s2[-2]=ow s2[-1]=he s2[0]=xt s2[1]=ne s3[-2]=now s3[-1]=the s3[0]=ext s3[1]=one s4[-2]= s4[-1]= s4[0]=next s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=now|the w[-1]|w[0]=the|next w[0]|w[1]=next|one pos[-2]|pos[-1]=RB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=now w[-4..-1]=the w[1..4]=one +O w[-2]=the w[-1]=next w[0]=one wl[-2]=the wl[-1]=next wl[0]=one pos[-2]=DT pos[-1]=JJ pos[0]=CD chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=o p2[-2]=th p2[-1]=ne p2[0]=on p3[-2]=the p3[-1]=nex p3[0]=one p4[-2]= p4[-1]=next p4[0]= s1[-2]=e s1[-1]=t s1[0]=e s2[-2]=he s2[-1]=xt s2[0]=ne s3[-2]=the s3[-1]=ext s3[0]=one s4[-2]= s4[-1]=next s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|one pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=now w[-4..-1]=the w[-4..-1]=next __EOS__ + +O w[0]=play w[1]=next wl[0]=play wl[1]=next pos[0]=VB pos[1]=RB chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=p p1[1]=n p2[0]=pl p2[1]=ne p3[0]=pla p3[1]=nex p4[0]=play p4[1]=next s1[0]=y s1[1]=t s2[0]=ay s2[1]=xt s3[0]=lay s3[1]=ext s4[0]=play s4[1]=next 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=play|next pos[0]|pos[1]=VB|RB chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=next __BOS__ +O w[-1]=play w[0]=next wl[-1]=play wl[0]=next pos[-1]=VB pos[0]=RB chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=p p1[0]=n p2[-1]=pl p2[0]=ne p3[-1]=pla p3[0]=nex p4[-1]=play p4[0]=next s1[-1]=y s1[0]=t s2[-1]=ay s2[0]=xt s3[-1]=lay s3[0]=ext s4[-1]=play s4[0]=next 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=play|next pos[-1]|pos[0]=VB|RB chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play __EOS__ + +O w[0]=the w[1]=next w[2]=song wl[0]=the wl[1]=next wl[2]=song pos[0]=DT pos[1]=JJ pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=n p1[2]=s p2[0]=th p2[1]=ne p2[2]=so p3[0]=the p3[1]=nex p3[2]=son p4[0]= p4[1]=next p4[2]=song s1[0]=e s1[1]=t s1[2]=g s2[0]=he s2[1]=xt s2[2]=ng s3[0]=the s3[1]=ext s3[2]=ong s4[0]= s4[1]=next s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=the|next w[1]|w[2]=next|song pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=next w[1..4]=song __BOS__ +O w[-1]=the w[0]=next w[1]=song wl[-1]=the wl[0]=next wl[1]=song pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=t p1[0]=n p1[1]=s p2[-1]=th p2[0]=ne p2[1]=so p3[-1]=the p3[0]=nex p3[1]=son p4[-1]= p4[0]=next p4[1]=song s1[-1]=e s1[0]=t s1[1]=g s2[-1]=he s2[0]=xt s2[1]=ng s3[-1]=the s3[0]=ext s3[1]=ong s4[-1]= s4[0]=next s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=the|next w[0]|w[1]=next|song pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=the w[1..4]=song +O w[-2]=the w[-1]=next w[0]=song wl[-2]=the wl[-1]=next wl[0]=song pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=s p2[-2]=th p2[-1]=ne p2[0]=so p3[-2]=the p3[-1]=nex p3[0]=son p4[-2]= p4[-1]=next p4[0]=song s1[-2]=e s1[-1]=t s1[0]=g s2[-2]=he s2[-1]=xt s2[0]=ng s3[-2]=the s3[-1]=ext s3[0]=ong s4[-2]= s4[-1]=next s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|song pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=the w[-4..-1]=next __EOS__ + +O w[0]=skip w[1]=forward wl[0]=skip wl[1]=forward pos[0]=VB pos[1]=RB chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=s p1[1]=f p2[0]=sk p2[1]=fo p3[0]=ski p3[1]=for p4[0]=skip p4[1]=forw s1[0]=p s1[1]=d s2[0]=ip s2[1]=rd s3[0]=kip s3[1]=ard s4[0]=skip s4[1]=ward 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=skip|forward pos[0]|pos[1]=VB|RB chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=forward __BOS__ +O w[-1]=skip w[0]=forward wl[-1]=skip wl[0]=forward pos[-1]=VB pos[0]=RB chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=s p1[0]=f p2[-1]=sk p2[0]=fo p3[-1]=ski p3[0]=for p4[-1]=skip p4[0]=forw s1[-1]=p s1[0]=d s2[-1]=ip s2[0]=rd s3[-1]=kip s3[0]=ard s4[-1]=skip s4[0]=ward 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=skip|forward pos[-1]|pos[0]=VB|RB chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip __EOS__ + +O w[0]=play w[1]=next w[2]=track wl[0]=play wl[1]=next wl[2]=track pos[0]=VB pos[1]=JJ pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=n p1[2]=t p2[0]=pl p2[1]=ne p2[2]=tr p3[0]=pla p3[1]=nex p3[2]=tra p4[0]=play p4[1]=next p4[2]=trac s1[0]=y s1[1]=t s1[2]=k s2[0]=ay s2[1]=xt s2[2]=ck s3[0]=lay s3[1]=ext s3[2]=ack s4[0]=play s4[1]=next s4[2]=rack 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|next w[1]|w[2]=next|track pos[0]|pos[1]=VB|JJ pos[1]|pos[2]=JJ|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=next w[1..4]=track __BOS__ +O w[-1]=play w[0]=next w[1]=track wl[-1]=play wl[0]=next wl[1]=track pos[-1]=VB pos[0]=JJ pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=n p1[1]=t p2[-1]=pl p2[0]=ne p2[1]=tr p3[-1]=pla p3[0]=nex p3[1]=tra p4[-1]=play p4[0]=next p4[1]=trac s1[-1]=y s1[0]=t s1[1]=k s2[-1]=ay s2[0]=xt s2[1]=ck s3[-1]=lay s3[0]=ext s3[1]=ack s4[-1]=play s4[0]=next s4[1]=rack 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|next w[0]|w[1]=next|track pos[-1]|pos[0]=VB|JJ pos[0]|pos[1]=JJ|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=track +O w[-2]=play w[-1]=next w[0]=track wl[-2]=play wl[-1]=next wl[0]=track pos[-2]=VB pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=n p1[0]=t p2[-2]=pl p2[-1]=ne p2[0]=tr p3[-2]=pla p3[-1]=nex p3[0]=tra p4[-2]=play p4[-1]=next p4[0]=trac s1[-2]=y s1[-1]=t s1[0]=k s2[-2]=ay s2[-1]=xt s2[0]=ck s3[-2]=lay s3[-1]=ext s3[0]=ack s4[-2]=play s4[-1]=next s4[0]=rack 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|next w[-1]|w[0]=next|track pos[-2]|pos[-1]=VB|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=next __EOS__ + +O w[0]=the w[1]=following w[2]=song wl[0]=the wl[1]=following wl[2]=song pos[0]=DT pos[1]=VBG pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLLLLLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=f p1[2]=s p2[0]=th p2[1]=fo p2[2]=so p3[0]=the p3[1]=fol p3[2]=son p4[0]= p4[1]=foll p4[2]=song s1[0]=e s1[1]=g s1[2]=g s2[0]=he s2[1]=ng s2[2]=ng s3[0]=the s3[1]=ing s3[2]=ong s4[0]= s4[1]=wing s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=the|following w[1]|w[2]=following|song pos[0]|pos[1]=DT|VBG pos[1]|pos[2]=VBG|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=following w[1..4]=song __BOS__ +O w[-1]=the w[0]=following w[1]=song wl[-1]=the wl[0]=following wl[1]=song pos[-1]=DT pos[0]=VBG pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLL shape[0]=LLLLLLLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=t p1[0]=f p1[1]=s p2[-1]=th p2[0]=fo p2[1]=so p3[-1]=the p3[0]=fol p3[1]=son p4[-1]= p4[0]=foll p4[1]=song s1[-1]=e s1[0]=g s1[1]=g s2[-1]=he s2[0]=ng s2[1]=ng s3[-1]=the s3[0]=ing s3[1]=ong s4[-1]= s4[0]=wing s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=the|following w[0]|w[1]=following|song pos[-1]|pos[0]=DT|VBG pos[0]|pos[1]=VBG|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=the w[1..4]=song +O w[-2]=the w[-1]=following w[0]=song wl[-2]=the wl[-1]=following wl[0]=song pos[-2]=DT pos[-1]=VBG pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLLLLLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=f p1[0]=s p2[-2]=th p2[-1]=fo p2[0]=so p3[-2]=the p3[-1]=fol p3[0]=son p4[-2]= p4[-1]=foll p4[0]=song s1[-2]=e s1[-1]=g s1[0]=g s2[-2]=he s2[-1]=ng s2[0]=ng s3[-2]=the s3[-1]=ing s3[0]=ong s4[-2]= s4[-1]=wing s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|following w[-1]|w[0]=following|song pos[-2]|pos[-1]=DT|VBG pos[-1]|pos[0]=VBG|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=the w[-4..-1]=following __EOS__ + +O w[0]=what's w[1]=the w[2]=next wl[0]=what's wl[1]=the wl[2]=next pos[0]=WP pos[1]=VBZ pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL'L shape[1]=LLL shape[2]=LLLL shaped[0]=L'L shaped[1]=L shaped[2]=L type[0]=NO type[1]=AllLetter type[2]=AllLetter p1[0]=w p1[1]=t p1[2]=n p2[0]=wh p2[1]=th p2[2]=ne p3[0]=wha p3[1]=the p3[2]=nex p4[0]=what p4[1]= p4[2]=next s1[0]=s s1[1]=e s1[2]=t s2[0]='s s2[1]=he s2[2]=xt s3[0]=t's s3[1]=the s3[2]=ext s4[0]=at's s4[1]= s4[2]=next 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=yes cs[1]=no cs[2]=no w[0]|w[1]=what's|the w[1]|w[2]=the|next pos[0]|pos[1]=WP|VBZ pos[1]|pos[2]=VBZ|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L'L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=NO|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=next w[1..4]=song __BOS__ +O w[-1]=what's w[0]=the w[1]=next w[2]=song wl[-1]=what's wl[0]=the wl[1]=next wl[2]=song pos[-1]=WP pos[0]=VBZ pos[1]=DT pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL'L shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L'L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=NO type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=w p1[0]=t p1[1]=n p1[2]=s p2[-1]=wh p2[0]=th p2[1]=ne p2[2]=so p3[-1]=wha p3[0]=the p3[1]=nex p3[2]=son p4[-1]=what p4[0]= p4[1]=next p4[2]=song s1[-1]=s s1[0]=e s1[1]=t s1[2]=g s2[-1]='s s2[0]=he s2[1]=xt s2[2]=ng s3[-1]=t's s3[0]=the s3[1]=ext s3[2]=ong s4[-1]=at's s4[0]= s4[1]=next s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=yes cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=what's|the w[0]|w[1]=the|next w[1]|w[2]=next|song pos[-1]|pos[0]=WP|VBZ pos[0]|pos[1]=VBZ|DT pos[1]|pos[2]=DT|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L'L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=NO|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=what's w[1..4]=next w[1..4]=song +O w[-2]=what's w[-1]=the w[0]=next w[1]=song wl[-2]=what's wl[-1]=the wl[0]=next wl[1]=song pos[-2]=WP pos[-1]=VBZ pos[0]=DT pos[1]=JJ chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL'L shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=L'L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=NO type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=w p1[-1]=t p1[0]=n p1[1]=s p2[-2]=wh p2[-1]=th p2[0]=ne p2[1]=so p3[-2]=wha p3[-1]=the p3[0]=nex p3[1]=son p4[-2]=what p4[-1]= p4[0]=next p4[1]=song s1[-2]=s s1[-1]=e s1[0]=t s1[1]=g s2[-2]='s s2[-1]=he s2[0]=xt s2[1]=ng s3[-2]=t's s3[-1]=the s3[0]=ext s3[1]=ong s4[-2]=at's s4[-1]= s4[0]=next s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=yes cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=what's|the w[-1]|w[0]=the|next w[0]|w[1]=next|song pos[-2]|pos[-1]=WP|VBZ pos[-1]|pos[0]=VBZ|DT pos[0]|pos[1]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L'L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=NO|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=what's w[-4..-1]=the w[1..4]=song +O w[-2]=the w[-1]=next w[0]=song wl[-2]=the wl[-1]=next wl[0]=song pos[-2]=VBZ pos[-1]=DT pos[0]=JJ chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=s p2[-2]=th p2[-1]=ne p2[0]=so p3[-2]=the p3[-1]=nex p3[0]=son p4[-2]= p4[-1]=next p4[0]=song s1[-2]=e s1[-1]=t s1[0]=g s2[-2]=he s2[-1]=xt s2[0]=ng s3[-2]=the s3[-1]=ext s3[0]=ong s4[-2]= s4[-1]=next s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|song pos[-2]|pos[-1]=VBZ|DT pos[-1]|pos[0]=DT|JJ chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=what's w[-4..-1]=the w[-4..-1]=next __EOS__ + +O w[0]=go w[1]=to w[2]=the wl[0]=go wl[1]=to wl[2]=the pos[0]=VB pos[1]=IN pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LL shape[1]=LL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=g p1[1]=t p1[2]=t p2[0]=go p2[1]=to p2[2]=th p3[0]= p3[1]= p3[2]=the p4[0]= p4[1]= p4[2]= s1[0]=o s1[1]=o s1[2]=e s2[0]=go s2[1]=to s2[2]=he s3[0]= s3[1]= s3[2]=the s4[0]= s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=go|to w[1]|w[2]=to|the pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=the w[1..4]=next w[1..4]=one __BOS__ +O w[-1]=go w[0]=to w[1]=the w[2]=next wl[-1]=go wl[0]=to wl[1]=the wl[2]=next pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LL shape[0]=LL shape[1]=LLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=g p1[0]=t p1[1]=t p1[2]=n p2[-1]=go p2[0]=to p2[1]=th p2[2]=ne p3[-1]= p3[0]= p3[1]=the p3[2]=nex p4[-1]= p4[0]= p4[1]= p4[2]=next s1[-1]=o s1[0]=o s1[1]=e s1[2]=t s2[-1]=go s2[0]=to s2[1]=he s2[2]=xt s3[-1]= s3[0]= s3[1]=the s3[2]=ext s4[-1]= s4[0]= s4[1]= s4[2]=next 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=go|to w[0]|w[1]=to|the w[1]|w[2]=the|next pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[1..4]=the w[1..4]=next w[1..4]=one +O w[-2]=go w[-1]=to w[0]=the w[1]=next w[2]=one wl[-2]=go wl[-1]=to wl[0]=the wl[1]=next wl[2]=one pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=JJ pos[2]=CD chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LL shape[-1]=LL shape[0]=LLL shape[1]=LLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=g p1[-1]=t p1[0]=t p1[1]=n p1[2]=o p2[-2]=go p2[-1]=to p2[0]=th p2[1]=ne p2[2]=on p3[-2]= p3[-1]= p3[0]=the p3[1]=nex p3[2]=one p4[-2]= p4[-1]= p4[0]= p4[1]=next p4[2]= s1[-2]=o s1[-1]=o s1[0]=e s1[1]=t s1[2]=e s2[-2]=go s2[-1]=to s2[0]=he s2[1]=xt s2[2]=ne s3[-2]= s3[-1]= s3[0]=the s3[1]=ext s3[2]=one s4[-2]= s4[-1]= s4[0]= s4[1]=next s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=go|to w[-1]|w[0]=to|the w[0]|w[1]=the|next w[1]|w[2]=next|one pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=to w[1..4]=next w[1..4]=one +O w[-2]=to w[-1]=the w[0]=next w[1]=one wl[-2]=to wl[-1]=the wl[0]=next wl[1]=one pos[-2]=IN pos[-1]=DT pos[0]=JJ pos[1]=CD chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLL shape[0]=LLLL shape[1]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=t p1[0]=n p1[1]=o p2[-2]=to p2[-1]=th p2[0]=ne p2[1]=on p3[-2]= p3[-1]=the p3[0]=nex p3[1]=one p4[-2]= p4[-1]= p4[0]=next p4[1]= s1[-2]=o s1[-1]=e s1[0]=t s1[1]=e s2[-2]=to s2[-1]=he s2[0]=xt s2[1]=ne s3[-2]= s3[-1]=the s3[0]=ext s3[1]=one s4[-2]= s4[-1]= s4[0]=next s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|next w[0]|w[1]=next|one pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=to w[-4..-1]=the w[1..4]=one +O w[-2]=the w[-1]=next w[0]=one wl[-2]=the wl[-1]=next wl[0]=one pos[-2]=DT pos[-1]=JJ pos[0]=CD chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=o p2[-2]=th p2[-1]=ne p2[0]=on p3[-2]=the p3[-1]=nex p3[0]=one p4[-2]= p4[-1]=next p4[0]= s1[-2]=e s1[-1]=t s1[0]=e s2[-2]=he s2[-1]=xt s2[0]=ne s3[-2]=the s3[-1]=ext s3[0]=one s4[-2]= s4[-1]=next s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|one pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=go w[-4..-1]=to w[-4..-1]=the w[-4..-1]=next __EOS__ + +O w[0]=go w[1]=forward wl[0]=go wl[1]=forward pos[0]=VB pos[1]=RB chk[0]=O chk[1]=O shape[0]=LL shape[1]=LLLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=g p1[1]=f p2[0]=go p2[1]=fo p3[0]= p3[1]=for p4[0]= p4[1]=forw s1[0]=o s1[1]=d s2[0]=go s2[1]=rd s3[0]= s3[1]=ard s4[0]= s4[1]=ward 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=go|forward pos[0]|pos[1]=VB|RB chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=forward __BOS__ +O w[-1]=go w[0]=forward wl[-1]=go wl[0]=forward pos[-1]=VB pos[0]=RB chk[-1]=O chk[0]=O shape[-1]=LL shape[0]=LLLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=g p1[0]=f p2[-1]=go p2[0]=fo p3[-1]= p3[0]=for p4[-1]= p4[0]=forw s1[-1]=o s1[0]=d s2[-1]=go s2[0]=rd s3[-1]= s3[0]=ard s4[-1]= s4[0]=ward 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=go|forward pos[-1]|pos[0]=VB|RB chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=go __EOS__ + +O w[0]=next w[1]=song wl[0]=next wl[1]=song pos[0]=JJ pos[1]=NN chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=n p1[1]=s p2[0]=ne p2[1]=so p3[0]=nex p3[1]=son p4[0]=next p4[1]=song s1[0]=t s1[1]=g s2[0]=xt s2[1]=ng s3[0]=ext s3[1]=ong s4[0]=next s4[1]=song 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=next|song pos[0]|pos[1]=JJ|NN chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=song __BOS__ +O w[-1]=next w[0]=song wl[-1]=next wl[0]=song pos[-1]=JJ pos[0]=NN chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=n p1[0]=s p2[-1]=ne p2[0]=so p3[-1]=nex p3[0]=son p4[-1]=next p4[0]=song s1[-1]=t s1[0]=g s2[-1]=xt s2[0]=ng s3[-1]=ext s3[0]=ong s4[-1]=next s4[0]=song 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=next|song pos[-1]|pos[0]=JJ|NN chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=next __EOS__ + +O w[0]=skip wl[0]=skip pos[0]=VB chk[0]=O shape[0]=LLLL shaped[0]=L type[0]=AllLetter p1[0]=s p2[0]=sk p3[0]=ski p4[0]=skip s1[0]=p s2[0]=ip s3[0]=kip s4[0]=skip 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=play w[1]=the w[2]=next wl[0]=play wl[1]=the wl[2]=next pos[0]=VB pos[1]=DT pos[2]=JJ chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=t p1[2]=n p2[0]=pl p2[1]=th p2[2]=ne p3[0]=pla p3[1]=the p3[2]=nex p4[0]=play p4[1]= p4[2]=next s1[0]=y s1[1]=e s1[2]=t s2[0]=ay s2[1]=he s2[2]=xt s3[0]=lay s3[1]=the s3[2]=ext s4[0]=play s4[1]= s4[2]=next 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|the w[1]|w[2]=the|next pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|JJ chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=the w[1..4]=next w[1..4]=song __BOS__ +O w[-1]=play w[0]=the w[1]=next w[2]=song wl[-1]=play wl[0]=the wl[1]=next wl[2]=song pos[-1]=VB pos[0]=DT pos[1]=JJ pos[2]=NN chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LLL shape[1]=LLLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=p p1[0]=t p1[1]=n p1[2]=s p2[-1]=pl p2[0]=th p2[1]=ne p2[2]=so p3[-1]=pla p3[0]=the p3[1]=nex p3[2]=son p4[-1]=play p4[0]= p4[1]=next p4[2]=song s1[-1]=y s1[0]=e s1[1]=t s1[2]=g s2[-1]=ay s2[0]=he s2[1]=xt s2[2]=ng s3[-1]=lay s3[0]=the s3[1]=ext s3[2]=ong s4[-1]=play s4[0]= s4[1]=next s4[2]=song 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=play|the w[0]|w[1]=the|next w[1]|w[2]=next|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=next w[1..4]=song +O w[-2]=play w[-1]=the w[0]=next w[1]=song wl[-2]=play wl[-1]=the wl[0]=next wl[1]=song pos[-2]=VB pos[-1]=DT pos[0]=JJ pos[1]=NN chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LLLL shape[-1]=LLL shape[0]=LLLL shape[1]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=p p1[-1]=t p1[0]=n p1[1]=s p2[-2]=pl p2[-1]=th p2[0]=ne p2[1]=so p3[-2]=pla p3[-1]=the p3[0]=nex p3[1]=son p4[-2]=play p4[-1]= p4[0]=next p4[1]=song s1[-2]=y s1[-1]=e s1[0]=t s1[1]=g s2[-2]=ay s2[-1]=he s2[0]=xt s2[1]=ng s3[-2]=lay s3[-1]=the s3[0]=ext s3[1]=ong s4[-2]=play s4[-1]= s4[0]=next s4[1]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=play|the w[-1]|w[0]=the|next w[0]|w[1]=next|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[1..4]=song +O w[-2]=the w[-1]=next w[0]=song wl[-2]=the wl[-1]=next wl[0]=song pos[-2]=DT pos[-1]=JJ pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=s p2[-2]=th p2[-1]=ne p2[0]=so p3[-2]=the p3[-1]=nex p3[0]=son p4[-2]= p4[-1]=next p4[0]=song s1[-2]=e s1[-1]=t s1[0]=g s2[-2]=he s2[-1]=xt s2[0]=ng s3[-2]=the s3[-1]=ext s3[0]=ong s4[-2]= s4[-1]=next s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|song pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=the w[-4..-1]=next __EOS__ + +O w[0]=the w[1]=next w[2]=please wl[0]=the wl[1]=next wl[2]=please pos[0]=DT pos[1]=JJ pos[2]=UH chk[0]=O chk[1]=O chk[2]=O shape[0]=LLL shape[1]=LLLL shape[2]=LLLLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=t p1[1]=n p1[2]=p p2[0]=th p2[1]=ne p2[2]=pl p3[0]=the p3[1]=nex p3[2]=ple p4[0]= p4[1]=next p4[2]=plea s1[0]=e s1[1]=t s1[2]=e s2[0]=he s2[1]=xt s2[2]=se s3[0]=the s3[1]=ext s3[2]=ase s4[0]= s4[1]=next s4[2]=ease 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=the|next w[1]|w[2]=next|please pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|UH chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=next w[1..4]=please __BOS__ +O w[-1]=the w[0]=next w[1]=please wl[-1]=the wl[0]=next wl[1]=please pos[-1]=DT pos[0]=JJ pos[1]=UH chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLL shape[0]=LLLL shape[1]=LLLLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=t p1[0]=n p1[1]=p p2[-1]=th p2[0]=ne p2[1]=pl p3[-1]=the p3[0]=nex p3[1]=ple p4[-1]= p4[0]=next p4[1]=plea s1[-1]=e s1[0]=t s1[1]=e s2[-1]=he s2[0]=xt s2[1]=se s3[-1]=the s3[0]=ext s3[1]=ase s4[-1]= s4[0]=next s4[1]=ease 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=the|next w[0]|w[1]=next|please pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|UH chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=the w[1..4]=please +O w[-2]=the w[-1]=next w[0]=please wl[-2]=the wl[-1]=next wl[0]=please pos[-2]=DT pos[-1]=JJ pos[0]=UH chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLLLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=p p2[-2]=th p2[-1]=ne p2[0]=pl p3[-2]=the p3[-1]=nex p3[0]=ple p4[-2]= p4[-1]=next p4[0]=plea s1[-2]=e s1[-1]=t s1[0]=e s2[-2]=he s2[-1]=xt s2[0]=se s3[-2]=the s3[-1]=ext s3[0]=ase s4[-2]= s4[-1]=next s4[0]=ease 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|please pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|UH chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=the w[-4..-1]=next __EOS__ + +O w[0]=next w[1]=please wl[0]=next wl[1]=please pos[0]=RB pos[1]=UH chk[0]=O chk[1]=O shape[0]=LLLL shape[1]=LLLLLL shaped[0]=L shaped[1]=L type[0]=AllLetter type[1]=AllLetter p1[0]=n p1[1]=p p2[0]=ne p2[1]=pl p3[0]=nex p3[1]=ple p4[0]=next p4[1]=plea s1[0]=t s1[1]=e s2[0]=xt s2[1]=se s3[0]=ext s3[1]=ase s4[0]=next s4[1]=ease 2d[0]=no 2d[1]=no 4d[0]=no 4d[1]=no d&a[0]=no d&a[1]=no d&-[0]=no d&-[1]=no d&/[0]=no d&/[1]=no d&,[0]=no d&,[1]=no d&.[0]=no d&.[1]=no up[0]=no up[1]=no iu[0]=no iu[1]=no au[0]=no au[1]=no al[0]=yes al[1]=yes ad[0]=no ad[1]=no ao[0]=no ao[1]=no cu[0]=no cu[1]=no cl[0]=yes cl[1]=yes ca[0]=yes ca[1]=yes cd[0]=no cd[1]=no cs[0]=no cs[1]=no w[0]|w[1]=next|please pos[0]|pos[1]=RB|UH chk[0]|chk[1]=O|O shaped[0]|shaped[1]=L|L type[0]|type[1]=AllLetter|AllLetter w[1..4]=please __BOS__ +O w[-1]=next w[0]=please wl[-1]=next wl[0]=please pos[-1]=RB pos[0]=UH chk[-1]=O chk[0]=O shape[-1]=LLLL shape[0]=LLLLLL shaped[-1]=L shaped[0]=L type[-1]=AllLetter type[0]=AllLetter p1[-1]=n p1[0]=p p2[-1]=ne p2[0]=pl p3[-1]=nex p3[0]=ple p4[-1]=next p4[0]=plea s1[-1]=t s1[0]=e s2[-1]=xt s2[0]=se s3[-1]=ext s3[0]=ase s4[-1]=next s4[0]=ease 2d[-1]=no 2d[0]=no 4d[-1]=no 4d[0]=no d&a[-1]=no d&a[0]=no d&-[-1]=no d&-[0]=no d&/[-1]=no d&/[0]=no d&,[-1]=no d&,[0]=no d&.[-1]=no d&.[0]=no up[-1]=no up[0]=no iu[-1]=no iu[0]=no au[-1]=no au[0]=no al[-1]=yes al[0]=yes ad[-1]=no ad[0]=no ao[-1]=no ao[0]=no cu[-1]=no cu[0]=no cl[-1]=yes cl[0]=yes ca[-1]=yes ca[0]=yes cd[-1]=no cd[0]=no cs[-1]=no cs[0]=no w[-1]|w[0]=next|please pos[-1]|pos[0]=RB|UH chk[-1]|chk[0]=O|O shaped[-1]|shaped[0]=L|L type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=next __EOS__ + +O w[0]=skip w[1]=this w[2]=song wl[0]=skip wl[1]=this wl[2]=song pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLL shape[2]=LLLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=s p2[0]=sk p2[1]=th p2[2]=so p3[0]=ski p3[1]=thi p3[2]=son p4[0]=skip p4[1]=this p4[2]=song s1[0]=p s1[1]=s s1[2]=g s2[0]=ip s2[1]=is s2[2]=ng s3[0]=kip s3[1]=his s3[2]=ong s4[0]=skip s4[1]=this s4[2]=song 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=skip|this w[1]|w[2]=this|song pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=this w[1..4]=song __BOS__ +O w[-1]=skip w[0]=this w[1]=song wl[-1]=skip wl[0]=this wl[1]=song pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LLLL shape[1]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=s p1[0]=t p1[1]=s p2[-1]=sk p2[0]=th p2[1]=so p3[-1]=ski p3[0]=thi p3[1]=son p4[-1]=skip p4[0]=this p4[1]=song s1[-1]=p s1[0]=s s1[1]=g s2[-1]=ip s2[0]=is s2[1]=ng s3[-1]=kip s3[0]=his s3[1]=ong s4[-1]=skip s4[0]=this s4[1]=song 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=skip|this w[0]|w[1]=this|song pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=skip w[1..4]=song +O w[-2]=skip w[-1]=this w[0]=song wl[-2]=skip wl[-1]=this wl[0]=song pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLL shape[0]=LLLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=s p1[-1]=t p1[0]=s p2[-2]=sk p2[-1]=th p2[0]=so p3[-2]=ski p3[-1]=thi p3[0]=son p4[-2]=skip p4[-1]=this p4[0]=song s1[-2]=p s1[-1]=s s1[0]=g s2[-2]=ip s2[-1]=is s2[0]=ng s3[-2]=kip s3[-1]=his s3[0]=ong s4[-2]=skip s4[-1]=this s4[0]=song 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=skip|this w[-1]|w[0]=this|song pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=this __EOS__ + +O w[0]=play w[1]=another w[2]=one wl[0]=play wl[1]=another wl[2]=one pos[0]=VB pos[1]=DT pos[2]=NN chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LLLLLLL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=p p1[1]=a p1[2]=o p2[0]=pl p2[1]=an p2[2]=on p3[0]=pla p3[1]=ano p3[2]=one p4[0]=play p4[1]=anot p4[2]= s1[0]=y s1[1]=r s1[2]=e s2[0]=ay s2[1]=er s2[2]=ne s3[0]=lay s3[1]=her s3[2]=one s4[0]=play s4[1]=ther s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=play|another w[1]|w[2]=another|one pos[0]|pos[1]=VB|DT pos[1]|pos[2]=DT|NN chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=another w[1..4]=one __BOS__ +O w[-1]=play w[0]=another w[1]=one wl[-1]=play wl[0]=another wl[1]=one pos[-1]=VB pos[0]=DT pos[1]=NN chk[-1]=O chk[0]=O chk[1]=O shape[-1]=LLLL shape[0]=LLLLLLL shape[1]=LLL shaped[-1]=L shaped[0]=L shaped[1]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-1]=p p1[0]=a p1[1]=o p2[-1]=pl p2[0]=an p2[1]=on p3[-1]=pla p3[0]=ano p3[1]=one p4[-1]=play p4[0]=anot p4[1]= s1[-1]=y s1[0]=r s1[1]=e s2[-1]=ay s2[0]=er s2[1]=ne s3[-1]=lay s3[0]=her s3[1]=one s4[-1]=play s4[0]=ther s4[1]= 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-1]=no up[0]=no up[1]=no iu[-1]=no iu[0]=no iu[1]=no au[-1]=no au[0]=no au[1]=no al[-1]=yes al[0]=yes al[1]=yes ad[-1]=no ad[0]=no ad[1]=no ao[-1]=no ao[0]=no ao[1]=no cu[-1]=no cu[0]=no cu[1]=no cl[-1]=yes cl[0]=yes cl[1]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-1]=no cd[0]=no cd[1]=no cs[-1]=no cs[0]=no cs[1]=no w[-1]|w[0]=play|another w[0]|w[1]=another|one pos[-1]|pos[0]=VB|DT pos[0]|pos[1]=DT|NN chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=play w[1..4]=one +O w[-2]=play w[-1]=another w[0]=one wl[-2]=play wl[-1]=another wl[0]=one pos[-2]=VB pos[-1]=DT pos[0]=NN chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLLL shape[-1]=LLLLLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=p p1[-1]=a p1[0]=o p2[-2]=pl p2[-1]=an p2[0]=on p3[-2]=pla p3[-1]=ano p3[0]=one p4[-2]=play p4[-1]=anot p4[0]= s1[-2]=y s1[-1]=r s1[0]=e s2[-2]=ay s2[-1]=er s2[0]=ne s3[-2]=lay s3[-1]=her s3[0]=one s4[-2]=play s4[-1]=ther s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=play|another w[-1]|w[0]=another|one pos[-2]|pos[-1]=VB|DT pos[-1]|pos[0]=DT|NN chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=play w[-4..-1]=another __EOS__ + +O w[0]=next wl[0]=next pos[0]=RB chk[0]=O shape[0]=LLLL shaped[0]=L type[0]=AllLetter p1[0]=n p2[0]=ne p3[0]=nex p4[0]=next s1[0]=t s2[0]=xt s3[0]=ext s4[0]=next 2d[0]=no 4d[0]=no d&a[0]=no d&-[0]=no d&/[0]=no d&,[0]=no d&.[0]=no up[0]=no iu[0]=no au[0]=no al[0]=yes ad[0]=no ao[0]=no cu[0]=no cl[0]=yes ca[0]=yes cd[0]=no cs[0]=no __BOS__ __EOS__ + +O w[0]=skip w[1]=to w[2]=the wl[0]=skip wl[1]=to wl[2]=the pos[0]=VB pos[1]=IN pos[2]=DT chk[0]=O chk[1]=O chk[2]=O shape[0]=LLLL shape[1]=LL shape[2]=LLL shaped[0]=L shaped[1]=L shaped[2]=L type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[0]=s p1[1]=t p1[2]=t p2[0]=sk p2[1]=to p2[2]=th p3[0]=ski p3[1]= p3[2]=the p4[0]=skip p4[1]= p4[2]= s1[0]=p s1[1]=o s1[2]=e s2[0]=ip s2[1]=to s2[2]=he s3[0]=kip s3[1]= s3[2]=the s4[0]=skip s4[1]= s4[2]= 2d[0]=no 2d[1]=no 2d[2]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[0]=no d&.[1]=no d&.[2]=no up[0]=no up[1]=no up[2]=no iu[0]=no iu[1]=no iu[2]=no au[0]=no au[1]=no au[2]=no al[0]=yes al[1]=yes al[2]=yes ad[0]=no ad[1]=no ad[2]=no ao[0]=no ao[1]=no ao[2]=no cu[0]=no cu[1]=no cu[2]=no cl[0]=yes cl[1]=yes cl[2]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[0]=no cd[1]=no cd[2]=no cs[0]=no cs[1]=no cs[2]=no w[0]|w[1]=skip|to w[1]|w[2]=to|the pos[0]|pos[1]=VB|IN pos[1]|pos[2]=IN|DT chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[1..4]=to w[1..4]=the w[1..4]=next w[1..4]=one __BOS__ +O w[-1]=skip w[0]=to w[1]=the w[2]=next wl[-1]=skip wl[0]=to wl[1]=the wl[2]=next pos[-1]=VB pos[0]=IN pos[1]=DT pos[2]=JJ chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-1]=LLLL shape[0]=LL shape[1]=LLL shape[2]=LLLL shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-1]=s p1[0]=t p1[1]=t p1[2]=n p2[-1]=sk p2[0]=to p2[1]=th p2[2]=ne p3[-1]=ski p3[0]= p3[1]=the p3[2]=nex p4[-1]=skip p4[0]= p4[1]= p4[2]=next s1[-1]=p s1[0]=o s1[1]=e s1[2]=t s2[-1]=ip s2[0]=to s2[1]=he s2[2]=xt s3[-1]=kip s3[0]= s3[1]=the s3[2]=ext s4[-1]=skip s4[0]= s4[1]= s4[2]=next 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-1]|w[0]=skip|to w[0]|w[1]=to|the w[1]|w[2]=the|next pos[-1]|pos[0]=VB|IN pos[0]|pos[1]=IN|DT pos[1]|pos[2]=DT|JJ chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=skip w[1..4]=the w[1..4]=next w[1..4]=one +O w[-2]=skip w[-1]=to w[0]=the w[1]=next w[2]=one wl[-2]=skip wl[-1]=to wl[0]=the wl[1]=next wl[2]=one pos[-2]=VB pos[-1]=IN pos[0]=DT pos[1]=JJ pos[2]=CD chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O chk[2]=O shape[-2]=LLLL shape[-1]=LL shape[0]=LLL shape[1]=LLLL shape[2]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L shaped[2]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter type[2]=AllLetter p1[-2]=s p1[-1]=t p1[0]=t p1[1]=n p1[2]=o p2[-2]=sk p2[-1]=to p2[0]=th p2[1]=ne p2[2]=on p3[-2]=ski p3[-1]= p3[0]=the p3[1]=nex p3[2]=one p4[-2]=skip p4[-1]= p4[0]= p4[1]=next p4[2]= s1[-2]=p s1[-1]=o s1[0]=e s1[1]=t s1[2]=e s2[-2]=ip s2[-1]=to s2[0]=he s2[1]=xt s2[2]=ne s3[-2]=kip s3[-1]= s3[0]=the s3[1]=ext s3[2]=one s4[-2]=skip s4[-1]= s4[0]= s4[1]=next s4[2]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 2d[2]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no 4d[2]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&a[2]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&-[2]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&/[2]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&,[2]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no d&.[2]=no up[-2]=no up[-1]=no up[0]=no up[1]=no up[2]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no iu[2]=no au[-2]=no au[-1]=no au[0]=no au[1]=no au[2]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes al[2]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ad[2]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no ao[2]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cu[2]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes cl[2]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes ca[2]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cd[2]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no cs[2]=no w[-2]|w[-1]=skip|to w[-1]|w[0]=to|the w[0]|w[1]=the|next w[1]|w[2]=next|one pos[-2]|pos[-1]=VB|IN pos[-1]|pos[0]=IN|DT pos[0]|pos[1]=DT|JJ pos[1]|pos[2]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O chk[1]|chk[2]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L shaped[1]|shaped[2]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter type[1]|type[2]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to w[1..4]=next w[1..4]=one +O w[-2]=to w[-1]=the w[0]=next w[1]=one wl[-2]=to wl[-1]=the wl[0]=next wl[1]=one pos[-2]=IN pos[-1]=DT pos[0]=JJ pos[1]=CD chk[-2]=O chk[-1]=O chk[0]=O chk[1]=O shape[-2]=LL shape[-1]=LLL shape[0]=LLLL shape[1]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L shaped[1]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter type[1]=AllLetter p1[-2]=t p1[-1]=t p1[0]=n p1[1]=o p2[-2]=to p2[-1]=th p2[0]=ne p2[1]=on p3[-2]= p3[-1]=the p3[0]=nex p3[1]=one p4[-2]= p4[-1]= p4[0]=next p4[1]= s1[-2]=o s1[-1]=e s1[0]=t s1[1]=e s2[-2]=to s2[-1]=he s2[0]=xt s2[1]=ne s3[-2]= s3[-1]=the s3[0]=ext s3[1]=one s4[-2]= s4[-1]= s4[0]=next s4[1]= 2d[-2]=no 2d[-1]=no 2d[0]=no 2d[1]=no 4d[-2]=no 4d[-1]=no 4d[0]=no 4d[1]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&a[1]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&-[1]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&/[1]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&,[1]=no d&.[-2]=no d&.[-1]=no d&.[0]=no d&.[1]=no up[-2]=no up[-1]=no up[0]=no up[1]=no iu[-2]=no iu[-1]=no iu[0]=no iu[1]=no au[-2]=no au[-1]=no au[0]=no au[1]=no al[-2]=yes al[-1]=yes al[0]=yes al[1]=yes ad[-2]=no ad[-1]=no ad[0]=no ad[1]=no ao[-2]=no ao[-1]=no ao[0]=no ao[1]=no cu[-2]=no cu[-1]=no cu[0]=no cu[1]=no cl[-2]=yes cl[-1]=yes cl[0]=yes cl[1]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes ca[1]=yes cd[-2]=no cd[-1]=no cd[0]=no cd[1]=no cs[-2]=no cs[-1]=no cs[0]=no cs[1]=no w[-2]|w[-1]=to|the w[-1]|w[0]=the|next w[0]|w[1]=next|one pos[-2]|pos[-1]=IN|DT pos[-1]|pos[0]=DT|JJ pos[0]|pos[1]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O chk[0]|chk[1]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L shaped[0]|shaped[1]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter type[0]|type[1]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to w[-4..-1]=the w[1..4]=one +O w[-2]=the w[-1]=next w[0]=one wl[-2]=the wl[-1]=next wl[0]=one pos[-2]=DT pos[-1]=JJ pos[0]=CD chk[-2]=O chk[-1]=O chk[0]=O shape[-2]=LLL shape[-1]=LLLL shape[0]=LLL shaped[-2]=L shaped[-1]=L shaped[0]=L type[-2]=AllLetter type[-1]=AllLetter type[0]=AllLetter p1[-2]=t p1[-1]=n p1[0]=o p2[-2]=th p2[-1]=ne p2[0]=on p3[-2]=the p3[-1]=nex p3[0]=one p4[-2]= p4[-1]=next p4[0]= s1[-2]=e s1[-1]=t s1[0]=e s2[-2]=he s2[-1]=xt s2[0]=ne s3[-2]=the s3[-1]=ext s3[0]=one s4[-2]= s4[-1]=next s4[0]= 2d[-2]=no 2d[-1]=no 2d[0]=no 4d[-2]=no 4d[-1]=no 4d[0]=no d&a[-2]=no d&a[-1]=no d&a[0]=no d&-[-2]=no d&-[-1]=no d&-[0]=no d&/[-2]=no d&/[-1]=no d&/[0]=no d&,[-2]=no d&,[-1]=no d&,[0]=no d&.[-2]=no d&.[-1]=no d&.[0]=no up[-2]=no up[-1]=no up[0]=no iu[-2]=no iu[-1]=no iu[0]=no au[-2]=no au[-1]=no au[0]=no al[-2]=yes al[-1]=yes al[0]=yes ad[-2]=no ad[-1]=no ad[0]=no ao[-2]=no ao[-1]=no ao[0]=no cu[-2]=no cu[-1]=no cu[0]=no cl[-2]=yes cl[-1]=yes cl[0]=yes ca[-2]=yes ca[-1]=yes ca[0]=yes cd[-2]=no cd[-1]=no cd[0]=no cs[-2]=no cs[-1]=no cs[0]=no w[-2]|w[-1]=the|next w[-1]|w[0]=next|one pos[-2]|pos[-1]=DT|JJ pos[-1]|pos[0]=JJ|CD chk[-2]|chk[-1]=O|O chk[-1]|chk[0]=O|O shaped[-2]|shaped[-1]=L|L shaped[-1]|shaped[0]=L|L type[-2]|type[-1]=AllLetter|AllLetter type[-1]|type[0]=AllLetter|AllLetter w[-4..-1]=skip w[-4..-1]=to w[-4..-1]=the w[-4..-1]=next __EOS__ +